library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.2     ✔ readr     2.1.4
## ✔ forcats   1.0.0     ✔ stringr   1.5.0
## ✔ ggplot2   3.4.3     ✔ tibble    3.2.1
## ✔ lubridate 1.9.2     ✔ tidyr     1.3.0
## ✔ purrr     1.0.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(tidytext)
library(wordcloud)
## Loading required package: RColorBrewer

First, we read in all .txt files (you can do this individually with as.tibble(read_lines("file_name.txt)) in the current working directory. Note: This means the file must be saved in the same folder as the .txt files.

## Get list of all file names in folder
files = list.files()

## Make a large list with text from each files (n=number of files)
all_data <- list()
all_data <- lapply(files, readr::read_lines)

## Rename index (?) with file names -.txt
names(all_data) <- gsub("\\.txt$", "", files)

## List of school names to use later
schools <- names(all_data)
schools <-  Filter(function(x) !any(grep("TextMiningExploration", x)), schools) #removes r files from list

After seeing some of the top tokens, there are some “words” that aren’t meaningful or are consistent across all syllabi like class, http, etc. remove.words is a list of those to be removed - this is really just to get a holistic idea - we will use tf-idf to do this later.

remove.words <- data.frame(word=c("class", "http", "https", "students", "disability", "sexual", "harrassment", "academic", "policy", "office", "disability", "discrimination", "behavior", "accomodation", "questions", "email", "conduct", "59pm", "answers", "gradescope", "hours", "assignment", "assignments", "grade", "unit", "ch", "ta", "days", "pm", "est", "ta", "hours", "due", "blackboard", "link", "hw", "homework"))

Then we make a data frame for each syllabus:

ASU_df <- data_frame(as.tibble(all_data$ASU))
## Warning: `data_frame()` was deprecated in tibble 1.1.0.
## ℹ Please use `tibble()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## Warning: `as.tibble()` was deprecated in tibble 2.0.0.
## ℹ Please use `as_tibble()` instead.
## ℹ The signature and semantics have changed, see `?as_tibble`.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
Boston_Uni_df <- data_frame(as.tibble(all_data$Boston_Uni))
Brown_df <- data_frame(as.tibble(all_data$Brown))
Cornell_df <- data_frame(as.tibble(all_data$Cornell))
CUNY_df <- data_frame(as.tibble(all_data$CUNY))
Drexel_df <- data_frame(as.tibble(all_data$Drexel))
Georgia_Tech_df <- data_frame(as.tibble(all_data$Georgia_Tech))
Harvard_df <- data_frame(as.tibble(all_data$Harvard))
LSU_df <- data_frame(as.tibble(all_data$LSU))
MIT_df <- data_frame(as.tibble(all_data$MIT))
Montgomery_Coll_df <- data_frame(as.tibble(all_data$Montgomery_Coll))
NYU_DS4E_df <- data_frame(as.tibble(all_data$NYU_DS4E))
NYU_IntroDS_df <- data_frame(as.tibble(all_data$NYU_IntroDS))
Princeton_df <- data_frame(as.tibble(all_data$Princeton))
Rutgers_df <- data_frame(as.tibble(all_data$Rutgers))
UCBerkeley_df <- data_frame(as.tibble(all_data$UCBerkeley))
UCSanDiego_df <- data_frame(as.tibble(all_data$UCSanDiego))
UIU_107_df <- data_frame(as.tibble(all_data$UIU_107))
UIU_207_df <- data_frame(as.tibble(all_data$UIU_207))
UKentucky_df <- data_frame(as.tibble(all_data$UKentucky))
UMaine_df <- data_frame(as.tibble(all_data$UMaine))
UMD_df <- data_frame(as.tibble(all_data$UMD))
UniSys_Georgia_df <- data_frame(as.tibble(all_data$UniSys_Georgia))
USouthampton_df <- data_frame(as.tibble(all_data$USouthampton))
UToronto_df <- data_frame(as.tibble(all_data$UToronto))
UUtah_df <- data_frame(as.tibble(all_data$UUtah))
UVA_SDS_df <- data_frame(as.tibble(all_data$UVA_SDS))
UVA_Stat_df <- data_frame(as.tibble(all_data$UVA_Stat))
UWashington_df <- data_frame(as.tibble(all_data$UWashington))
UWisc_Madison_Modeling_df <- data_frame(as.tibble(all_data$UWisc_Madison_Modeling))
UWisc_Madison_Programming_df <- data_frame(as.tibble(all_data$UWisc_Madison_Programming))
UWisconsin_df <- data_frame(as.tibble(all_data$UWisconsin))
UZurich_df <- data_frame(as.tibble(all_data$UZurich))
Washington_state_df <- data_frame(as.tibble(all_data$Washington_State))
William_and_Mary_df <- data_frame(as.tibble(all_data$William_and_Mary))

Next, we compile these data frames into a list for easy batch processing.

## NTOE: Run once (sequentially) to avoid error 
df_list = mget(ls(pattern = "_df"))

…and for each data frame use unnest_tokens(word, value) to separate each word, and anti_join(stop_words) to remove the stop words (common words like: it, the, to, etc.), and filter(is.na(as.numeric(word))) to remove numeric tokens. The line commented out removes the words in the remove.words list above.

for (i in seq_along(df_list)) {
  df_list[[i]] <- df_list[[i]] %>% 
    unnest_tokens(word, value) %>%    
    anti_join(stop_words) %>%    
    anti_join(remove.words, by=join_by(word)) %>%
    filter(is.na(as.numeric(word)))
}

For each data frame, we now get a word count and pull the top k (mutable) words in each syllabus. We put these into a data frame top_k_df and rename the columns/rows.

top_k_df <- data.frame()
k = 20
for (i in seq_along(df_list)) {
  temp <- df_list[[i]] %>% 
    count(word, sort = TRUE) %>% 
    head(k)
  
  top_k_df = rbind(top_k_df, temp$word)
}

colnames(top_k_df) <- seq(1, k, 1)
row.names(top_k_df) <- schools
top_k_df
##                                        1            2             3
## ASU                          probability          asu          exam
## Boston_Uni                          data       piazza collaboration
## Brown                               data           ml       science
## Cornell                   accommodations         data          slip
## CUNY                                data     analysis        python
## Drexel                              data      science  introduction
## Georgia_Tech                      amazon optimization  applications
## Harvard                             data       python            tf
## LSU                                 data     syllabus       science
## MIT                                  set         late         final
## Montgomery_Coll                     data      student   information
## NYU_DS4E                            data         week       science
## NYU_IntroDS                         data         week         pages
## Princeton                           data          fan       classes
## Rutgers                             data      rutgers undergraduate
## UCBerkeley                          data         fall     notebooks
## UCSanDiego                      syllabus          dsc         tests
## UIU_107                             00pm       credit         extra
## UIU_207                             stat         data           pts
## UKentucky                           data       canvas      analysis
## UMaine                              data      science   probability
## UMD                             policies         data          umgc
## UniSys_Georgia                      data     analysis       methods
## USouthampton                        data     comp6235   southampton
## UToronto                             oct          sep           nov
## UUtah                               data      project        python
## UVA_SDS                             data      science          week
## UVA_Stat                          checks         code participation
## UWashington                   activities         data   evaluations
## UWisc_Madison_Modeling              data   discussion      assigned
## UWisc_Madison_Programming        project         code      projects
## UWisconsin                          data         quiz       science
## UZurich                         learning       linear          data
## Washington_State                    data      science         basic
## William_and_Mary                    data       module     pct_score
##                                       4                       5           6
## ASU                         information                  python  instructor
## Boston_Uni                         time                learning    material
## Brown                        regression              supervised    analysis
## Cornell                            code                deadline         lab
## CUNY                            methods                 science    critical
## Drexel                             wiki        en.wikipedia.org  foundation
## Georgia_Tech                       data                learning      linear
## Harvard                            exam                exercise        pset
## LSU                        introduction introdatasci.dlilab.com         lsu
## MIT                                sets                    exam programming
## Montgomery_Coll                 support                 college  instructor
## NYU_DS4E                            lab                  python  understand
## NYU_IntroDS                         lab                      pf     science
## Princeton                      learning             statistical        labs
## Rutgers                        computer                  degree    learning
## UCBerkeley                       spring                  summer       otter
## UCSanDiego                      section              discussion        exam
## UIU_107                         project                    data   integrity
## UIU_207                             min                 science   integrity
## UKentucky                    discussion                  online     science
## UMaine                           random                syllabus  statistics
## UMD                        www.umgc.edu               integrity        week
## UniSys_Georgia                  science                identify     content
## USouthampton                 university             foundations     science
## UToronto                        project                learning        data
## UUtah                            center                learning     student
## UVA_SDS                             lab                    labs   professor
## UVA_Stat                         collab                datetime      submit
## UWashington               participation                    time application
## UWisc_Madison_Modeling         modeling                 reading    analysis
## UWisc_Madison_Programming           lab                  python      grader
## UWisconsin                      discuss                     sql       pages
## UZurich                      regression                 machine  likelihood
## Washington_State                 graphs                learning       tools
## William_and_Mary             regression                  return        elif
##                                      7              8             9
## ASU                         university      variables        random
## Boston_Uni                     science         topics           lab
## Brown                            final       learning presentations
## Cornell                        prepare          exams          late
## CUNY                             final    programming        social
## Drexel                       wikimedia     discussion      learning
## Georgia_Tech                   algebra            ece   discussions
## Harvard                        science        tableau       tuesday
## LSU                            results        student         final
## MIT                       introduction       computer       science
## Montgomery_Coll                   quiz       analysis          page
## NYU_DS4E                    regression          learn    statistics
## NYU_IntroDS                  homeworks        session      decision
## Princeton                       models       datasets         exams
## Rutgers                            sas        science   information
## UCBerkeley                   github.io         grader     materials
## UCSanDiego                        code        project          slip
## UIU_107                        section       analysis collaboration
## UIU_207                          bonus  collaboration           lab
## UKentucky                  information        project          week
## UMaine                         student     university    confidence
## UMD                            student     discussion      learning
## UniSys_Georgia               including          basic      outcomes
## USouthampton                   courses        modules      syllabus
## UToronto                           dec         health        linear
## UUtah                          support          tools          code
## UVA_SDS                          guest       learning            lo
## UVA_Stat                      deadline    information     resources
## UWashington                 attendance        content        credit
## UWisc_Madison_Modeling         include interpretation   statistical
## UWisc_Madison_Programming       canvas           exam         exams
## UWisconsin                   analytics           isbn  presentation
## UZurich                        maximum classification  optimisation
## Washington_State              analysis     algorithms       feature
## William_and_Mary                 final classification      learning
##                                              10          11           12
## ASU                              accommodations        data          drc
## Boston_Uni                                 late     lecture       python
## Brown                                algorithms  evaluation  exploratory
## Cornell                                     aes     lecture     lectures
## CUNY                                   approach    feminist mathematical
## Drexel                                wikipedia  university         blog
## Georgia_Tech                             convex foundations     lectures
## Harvard                                analysis  discussion  engineering
## LSU                                        code   community  programming
## MIT                               understanding        book         data
## Montgomery_Coll                          access  montgomery     projects
## NYU_DS4E                                 tables    learning  programming
## NYU_IntroDS                                labs    analysis        model
## Princeton                                factor        hall          pdf
## Rutgers                                   major     puzzles     schedule
## UCBerkeley                              science      source     textbook
## UCSanDiego                                dsc10      submit          lab
## UIU_107                                computer  discussion         exam
## UIU_207                                    labs      python  statistical
## UKentucky                           www.uky.edu discussions     absences
## UMaine                                 gaussian      sample     variance
## UMD                              administration   classroom    reporting
## UniSys_Georgia                          testing     account   additional
## USouthampton              www.southampton.ac.uk       basic    computing
## UToronto                                machine   practical          mml
## UUtah                                    online  activities     analysis
## UVA_SDS                                   learn      design       school
## UVA_Stat                                visible    anaconda   attendance
## UWashington                            expected     section        based
## UWisc_Madison_Modeling                 document    markdown      project
## UWisc_Madison_Programming                  late     quizzes     semester
## UWisconsin                               submit     project         read
## UZurich                                 science    analysis       convex
## Washington_State                         linear    modeling  statistical
## William_and_Mary                       keywords      review     semester
##                                     13            14            15
## ASU                           gradient           sex       subject
## Boston_Uni                     algebra        basics          code
## Brown                          machine       metrics       midterm
## Cornell                       question      concepts          copy
## CUNY                             power  quantitative      actively
## Drexel                         machine       history      readings
## Georgia_Tech              mathematical        method        online
## Harvard                           late      learning   exploratory
## LSU                            project   www.lsu.edu   information
## MIT                           lectures      material        python
## Montgomery_Coll                science     technical          code
## NYU_DS4E                      analysis        ethics          labs
## NYU_IntroDS                 principles    regression      identify
## Princeton                         book    covariance    regression
## Rutgers                         topics           web accessibility
## UCBerkeley                    berkeley   datascience   environment
## UCSanDiego                     lecture       partner      projects
## UIU_107                          final           scd       science
## UIU_207                     understand      analysis          code
## UKentucky                      excused  introduction       posting
## UMaine                            date  distribution          time
## UMD                            support       affairs       grading
## UniSys_Georgia                   apply     bootstrap   categorical
## USouthampton                  concepts   application    collection
## UToronto                          quiz          time     analytics
## UUtah                         lectures     resources         learn
## UVA_SDS                      analytics      describe       systems
## UVA_Stat                        bundle          data         honor
## UWashington                 challenges           day    discussion
## UWisc_Madison_Modeling         science       address      complete
## UWisc_Madison_Programming      student      computer       madison
## UWisconsin                       watch    discussion      practice
## UZurich                        methods    clustering      examples
## Washington_State                campus           eda       explain
## William_and_Mary                  time communication    introduced
##                                      16             17            18
## ASU                              topics     understand         basis
## Boston_Uni                  collaborate             cs    encouraged
## Brown                           missing         models       project
## Cornell                             day     discussion        ensure
## CUNY                      computational           draw    humanities
## Drexel                        analytics       calculus          demo
## Georgia_Tech                     person    probability   programming
## Harvard                     programming   storytelling visualization
## LSU                            learning          files           git
## MIT                               score           term    additional
## Montgomery_Coll                 contact  participation     resources
## NYU_DS4E                         pandas         review         start
## NYU_IntroDS                  instructor         issues        linear
## Princeton                       science     statistics   classifiers
## Rutgers                        advising        analyze      calendar
## UCBerkeley                     features    foundations          free
## UCSanDiego                       answer     autograder         check
## UIU_107                        sections       semester          stat
## UIU_207                        complete         credit    department
## UKentucky                       student accommodations         based
## UMaine                      brightspace          carlo          citl
## UMD                           resources         degree       faculty
## UniSys_Georgia                 cleaning    communicate      decision
## USouthampton                    contact           copy          core
## UToronto                       lectures       projects       session
## UUtah                           science     assessment         based
## UVA_SDS                           theme           time         world
## UVA_Stat                      permitted         piazza        python
## UWashington                  evaluation          extra       leading
## UWisc_Madison_Modeling        computing       concepts            cv
## UWisc_Madison_Programming       partner    programming         cs220
## UWisconsin                  discussions          final      syllabus
## UZurich                          models    probability      calculus
## Washington_State              integrity        machine      material
## William_and_Mary                methods        science    techniques
##                                    19                20
## ASU                        disruptive             final
## Boston_Uni                       exam            expect
## Brown                            real            review
## Cornell                     exercises             final
## CUNY                        including intersectionality
## Drexel                        project               web
## Georgia_Tech                  science           squares
## Harvard                         final          managing
## LSU                           lsu.edu            online
## MIT                       computation               day
## Montgomery_Coll            assistance            center
## NYU_DS4E                       theory          thinking
## NYU_IntroDS                     moses            review
## Princeton                 foundations               lab
## Rutgers                   conclusions                cs
## UCBerkeley                   includes        instructor
## UCSanDiego                       data                ed
## UIU_107                          code           cutoffs
## UIU_207                         final        instructor
## UKentucky                   exercises        instructor
## UMaine                           code        instructor
## UMD                        university       discussions
## UniSys_Georgia                develop     distributions
## USouthampton                    cover          crawling
## UToronto                   university           aps1070
## UUtah                            free              late
## UVA_SDS                        canvas           capital
## UVA_Stat                     semester      virginia.edu
## UWashington                      maas            result
## UWisc_Madison_Modeling           exam             final
## UWisc_Madison_Programming     faculty            grades
## UWisconsin                    edition           explain
## UZurich                   formulation          gradient
## Washington_State               mining            online
## William_and_Mary                 code           discuss

Next, we create a horizontal bar chart for each with the top k words in each syllabus.

for (i in seq_along(df_list)) {
  print(df_list[[i]] %>%
    count(word, sort = TRUE) %>%
    head(k) %>%
    mutate(word = reorder(word, n)) %>%
    ggplot(aes(word, n)) +
    geom_col() +
    xlab(NULL) +
    coord_flip() +
    ggtitle(schools[i]))
}

We can also create word clouds for the top k words from each syllabus.

for (i in seq_along(df_list)) {
  print(schools[i])
  df_list[[i]] %>%
  count(word) %>%
  with(wordcloud(word, n, min.freq=4, max.words = 10))
}
## [1] "ASU"

## [1] "Boston_Uni"

## [1] "Brown"

## [1] "Cornell"
## Warning in wordcloud(word, n, min.freq = 4, max.words = 10): accommodations
## could not be fit on page. It will not be plotted.

## [1] "CUNY"

## [1] "Drexel"

## [1] "Georgia_Tech"

## [1] "Harvard"

## [1] "LSU"

## [1] "MIT"

## [1] "Montgomery_Coll"

## [1] "NYU_DS4E"

## [1] "NYU_IntroDS"

## [1] "Princeton"

## [1] "Rutgers"

## [1] "UCBerkeley"

## [1] "UCSanDiego"

## [1] "UIU_107"

## [1] "UIU_207"

## [1] "UKentucky"

## [1] "UMaine"

## [1] "UMD"

## [1] "UniSys_Georgia"

## [1] "USouthampton"

## [1] "UToronto"

## [1] "UUtah"

## [1] "UVA_SDS"

## [1] "UVA_Stat"

## [1] "UWashington"

## [1] "UWisc_Madison_Modeling"

## [1] "UWisc_Madison_Programming"

## [1] "UWisconsin"

## [1] "UZurich"

## [1] "Washington_State"

## [1] "William_and_Mary"

In order to use the tf-idf for analysis we need a dataframe containing each token labeled by the corresponding syllabus. Here we make this from our data frames:

corpus_df <- data.frame()
for (i in seq_along(df_list)) {
  corpus_df <- rbind(corpus_df, data.frame(syllabus = schools[i], word = df_list[[i]]))
}
corpus_df <- corpus_df %>% count(syllabus, word, sort=TRUE)
total_words <- corpus_df %>% 
  group_by(syllabus) %>% 
  summarize(total=sum(n))

syllabus_words <- left_join(corpus_df, total_words)
## Joining with `by = join_by(syllabus)`
syllabus_words
##                        syllabus                                            word
## 1                        Drexel                                            data
## 2                    UWisconsin                                            data
## 3                      NYU_DS4E                                            data
## 4     UWisc_Madison_Programming                                         project
## 5                        Drexel                                         science
## 6                      NYU_DS4E                                            week
## 7                       Harvard                                            data
## 8                       UVA_SDS                                            data
## 9              Washington_State                                            data
## 10                    UKentucky                                            data
## 11               UniSys_Georgia                                            data
## 12                          UMD                                        policies
## 13    UWisc_Madison_Programming                                            code
## 14                   UCSanDiego                                        syllabus
## 15                    Princeton                                            data
## 16                        UUtah                                            data
## 17                  NYU_IntroDS                                            data
## 18                   UCSanDiego                                             dsc
## 19                    Princeton                                             fan
## 20             William_and_Mary                                            data
## 21                     NYU_DS4E                                         science
## 22                      UVA_SDS                                         science
## 23                   UWisconsin                                            quiz
## 24                      UZurich                                        learning
## 25                          LSU                                            data
## 26                          LSU                                        syllabus
## 27                  NYU_IntroDS                                            week
## 28                    Princeton                                         classes
## 29                          UMD                                            data
## 30              Montgomery_Coll                                            data
## 31                          UMD                                            umgc
## 32                          UMD                                    www.umgc.edu
## 33                        UUtah                                         project
## 34                   UWisconsin                                         science
## 35                     UToronto                                             oct
## 36       UWisc_Madison_Modeling                                            data
## 37                   UWisconsin                                         discuss
## 38                   UWisconsin                                             sql
## 39                        Brown                                            data
## 40                  NYU_IntroDS                                           pages
## 41                      Rutgers                                            data
## 42                    UKentucky                                          canvas
## 43                          UMD                                       integrity
## 44                   UWisconsin                                           pages
## 45             Washington_State                                         science
## 46                 Georgia_Tech                                          amazon
## 47                     NYU_DS4E                                             lab
## 48                   UCSanDiego                                           tests
## 49                          UMD                                            week
## 50                       UMaine                                            data
## 51                     UToronto                                             sep
## 52    UWisc_Madison_Programming                                        projects
## 53                   UWisconsin                                       analytics
## 54                         CUNY                                            data
## 55                   UCBerkeley                                            data
## 56                   UCSanDiego                                         section
## 57                          UMD                                         student
## 58                      UVA_SDS                                            week
## 59             William_and_Mary                                          module
## 60                      Harvard                                          python
## 61                    UKentucky                                        analysis
## 62                     UToronto                                             nov
## 63                   UWisconsin                                            isbn
## 64                       Drexel                                    introduction
## 65                       Drexel                                            wiki
## 66                          MIT                                             set
## 67                  NYU_IntroDS                                             lab
## 68                    Princeton                                        learning
## 69                   UCSanDiego                                      discussion
## 70                   UCSanDiego                                            exam
## 71                     UToronto                                         project
## 72                      UVA_SDS                                             lab
## 73                   UWisconsin                                    presentation
## 74                      UZurich                                          linear
## 75                 Georgia_Tech                                    optimization
## 76                          LSU                                         science
## 77                     NYU_DS4E                                          python
## 78                    Princeton                                     statistical
## 79                   UCSanDiego                                            code
## 80                   UCSanDiego                                         project
## 81                   UCSanDiego                                            slip
## 82                    UKentucky                                      discussion
## 83                        UUtah                                          python
## 84                      Cornell                                  accommodations
## 85                      Harvard                                              tf
## 86              Montgomery_Coll                                         student
## 87                     NYU_DS4E                                      understand
## 88                   UCSanDiego                                           dsc10
## 89                   UCSanDiego                                          submit
## 90                          UMD                                      discussion
## 91                          UMD                                        learning
## 92                       UMaine                                         science
## 93                 USouthampton                                            data
## 94                   UWisconsin                                          submit
## 95                      Cornell                                            data
## 96                      Cornell                                            slip
## 97                       Drexel                                en.wikipedia.org
## 98                       Drexel                                      foundation
## 99                       Drexel                                       wikimedia
## 100                         MIT                                            late
## 101                  UCSanDiego                                             lab
## 102                         UMD                                  administration
## 103                    UToronto                                        learning
## 104   UWisc_Madison_Programming                                             lab
## 105                  UWisconsin                                         project
## 106                  UWisconsin                                            read
## 107                  UWisconsin                                           watch
## 108                     UZurich                                            data
## 109                     UZurich                                      regression
## 110                     Cornell                                            code
## 111                      Drexel                                      discussion
## 112                      Drexel                                        learning
## 113                      Drexel                                       wikipedia
## 114                     Harvard                                            exam
## 115             Montgomery_Coll                                     information
## 116                 NYU_IntroDS                                              pf
## 117                   Princeton                                            labs
## 118                         UMD                                       classroom
## 119                         UMD                                       reporting
## 120                         UMD                                         support
## 121                      UMaine                                     probability
## 122                      UMaine                                          random
## 123                       UUtah                                          center
## 124                       UUtah                                        learning
## 125                       UUtah                                         student
## 126                       UUtah                                         support
## 127                       UUtah                                           tools
## 128                     UVA_SDS                                            labs
## 129   UWisc_Madison_Programming                                          python
## 130                  UWisconsin                                      discussion
## 131                     UZurich                                         machine
## 132            William_and_Mary                                       pct_score
## 133                  Boston_Uni                                            data
## 134                    NYU_DS4E                                      regression
## 135                 NYU_IntroDS                                         science
## 136                   Princeton                                          models
## 137                  UCSanDiego                                         lecture
## 138                  UCSanDiego                                         partner
## 139                  UCSanDiego                                        projects
## 140                     UIU_107                                            00pm
## 141                   UKentucky                                          online
## 142                         UMD                                         affairs
## 143   UWisc_Madison_Programming                                          grader
## 144                  UWisconsin                                        practice
## 145                     UZurich                                      likelihood
## 146            Washington_State                                           basic
## 147            William_and_Mary                                      regression
## 148            William_and_Mary                                          return
## 149                       Brown                                              ml
## 150                      Drexel                                      university
## 151                         LSU                                    introduction
## 152                         MIT                                           final
## 153                         MIT                                            sets
## 154                    NYU_DS4E                                           learn
## 155                    NYU_DS4E                                      statistics
## 156                  UCSanDiego                                          answer
## 157                  UCSanDiego                                      autograder
## 158                  UCSanDiego                                           check
## 159                  UCSanDiego                                            data
## 160                  UCSanDiego                                              ed
## 161                  UCSanDiego                                       integrity
## 162                  UCSanDiego                                         midterm
## 163                  UCSanDiego                                           staff
## 164                  UCSanDiego                                      submission
## 165                     UIU_207                                            stat
## 166                   UKentucky                                         science
## 167                         UMD                                         grading
## 168                         UMD                                       resources
## 169                USouthampton                                        comp6235
## 170                       UUtah                                            code
## 171                       UUtah                                          online
## 172                    UVA_Stat                                          checks
## 173   UWisc_Madison_Programming                                          canvas
## 174   UWisc_Madison_Programming                                            exam
## 175   UWisc_Madison_Programming                                           exams
## 176   UWisc_Madison_Programming                                            late
## 177   UWisc_Madison_Programming                                         quizzes
## 178   UWisc_Madison_Programming                                        semester
## 179   UWisc_Madison_Programming                                         student
## 180                  UWisconsin                                     discussions
## 181                  UWisconsin                                           final
## 182                  UWisconsin                                        syllabus
## 183                     UZurich                                         maximum
## 184                         ASU                                     probability
## 185                     Cornell                                        deadline
## 186                      Drexel                                            blog
## 187                      Drexel                                         machine
## 188                     Harvard                                        exercise
## 189                     Harvard                                            pset
## 190                     Harvard                                         science
## 191                     Harvard                                         tableau
## 192                     Harvard                                         tuesday
## 193             Montgomery_Coll                                         support
## 194                    NYU_DS4E                                          tables
## 195                  UCBerkeley                                            fall
## 196                  UCSanDiego                                           final
## 197                  UCSanDiego                                          grades
## 198                  UCSanDiego                                      submitting
## 199                   UKentucky                                     information
## 200                   UKentucky                                         project
## 201                   UKentucky                                            week
## 202                   UKentucky                                     www.uky.edu
## 203                         UMD                                          degree
## 204                         UMD                                         faculty
## 205                         UMD                                      university
## 206                       UUtah                                      activities
## 207                       UUtah                                        analysis
## 208                       UUtah                                        lectures
## 209                       UUtah                                       resources
## 210                     UVA_SDS                                       professor
## 211                    UVA_Stat                                            code
## 212   UWisc_Madison_Programming                                        computer
## 213   UWisc_Madison_Programming                                         madison
## 214   UWisc_Madison_Programming                                         partner
## 215   UWisc_Madison_Programming                                     programming
## 216                  UWisconsin                                         edition
## 217                  UWisconsin                                         explain
## 218                  UWisconsin                                          length
## 219                  UWisconsin                                           notes
## 220                  UWisconsin                                           title
## 221                     UZurich                                  classification
## 222                     UZurich                                    optimisation
## 223                     UZurich                                         science
## 224            William_and_Mary                                            elif
## 225                     Cornell                                             lab
## 226                     Cornell                                         prepare
## 227                      Drexel                                         history
## 228                      Drexel                                        readings
## 229                         LSU                         introdatasci.dlilab.com
## 230                         LSU                                             lsu
## 231             Montgomery_Coll                                         college
## 232                    NYU_DS4E                                        learning
## 233                    NYU_DS4E                                     programming
## 234                   Princeton                                        datasets
## 235                  UCSanDiego                                        complete
## 236                  UCSanDiego                                        deadline
## 237                  UCSanDiego                                           exams
## 238                  UCSanDiego                                            labs
## 239                  UCSanDiego                                         quarter
## 240                  UCSanDiego                                           score
## 241                  UCSanDiego                                        waitlist
## 242                     UIU_107                                          credit
## 243                     UIU_207                                            data
## 244                   UKentucky                                     discussions
## 245                         UMD                                     discussions
## 246                      UMaine                                        syllabus
## 247                    UToronto                                            data
## 248                       UUtah                                           learn
## 249                       UUtah                                         science
## 250   UWisc_Madison_Programming                                           cs220
## 251   UWisc_Madison_Programming                                         faculty
## 252   UWisc_Madison_Programming                                          grades
## 253                  UWisconsin                                        describe
## 254                  UWisconsin                                             oct
## 255                  UWisconsin                                       publisher
## 256            William_and_Mary                                           final
## 257                         ASU                                             asu
## 258                         ASU                                            exam
## 259                         ASU                                     information
## 260                         ASU                                          python
## 261                  Boston_Uni                                          piazza
## 262                     Cornell                                           exams
## 263                     Cornell                                            late
## 264                      Drexel                                       analytics
## 265                      Drexel                                        calculus
## 266                      Drexel                                            demo
## 267                      Drexel                                         project
## 268                      Drexel                                             web
## 269                      Drexel                                            week
## 270                Georgia_Tech                                    applications
## 271                Georgia_Tech                                            data
## 272                Georgia_Tech                                        learning
## 273                Georgia_Tech                                          linear
## 274                     Harvard                                        analysis
## 275                     Harvard                                      discussion
## 276                     Harvard                                     engineering
## 277                     Harvard                                            late
## 278                     Harvard                                        learning
## 279                         LSU                                         results
## 280                         LSU                                         student
## 281                         MIT                                            exam
## 282                         MIT                                     programming
## 283             Montgomery_Coll                                      instructor
## 284             Montgomery_Coll                                            quiz
## 285                 NYU_IntroDS                                       homeworks
## 286                 NYU_IntroDS                                         session
## 287                   Princeton                                           exams
## 288                   Princeton                                          factor
## 289                   Princeton                                            hall
## 290                   Princeton                                             pdf
## 291                     Rutgers                                         rutgers
## 292                     Rutgers                                   undergraduate
## 293                  UCBerkeley                                       notebooks
## 294                  UCBerkeley                                          spring
## 295                  UCSanDiego                                          access
## 296                  UCSanDiego                                       homeworks
## 297                  UCSanDiego                                            ucsd
## 298                  UCSanDiego                                            week
## 299                     UIU_107                                           extra
## 300                     UIU_207                                             pts
## 301                         UMD                                         courses
## 302                         UMD                                            date
## 303                         UMD                                        exercise
## 304                         UMD                                      instructor
## 305                         UMD                                          online
## 306                         UMD                                   participation
## 307                         UMD                                    requirements
## 308                      UMaine                                      statistics
## 309                      UMaine                                         student
## 310                      UMaine                                      university
## 311                USouthampton                                     southampton
## 312                USouthampton                                      university
## 313                    UToronto                                             dec
## 314                       UUtah                                      assessment
## 315                       UUtah                                           based
## 316                       UUtah                                            free
## 317                       UUtah                                            late
## 318                       UUtah                                        provided
## 319                       UUtah                                            time
## 320                       UUtah                                      university
## 321                     UVA_SDS                                           guest
## 322                     UVA_SDS                                        learning
## 323                     UVA_SDS                                              lo
## 324                    UVA_Stat                                   participation
## 325      UWisc_Madison_Modeling                                      discussion
## 326   UWisc_Madison_Programming                                            auto
## 327   UWisc_Madison_Programming                                           based
## 328   UWisc_Madison_Programming                                        complete
## 329   UWisc_Madison_Programming                                              cs
## 330   UWisc_Madison_Programming                                     information
## 331   UWisc_Madison_Programming                                      instructor
## 332   UWisc_Madison_Programming                                          online
## 333   UWisc_Madison_Programming                                           prior
## 334   UWisc_Madison_Programming                                         science
## 335   UWisc_Madison_Programming                                           tests
## 336   UWisc_Madison_Programming                                            time
## 337                  UWisconsin                                          action
## 338                  UWisconsin                                        activity
## 339                  UWisconsin                                        calendar
## 340                  UWisconsin                                        chapters
## 341                  UWisconsin                                           excel
## 342                  UWisconsin                                     forecasting
## 343                  UWisconsin                                      instructor
## 344                  UWisconsin                                             nov
## 345                  UWisconsin                                         perform
## 346                  UWisconsin                                      regression
## 347                  UWisconsin                                        required
## 348                     UZurich                                        analysis
## 349                     UZurich                                          convex
## 350                     UZurich                                         methods
## 351            Washington_State                                          graphs
## 352            Washington_State                                        learning
## 353            Washington_State                                           tools
## 354            William_and_Mary                                  classification
## 355            William_and_Mary                                        learning
## 356                         ASU                                      instructor
## 357                         ASU                                      university
## 358                         ASU                                       variables
## 359                  Boston_Uni                                   collaboration
## 360                  Boston_Uni                                            time
## 361                       Brown                                         science
## 362                        CUNY                                        analysis
## 363                        CUNY                                          python
## 364                     Cornell                                             aes
## 365                     Cornell                                         lecture
## 366                     Cornell                                        lectures
## 367                     Cornell                                        question
## 368                      Drexel                                          google
## 369                      Drexel                                           index
## 370                      Drexel                                        policies
## 371                      Drexel                                         student
## 372                      Drexel                                           types
## 373                      Drexel                                           watch
## 374                      Drexel                                 www.youtube.com
## 375                Georgia_Tech                                         algebra
## 376                Georgia_Tech                                             ece
## 377                     Harvard                                     exploratory
## 378                     Harvard                                     programming
## 379                     Harvard                                    storytelling
## 380                     Harvard                                   visualization
## 381                         LSU                                           final
## 382                         MIT                                    introduction
## 383             Montgomery_Coll                                        analysis
## 384             Montgomery_Coll                                            page
## 385                    NYU_DS4E                                        analysis
## 386                    NYU_DS4E                                          ethics
## 387                    NYU_DS4E                                            labs
## 388                    NYU_DS4E                                          pandas
## 389                    NYU_DS4E                                          review
## 390                    NYU_DS4E                                           start
## 391                    NYU_DS4E                                          theory
## 392                    NYU_DS4E                                        thinking
## 393                    NYU_DS4E                                           world
## 394                 NYU_IntroDS                                        decision
## 395                   Princeton                                            book
## 396                   Princeton                                      covariance
## 397                   Princeton                                      regression
## 398                   Princeton                                         science
## 399                   Princeton                                      statistics
## 400                  UCBerkeley                                          summer
## 401                  UCSanDiego                                         correct
## 402                  UCSanDiego                                            held
## 403                  UCSanDiego                                        question
## 404                  UCSanDiego                                             run
## 405                  UCSanDiego                                       submitted
## 406                         UMD                                      completion
## 407                         UMD                                        graduate
## 408                         UMD                                     information
## 409                         UMD                                        turnitin
## 410                      UMaine                                      confidence
## 411                      UMaine                                        gaussian
## 412                      UMaine                                          sample
## 413                      UMaine                                        variance
## 414                USouthampton                                     foundations
## 415                USouthampton                                         science
## 416                    UToronto                                          health
## 417                    UToronto                                          linear
## 418                    UToronto                                         machine
## 419                    UToronto                                       practical
## 420                       UUtah                                          campus
## 421                       UUtah                                         contact
## 422                       UUtah                                             day
## 423                       UUtah                                       including
## 424                       UUtah                                      instructor
## 425                       UUtah                                        language
## 426                       UUtah                                       materials
## 427                       UUtah                                        projects
## 428                       UUtah                                        schedule
## 429                       UUtah                                     submissions
## 430                       UUtah                                          submit
## 431                       UUtah                                       teammates
## 432                     UVA_SDS                                           learn
## 433      UWisc_Madison_Modeling                                        assigned
## 434   UWisc_Madison_Programming                                  accommodations
## 435   UWisc_Madison_Programming                                         allowed
## 436   UWisc_Madison_Programming                                        cheating
## 437   UWisc_Madison_Programming                                          credit
## 438   UWisc_Madison_Programming                                           cs319
## 439   UWisc_Madison_Programming                                      department
## 440   UWisc_Madison_Programming                                        graduate
## 441   UWisc_Madison_Programming                                        partners
## 442   UWisc_Madison_Programming                                          scores
## 443   UWisc_Madison_Programming                                              uw
## 444   UWisc_Madison_Programming                                            week
## 445                  UWisconsin                                         content
## 446                  UWisconsin                                       databases
## 447                  UWisconsin                                           ebook
## 448                  UWisconsin                                    introduction
## 449                  UWisconsin                                       paperback
## 450                  UWisconsin                                       practices
## 451                  UWisconsin                                         quizzes
## 452                  UWisconsin                                      statements
## 453                     UZurich                                      clustering
## 454                     UZurich                                        examples
## 455                     UZurich                                          models
## 456                     UZurich                                     probability
## 457              UniSys_Georgia                                        analysis
## 458            Washington_State                                        analysis
## 459            William_and_Mary                                        keywords
## 460            William_and_Mary                                          review
## 461            William_and_Mary                                        semester
## 462            William_and_Mary                                            time
## 463                         ASU                                          random
## 464                  Boston_Uni                                        learning
## 465                  Boston_Uni                                        material
## 466                       Brown                                      regression
## 467                        CUNY                                         methods
## 468                        CUNY                                         science
## 469                     Cornell                                        concepts
## 470                     Cornell                                            copy
## 471                     Cornell                                             day
## 472                     Cornell                                      discussion
## 473                     Cornell                                          ensure
## 474                     Cornell                                       exercises
## 475                     Cornell                                           final
## 476                     Cornell                                            labs
## 477                     Cornell                                     opportunity
## 478                     Cornell                                         perform
## 479                     Cornell                                        practice
## 480                     Cornell                                        services
## 481                     Cornell                                         student
## 482                     Cornell                                          submit
## 483                      Drexel                                         content
## 484                      Drexel                                     description
## 485                      Drexel                                          design
## 486                      Drexel                                            exam
## 487                      Drexel                                     information
## 488                      Drexel                                          linear
## 489                      Drexel                                        overview
## 490                      Drexel                                      scientists
## 491                      Drexel                                        scraping
## 492                      Drexel                                          search
## 493                      Drexel                                           sites
## 494                      Drexel                                  www.drexel.edu
## 495                     Harvard                                           final
## 496                     Harvard                                        managing
## 497                     Harvard                                            time
## 498                         LSU                                            code
## 499                         LSU                                       community
## 500                         LSU                                     programming
## 501                         LSU                                         project
## 502                         LSU                                     www.lsu.edu
## 503             Montgomery_Coll                                          access
## 504             Montgomery_Coll                                      montgomery
## 505             Montgomery_Coll                                        projects
## 506             Montgomery_Coll                                         science
## 507             Montgomery_Coll                                       technical
## 508                    NYU_DS4E                                  classification
## 509                    NYU_DS4E                                        datasets
## 510                    NYU_DS4E                                            exam
## 511                    NYU_DS4E                                      hypotheses
## 512                    NYU_DS4E                                       inference
## 513                    NYU_DS4E                                         lecture
## 514                    NYU_DS4E                                         midterm
## 515                    NYU_DS4E                                       scientist
## 516                    NYU_DS4E                                        semester
## 517                    NYU_DS4E                                          skills
## 518                    NYU_DS4E                                            time
## 519                    NYU_DS4E                                          you’ll
## 520                 NYU_IntroDS                                            labs
## 521                   Princeton                                     classifiers
## 522                   Princeton                                     foundations
## 523                   Princeton                                             lab
## 524                   Princeton                                   princeton.edu
## 525                   Princeton                                          sparse
## 526                  UCSanDiego                                          attend
## 527                  UCSanDiego                                        notebook
## 528                  UCSanDiego                                          passed
## 529                  UCSanDiego                                          person
## 530                  UCSanDiego                                         receive
## 531                  UCSanDiego                                         student
## 532                  UCSanDiego                                            time
## 533                     UIU_107                                         project
## 534                     UIU_207                                             min
## 535                     UIU_207                                         science
## 536                   UKentucky                                        absences
## 537                   UKentucky                                         excused
## 538                   UKentucky                                    introduction
## 539                   UKentucky                                         posting
## 540                   UKentucky                                         student
## 541                         UMD                                      assessment
## 542                         UMD                                         current
## 543                         UMD                                        expected
## 544                         UMD                                       extension
## 545                         UMD                                        external
## 546                         UMD                                      incomplete
## 547                         UMD                                            late
## 548                         UMD                              libguides.umgc.edu
## 549                         UMD                                          python
## 550                         UMD                                        research
## 551                         UMD                                        syllabus
## 552                      UMaine                                            date
## 553                      UMaine                                    distribution
## 554                      UMaine                                            time
## 555                USouthampton                                         courses
## 556                USouthampton                                         modules
## 557                USouthampton                                        syllabus
## 558                    UToronto                                             mml
## 559                    UToronto                                            quiz
## 560                    UToronto                                            time
## 561                       UUtah                                  accommodations
## 562                       UUtah                                          canvas
## 563                       UUtah                                         content
## 564                       UUtah                                     information
## 565                       UUtah                                     instructors
## 566                       UUtah                                    introduction
## 567                       UUtah                                       libraries
## 568                       UUtah                                           links
## 569                       UUtah                                            math
## 570                       UUtah                                     programming
## 571                       UUtah                                         provide
## 572                       UUtah                                            read
## 573                       UUtah                                          safety
## 574                       UUtah                                          status
## 575                       UUtah                                            utah
## 576                       UUtah                                         website
## 577                     UVA_SDS                                          design
## 578                     UVA_SDS                                          school
## 579      UWisc_Madison_Modeling                                        modeling
## 580      UWisc_Madison_Modeling                                         reading
## 581   UWisc_Madison_Programming                                      evaluation
## 582   UWisc_Madison_Programming                                     interaction
## 583   UWisc_Madison_Programming                                          person
## 584   UWisc_Madison_Programming                                            quiz
## 585   UWisc_Madison_Programming                                            read
## 586   UWisc_Madison_Programming                                        sciences
## 587   UWisc_Madison_Programming                                      submission
## 588   UWisc_Madison_Programming                                        teaching
## 589                  UWisconsin                                           dates
## 590                  UWisconsin                                             dos
## 591                  UWisconsin                                              ds
## 592                  UWisconsin                                          lesson
## 593                  UWisconsin                                         privacy
## 594                  UWisconsin                                          quants
## 595                  UWisconsin                                     recommended
## 596                  UWisconsin                                            time
## 597                  UWisconsin                                          topics
## 598                  UWisconsin                                          visual
## 599                     UZurich                                        calculus
## 600                     UZurich                                     formulation
## 601                     UZurich                                        gradient
## 602                     UZurich                                        logistic
## 603                     UZurich                                          matrix
## 604                     UZurich                                           model
## 605                     UZurich                                          neural
## 606              UniSys_Georgia                                         methods
## 607              UniSys_Georgia                                         science
## 608            Washington_State                                      algorithms
## 609            Washington_State                                         feature
## 610            Washington_State                                          linear
## 611            Washington_State                                        modeling
## 612            Washington_State                                     statistical
## 613            William_and_Mary                                   communication
## 614            William_and_Mary                                      introduced
## 615            William_and_Mary                                         methods
## 616            William_and_Mary                                         science
## 617            William_and_Mary                                      techniques
## 618                         ASU                                  accommodations
## 619                         ASU                                            data
## 620                         ASU                                             drc
## 621                         ASU                                        gradient
## 622                         ASU                                             sex
## 623                         ASU                                         subject
## 624                         ASU                                          topics
## 625                         ASU                                      understand
## 626                  Boston_Uni                                         science
## 627                  Boston_Uni                                          topics
## 628                       Brown                                      supervised
## 629                        CUNY                                        critical
## 630                        CUNY                                           final
## 631                        CUNY                                     programming
## 632                        CUNY                                          social
## 633                     Cornell                                      activities
## 634                     Cornell                                     application
## 635                     Cornell                                   circumstances
## 636                     Cornell                                       completed
## 637                     Cornell                                          credit
## 638                     Cornell                                         discuss
## 639                     Cornell                                            feel
## 640                     Cornell                                            info
## 641                     Cornell                                        learning
## 642                     Cornell                                          letter
## 643                     Cornell                                        semester
## 644                     Cornell                                        syllabus
## 645                      Drexel                                        analysis
## 646                      Drexel                                       completed
## 647                      Drexel                                      difference
## 648                      Drexel                                          drexel
## 649                      Drexel                                      incomplete
## 650                      Drexel                                      instructor
## 651                      Drexel                                       interface
## 652                      Drexel                                             map
## 653                      Drexel                                        material
## 654                      Drexel                                             pdf
## 655                      Drexel                                    personalized
## 656                      Drexel                                        required
## 657                      Drexel                                         storage
## 658                      Drexel                                    storytelling
## 659                      Drexel                                            term
## 660                Georgia_Tech                                     discussions
## 661                     Harvard                                            csci
## 662                     Harvard                                         machine
## 663                     Harvard                                           mysql
## 664                     Harvard                                         regrade
## 665                     Harvard                                          review
## 666                     Harvard                                        sections
## 667                     Harvard                                           specs
## 668                     Harvard                                             sql
## 669                         LSU                                     information
## 670                         LSU                                        learning
## 671                         MIT                                        computer
## 672                         MIT                                         science
## 673                         MIT                                   understanding
## 674             Montgomery_Coll                                            code
## 675             Montgomery_Coll                                         contact
## 676             Montgomery_Coll                                   participation
## 677             Montgomery_Coll                                       resources
## 678                    NYU_DS4E                                        concepts
## 679                    NYU_DS4E                                     correlation
## 680                    NYU_DS4E                                           final
## 681                    NYU_DS4E                                             key
## 682                    NYU_DS4E                                     limitations
## 683                    NYU_DS4E                                        practice
## 684                    NYU_DS4E                                      prediction
## 685                    NYU_DS4E                                     statistical
## 686                    NYU_DS4E                                         testing
## 687                    NYU_DS4E                                          you’re
## 688                 NYU_IntroDS                                        analysis
## 689                 NYU_IntroDS                                           model
## 690                 NYU_IntroDS                                      principles
## 691                 NYU_IntroDS                                      regression
## 692                   Princeton                                        analysis
## 693                   Princeton                                    introduction
## 694                   Princeton                                          linear
## 695                   Princeton                                           notes
## 696                   Princeton                                           press
## 697                   Princeton                                       screening
## 698                   Princeton                                         sherred
## 699                     Rutgers                                        computer
## 700                     Rutgers                                          degree
## 701                     Rutgers                                        learning
## 702                     Rutgers                                             sas
## 703                     Rutgers                                         science
## 704                  UCBerkeley                                           otter
## 705                  UCSanDiego                                        cheating
## 706                  UCSanDiego                                   collaboration
## 707                  UCSanDiego                                        concepts
## 708                  UCSanDiego                                      considered
## 709                  UCSanDiego                                          graded
## 710                  UCSanDiego                                          hidden
## 711                  UCSanDiego                                            late
## 712                  UCSanDiego                                        learning
## 713                  UCSanDiego                                          letter
## 714                  UCSanDiego                                          online
## 715                  UCSanDiego                                             osd
## 716                  UCSanDiego                                            post
## 717                  UCSanDiego                                          python
## 718                  UCSanDiego                                      recordings
## 719                  UCSanDiego                                         regrade
## 720                  UCSanDiego                                        required
## 721                  UCSanDiego                                  responsibility
## 722                  UCSanDiego                                        schedule
## 723                  UCSanDiego                                         science
## 724                  UCSanDiego                                            test
## 725                  UCSanDiego                                          weekly
## 726                     UIU_107                                            data
## 727                     UIU_107                                       integrity
## 728                     UIU_107                                         section
## 729                     UIU_207                                       integrity
## 730                   UKentucky                                  accommodations
## 731                   UKentucky                                           based
## 732                   UKentucky                                       exercises
## 733                   UKentucky                                      instructor
## 734                   UKentucky                                       knowledge
## 735                   UKentucky                                         library
## 736                   UKentucky                                        military
## 737                   UKentucky                                        policies
## 738                   UKentucky                                          spring
## 739                   UKentucky                                     statistical
## 740                   UKentucky                                      technology
## 741                   UKentucky                                            ukit
## 742                   UKentucky                                         uky.edu
## 743                   UKentucky                                          week’s
## 744                         UMD                                        assigned
## 745                         UMD                                            code
## 746                         UMD                                        feedback
## 747                         UMD                                           final
## 748                         UMD                                      guidelines
## 749                         UMD                                       knowledge
## 750                         UMD                                        material
## 751                         UMD                                           model
## 752                         UMD                                        readings
## 753                         UMD                                       responses
## 754                         UMD                                       submitted
## 755                         UMD                                         success
## 756                         UMD                                          topics
## 757                         UMD                                       wrangling
## 758                      UMaine                                     brightspace
## 759                      UMaine                                           carlo
## 760                      UMaine                                            citl
## 761                      UMaine                                            code
## 762                      UMaine                                      instructor
## 763                      UMaine                                          markov
## 764                      UMaine                                         testing
## 765                      UMaine                                        variable
## 766                USouthampton                           www.southampton.ac.uk
## 767                    UToronto                                       analytics
## 768                    UToronto                                        lectures
## 769                    UToronto                                        projects
## 770                    UToronto                                         session
## 771                    UToronto                                      university
## 772                       UUtah                                           apply
## 773                       UUtah                                        building
## 774                       UUtah                                        calculus
## 775                       UUtah                                   contributions
## 776                       UUtah                                        datasets
## 777                       UUtah                                             e.g
## 778                       UUtah                                       emergency
## 779                       UUtah                                        material
## 780                       UUtah                                         medical
## 781                       UUtah                                         methods
## 782                       UUtah                                          pandas
## 783                       UUtah                                      regression
## 784                       UUtah                                          source
## 785                       UUtah                                            team
## 786                       UUtah                                        wellness
## 787                       UUtah                                         written
## 788                     UVA_SDS                                       analytics
## 789                     UVA_SDS                                        describe
## 790                     UVA_SDS                                         systems
## 791                     UVA_SDS                                           theme
## 792                     UVA_SDS                                            time
## 793                     UVA_SDS                                           world
## 794                    UVA_Stat                                          collab
## 795                    UVA_Stat                                        datetime
## 796                    UVA_Stat                                          submit
## 797                 UWashington                                      activities
## 798      UWisc_Madison_Modeling                                        analysis
## 799      UWisc_Madison_Modeling                                         include
## 800      UWisc_Madison_Modeling                                  interpretation
## 801      UWisc_Madison_Modeling                                     statistical
## 802   UWisc_Madison_Programming                                            data
## 803   UWisc_Madison_Programming                                        examples
## 804   UWisc_Madison_Programming                                           final
## 805   UWisc_Madison_Programming                                         grading
## 806   UWisc_Madison_Programming                                         lecture
## 807   UWisc_Madison_Programming                                        lectures
## 808   UWisc_Madison_Programming                                          lowest
## 809   UWisc_Madison_Programming                                          median
## 810   UWisc_Madison_Programming                                        multiple
## 811   UWisc_Madison_Programming                                         process
## 812   UWisc_Madison_Programming                                        provided
## 813   UWisc_Madison_Programming                                    quantitative
## 814   UWisc_Madison_Programming                                         receive
## 815   UWisc_Madison_Programming                                         regular
## 816   UWisc_Madison_Programming                                        schedule
## 817   UWisc_Madison_Programming                                     substantive
## 818   UWisc_Madison_Programming                                         surveys
## 819   UWisc_Madison_Programming                                       wisconsin
## 820   UWisc_Madison_Programming                                           write
## 821                  UWisconsin                                        analysis
## 822                  UWisconsin                                     application
## 823                  UWisconsin                                         chapter
## 824                  UWisconsin                                          define
## 825                  UWisconsin                                   demonstration
## 826                  UWisconsin                                        feedback
## 827                  UWisconsin                                          graded
## 828                  UWisconsin                                         keeping
## 829                  UWisconsin                                      management
## 830                  UWisconsin                                             of8
## 831                  UWisconsin                                            post
## 832                  UWisconsin                                         process
## 833                  UWisconsin                                        projects
## 834                  UWisconsin                                         purpose
## 835                  UWisconsin                                       scientist
## 836                  UWisconsin                                           smart
## 837                  UWisconsin                                      statistics
## 838                     UZurich                                      generative
## 839                     UZurich                                          kernel
## 840                     UZurich                                           lasso
## 841                     UZurich                                             log
## 842                     UZurich                                        networks
## 843                     UZurich                                     overfitting
## 844                     UZurich                                       selection
## 845                     UZurich                                         squares
## 846                     UZurich                                      validation
## 847              UniSys_Georgia                                        identify
## 848            Washington_State                                          campus
## 849            Washington_State                                             eda
## 850            Washington_State                                         explain
## 851            Washington_State                                       integrity
## 852            Washington_State                                         machine
## 853            Washington_State                                        material
## 854            Washington_State                                          mining
## 855            Washington_State                                          online
## 856            Washington_State                                         project
## 857            Washington_State                                  recommendation
## 858            Washington_State                                      statistics
## 859            Washington_State                                   visualization
## 860            William_and_Mary                                            code
## 861            William_and_Mary                                         discuss
## 862            William_and_Mary                                              dr
## 863            William_and_Mary                                         midterm
## 864            William_and_Mary                                          neural
## 865            William_and_Mary                                          python
## 866            William_and_Mary                                          wm.edu
## 867                         ASU                                           basis
## 868                         ASU                                      disruptive
## 869                         ASU                                           final
## 870                         ASU                                    mathematical
## 871                         ASU                                         student
## 872                         ASU                                        syllabus
## 873                         ASU                                            time
## 874                         ASU                                           title
## 875                         ASU                                        violence
## 876                         ASU                                            week
## 877                  Boston_Uni                                             lab
## 878                  Boston_Uni                                            late
## 879                  Boston_Uni                                         lecture
## 880                  Boston_Uni                                          python
## 881                       Brown                                        analysis
## 882                       Brown                                           final
## 883                       Brown                                        learning
## 884                       Brown                                   presentations
## 885                        CUNY                                        approach
## 886                        CUNY                                        feminist
## 887                        CUNY                                    mathematical
## 888                        CUNY                                           power
## 889                        CUNY                                    quantitative
## 890                     Cornell                                        analysis
## 891                     Cornell                                   announcements
## 892                     Cornell                                           apply
## 893                     Cornell                                          canvas
## 894                     Cornell                                      completion
## 895                     Cornell                                      considered
## 896                     Cornell                                         content
## 897                     Cornell                                     cornell.edu
## 898                     Cornell                                            date
## 899                     Cornell                                        designed
## 900                     Cornell                                       extension
## 901                     Cornell                                           extra
## 902                     Cornell                                          github
## 903                     Cornell                                          graded
## 904                     Cornell                                        includes
## 905                     Cornell                             infosci.cornell.edu
## 906                     Cornell                                         regrade
## 907                     Cornell                                         request
## 908                     Cornell                                        requests
## 909                     Cornell                                       soltoffbc
## 910                     Cornell                                       submitted
## 911                     Cornell                                            team
## 912                     Cornell                                            time
## 913                      Drexel                                     3blue1brown
## 914                      Drexel                                         algebra
## 915                      Drexel                             betterexplained.com
## 916                      Drexel                                        brownlee
## 917                      Drexel                                        business
## 918                      Drexel                                      challenges
## 919                      Drexel                                  classification
## 920                      Drexel                                          common
## 921                      Drexel                                       computing
## 922                      Drexel                                       confusion
## 923                      Drexel                                        congress
## 924                      Drexel                                           demos
## 925                      Drexel                                         diagram
## 926                      Drexel                                         essence
## 927                      Drexel                                           grant
## 928                      Drexel                                        intro2ds
## 929                      Drexel                                           jason
## 930                      Drexel                                         journal
## 931                      Drexel                                         library
## 932                      Drexel                                            list
## 933                      Drexel                      machinelearningmastery.com
## 934                      Drexel                                         mastery
## 935                      Drexel                                         methods
## 936                      Drexel                                    presentation
## 937                      Drexel                                     programming
## 938                      Drexel                                     projections
## 939                      Drexel                                        projects
## 940                      Drexel                                       sanderson
## 941                      Drexel                                       selection
## 942                      Drexel                                     statistical
## 943                      Drexel                                      statistics
## 944                      Drexel                                      technology
## 945                      Drexel                                         twitter
## 946                      Drexel                                            venn
## 947                      Drexel                                           wired
## 948                Georgia_Tech                                          convex
## 949                Georgia_Tech                                     foundations
## 950                Georgia_Tech                                        lectures
## 951                Georgia_Tech                                    mathematical
## 952                Georgia_Tech                                          method
## 953                Georgia_Tech                                          online
## 954                Georgia_Tech                                          person
## 955                Georgia_Tech                                     probability
## 956                Georgia_Tech                                     programming
## 957                Georgia_Tech                                         science
## 958                Georgia_Tech                                         squares
## 959                     Harvard                                          canvas
## 960                     Harvard                                        database
## 961                     Harvard                                             dml
## 962                     Harvard                                          grades
## 963                     Harvard                                     integration
## 964                     Harvard                                       integrity
## 965                     Harvard                                      management
## 966                     Harvard                                         midterm
## 967                     Harvard                                        policies
## 968                     Harvard                                         request
## 969                     Harvard                                     responsible
## 970                     Harvard                                         revised
## 971                     Harvard                                           rules
## 972                     Harvard                                          source
## 973                     Harvard                                           staff
## 974                     Harvard                                        teaching
## 975                         LSU                                           files
## 976                         LSU                                             git
## 977                         LSU                                         lsu.edu
## 978                         LSU                                          online
## 979                         LSU                                             saa
## 980                         LSU                                        services
## 981                         LSU                                            text
## 982                         LSU                                       violation
## 983                         MIT                                            book
## 984                         MIT                                            data
## 985                         MIT                                        lectures
## 986                         MIT                                        material
## 987                         MIT                                          python
## 988                         MIT                                           score
## 989                         MIT                                            term
## 990             Montgomery_Coll                                      assistance
## 991             Montgomery_Coll                                          center
## 992             Montgomery_Coll                                        computer
## 993             Montgomery_Coll                                           final
## 994             Montgomery_Coll                                          grades
## 995             Montgomery_Coll                                          laptop
## 996             Montgomery_Coll                                         quizzes
## 997             Montgomery_Coll                                         service
## 998             Montgomery_Coll                                        syllabus
## 999             Montgomery_Coll                                            time
## 1000                   NYU_DS4E                                     appointment
## 1001                   NYU_DS4E                                          biases
## 1002                   NYU_DS4E                                          causal
## 1003                   NYU_DS4E                                       causality
## 1004                   NYU_DS4E                                             day
## 1005                   NYU_DS4E                                         discuss
## 1006                   NYU_DS4E                                      experience
## 1007                   NYU_DS4E                                             fun
## 1008                   NYU_DS4E                                       functions
## 1009                   NYU_DS4E                                          handed
## 1010                   NYU_DS4E                                      hypothesis
## 1011                   NYU_DS4E                                          import
## 1012                   NYU_DS4E                                       including
## 1013                   NYU_DS4E                                       interpret
## 1014                   NYU_DS4E                                            it’s
## 1015                   NYU_DS4E                                            life
## 1016                   NYU_DS4E                                      randomness
## 1017                   NYU_DS4E                                        readings
## 1018                   NYU_DS4E                                         results
## 1019                   NYU_DS4E                                            skim
## 1020                   NYU_DS4E                                           types
## 1021                   NYU_DS4E                                           weeks
## 1022                   NYU_DS4E                                           we’re
## 1023                NYU_IntroDS                                        identify
## 1024                NYU_IntroDS                                      instructor
## 1025                NYU_IntroDS                                          issues
## 1026                NYU_IntroDS                                          linear
## 1027                NYU_IntroDS                                           moses
## 1028                NYU_IntroDS                                          review
## 1029                NYU_IntroDS                                        sciences
## 1030                NYU_IntroDS                                          social
## 1031                NYU_IntroDS                                      techniques
## 1032                NYU_IntroDS                                        tutoring
## 1033                  Princeton                                            00am
## 1034                  Princeton                                            00pm
## 1035                  Princeton                                            30pm
## 1036                  Princeton                                      algorithms
## 1037                  Princeton                                    applications
## 1038                  Princeton                                             crc
## 1039                  Princeton                                         details
## 1040                  Princeton                                            exam
## 1041                  Princeton                                     generalized
## 1042                  Princeton                                         machine
## 1043                  Princeton                                           model
## 1044                  Princeton                                        multiple
## 1045                  Princeton                                       penalized
## 1046                  Princeton                                       professor
## 1047                  Princeton                                       selection
## 1048                  Princeton                                             set
## 1049                  Princeton                                          skills
## 1050                  Princeton                                            york
## 1051                    Rutgers                                     information
## 1052                    Rutgers                                           major
## 1053                    Rutgers                                         puzzles
## 1054                    Rutgers                                        schedule
## 1055                    Rutgers                                          topics
## 1056                    Rutgers                                             web
## 1057                 UCBerkeley                                       github.io
## 1058                 UCBerkeley                                          grader
## 1059                 UCBerkeley                                       materials
## 1060                 UCBerkeley                                         science
## 1061                 UCBerkeley                                          source
## 1062                 UCBerkeley                                        textbook
## 1063                 UCSanDiego                                            50pm
## 1064                 UCSanDiego                                   communication
## 1065                 UCSanDiego                                         contact
## 1066                 UCSanDiego                                         datahub
## 1067                 UCSanDiego                                       deadlines
## 1068                 UCSanDiego                                         details
## 1069                 UCSanDiego                                      encouraged
## 1070                 UCSanDiego                                            file
## 1071                 UCSanDiego                                           learn
## 1072                 UCSanDiego                                            list
## 1073                 UCSanDiego                                         message
## 1074                 UCSanDiego                                           notes
## 1075                 UCSanDiego                                      officially
## 1076                 UCSanDiego                                            pass
## 1077                 UCSanDiego                                        readings
## 1078                 UCSanDiego                                           space
## 1079                 UCSanDiego                                           start
## 1080                 UCSanDiego                                          survey
## 1081                 UCSanDiego                                           tools
## 1082                 UCSanDiego                                         written
## 1083                    UIU_107                                        analysis
## 1084                    UIU_107                                   collaboration
## 1085                    UIU_107                                        computer
## 1086                    UIU_107                                      discussion
## 1087                    UIU_107                                            exam
## 1088                    UIU_107                                           final
## 1089                    UIU_107                                             scd
## 1090                    UIU_107                                         science
## 1091                    UIU_107                                        sections
## 1092                    UIU_107                                        semester
## 1093                    UIU_107                                            stat
## 1094                    UIU_207                                           bonus
## 1095                    UIU_207                                   collaboration
## 1096                    UIU_207                                             lab
## 1097                    UIU_207                                            labs
## 1098                    UIU_207                                          python
## 1099                    UIU_207                                     statistical
## 1100                    UIU_207                                      understand
## 1101                  UKentucky                                          center
## 1102                  UKentucky                                         contact
## 1103                  UKentucky                                        distance
## 1104                  UKentucky                                        expected
## 1105                  UKentucky                                         grading
## 1106                  UKentucky                                             kim
## 1107                  UKentucky                                             lis
## 1108                  UKentucky                                         related
## 1109                  UKentucky                                       resources
## 1110                  UKentucky                                         service
## 1111                  UKentucky                                        services
## 1112                  UKentucky                                          skills
## 1113                  UKentucky                                        syllabus
## 1114                  UKentucky                                            time
## 1115                  UKentucky                                       youngseek
## 1116                        UMD                                          access
## 1117                        UMD                                      additional
## 1118                        UMD                                         average
## 1119                        UMD                                        business
## 1120                        UMD                                          checks
## 1121                        UMD                                        civility
## 1122                        UMD                                        concepts
## 1123                        UMD                                         contact
## 1124                        UMD                                         content
## 1125                        UMD                                     copyrighted
## 1126                        UMD                                          credit
## 1127                        UMD                                        critical
## 1128                        UMD                                      experience
## 1129                        UMD                                           extra
## 1130                        UMD                                          global
## 1131                        UMD                                            home
## 1132                        UMD                                       including
## 1133                        UMD                                            life
## 1134                        UMD                                       materials
## 1135                        UMD                                       microsoft
## 1136                        UMD                                     participate
## 1137                        UMD                                        personal
## 1138                        UMD                                        plotting
## 1139                        UMD                                      procedures
## 1140                        UMD                                        requests
## 1141                        UMD                                        required
## 1142                        UMD                                  responsibility
## 1143                        UMD                                          review
## 1144                        UMD                                         section
## 1145                        UMD                                   visualization
## 1146                     UMaine                                     conditional
## 1147                     UMaine                                      covariance
## 1148                     UMaine                                        decision
## 1149                     UMaine                                     expectation
## 1150                     UMaine                                    introduction
## 1151                     UMaine                                           maine
## 1152                     UMaine                                         process
## 1153                     UMaine                                        required
## 1154                     UMaine                                        schedule
## 1155                     UMaine                                       solutions
## 1156                     UMaine                                       statement
## 1157                     UMaine                                     statistical
## 1158                     UMaine                                      umaine.edu
## 1159                   UToronto                                         aps1070
## 1160                   UToronto                                    disabilities
## 1161                   UToronto                                     foundations
## 1162                   UToronto                                             pca
## 1163                   UToronto                                          python
## 1164                   UToronto                                      regression
## 1165                   UToronto                                        starting
## 1166                   UToronto                                         student
## 1167                   UToronto                                         toronto
## 1168                   UToronto                                        tutorial
## 1169                   UToronto                                        wellness
## 1170                      UUtah                                      additional
## 1171                      UUtah                                        concepts
## 1172                      UUtah                                           covid
## 1173                      UUtah                                          credit
## 1174                      UUtah                                      documented
## 1175                      UUtah                                           dream
## 1176                      UUtah                                     engineering
## 1177                      UUtah                                        evaluate
## 1178                      UUtah                                        external
## 1179                      UUtah                                      frameworks
## 1180                      UUtah                                      guidelines
## 1181                      UUtah                                          health
## 1182                      UUtah                                        includes
## 1183                      UUtah                                          linear
## 1184                      UUtah                                           media
## 1185                      UUtah                                          mental
## 1186                      UUtah                                        o'reilly
## 1187                      UUtah                                          person
## 1188                      UUtah                                          piazza
## 1189                      UUtah                                        policies
## 1190                      UUtah                                        programs
## 1191                      UUtah                                         pronoun
## 1192                      UUtah                                         receive
## 1193                      UUtah                                         results
## 1194                      UUtah                                            site
## 1195                      UUtah                                         sources
## 1196                      UUtah                                      statistics
## 1197                      UUtah                                         subject
## 1198                      UUtah                                        teaching
## 1199                      UUtah                                        training
## 1200                      UUtah                                         writing
## 1201                    UVA_SDS                                          canvas
## 1202                    UVA_SDS                                         capital
## 1203                    UVA_SDS                                              dp
## 1204                    UVA_SDS                                           field
## 1205                    UVA_SDS                                          future
## 1206                    UVA_SDS                                            game
## 1207                    UVA_SDS                                         garbage
## 1208                    UVA_SDS                                            hall
## 1209                    UVA_SDS                                        hardware
## 1210                    UVA_SDS                                       objective
## 1211                    UVA_SDS                                        semester
## 1212                    UVA_SDS                                         student
## 1213                    UVA_SDS                                         support
## 1214                    UVA_SDS                                          system
## 1215                    UVA_SDS                                        virginia
## 1216                    UVA_SDS                                  www.amazon.com
## 1217                   UVA_Stat                                        deadline
## 1218                   UVA_Stat                                     information
## 1219                   UVA_Stat                                       resources
## 1220                   UVA_Stat                                         visible
## 1221                UWashington                                            data
## 1222                UWashington                                     evaluations
## 1223                UWashington                                   participation
## 1224                UWashington                                            time
## 1225     UWisc_Madison_Modeling                                        document
## 1226     UWisc_Madison_Modeling                                        markdown
## 1227     UWisc_Madison_Modeling                                         project
## 1228     UWisc_Madison_Modeling                                         science
## 1229  UWisc_Madison_Programming                                      attendance
## 1230  UWisc_Madison_Programming                                         content
## 1231  UWisc_Madison_Programming                                         copying
## 1232  UWisc_Madison_Programming                                             day
## 1233  UWisc_Madison_Programming                                       detection
## 1234  UWisc_Madison_Programming                                    disabilities
## 1235  UWisc_Madison_Programming                                          graded
## 1236  UWisc_Madison_Programming                                           index
## 1237  UWisc_Madison_Programming                                     instruction
## 1238  UWisc_Madison_Programming                                   instructional
## 1239  UWisc_Madison_Programming                                            labs
## 1240  UWisc_Madison_Programming                                          laptop
## 1241  UWisc_Madison_Programming                                          lec001
## 1242  UWisc_Madison_Programming                                            list
## 1243  UWisc_Madison_Programming                                             mwf
## 1244  UWisc_Madison_Programming                                              p1
## 1245  UWisc_Madison_Programming                                              p9
## 1246  UWisc_Madison_Programming                                          people
## 1247  UWisc_Madison_Programming                                        required
## 1248  UWisc_Madison_Programming                                  responsibility
## 1249  UWisc_Madison_Programming                                          result
## 1250  UWisc_Madison_Programming                                       sortedlst
## 1251  UWisc_Madison_Programming                                           tools
## 1252  UWisc_Madison_Programming                                      university
## 1253  UWisc_Madison_Programming                                          weekly
## 1254  UWisc_Madison_Programming                                           weeks
## 1255                 UWisconsin                                        business
## 1256                 UWisconsin                                          common
## 1257                 UWisconsin                                             dec
## 1258                 UWisconsin                                      governance
## 1259                 UWisconsin                                       hardcover
## 1260                 UWisconsin                                     information
## 1261                 UWisconsin                                             key
## 1262                 UWisconsin                                        learning
## 1263                 UWisconsin                                        managing
## 1264                 UWisconsin                                         medical
## 1265                 UWisconsin                                         minutes
## 1266                 UWisconsin                                          models
## 1267                 UWisconsin                                      procedures
## 1268                 UWisconsin                                         related
## 1269                 UWisconsin                                      relational
## 1270                 UWisconsin                                          review
## 1271                 UWisconsin                                           risks
## 1272                 UWisconsin                                            role
## 1273                 UWisconsin                                             sep
## 1274                 UWisconsin                                          server
## 1275                 UWisconsin                                        software
## 1276                 UWisconsin                                         tableau
## 1277                 UWisconsin                                      technology
## 1278                 UWisconsin                                       textbooks
## 1279                 UWisconsin                                            type
## 1280                 UWisconsin                                           types
## 1281                 UWisconsin                                           weeks
## 1282                    UZurich                                         algebra
## 1283                    UZurich                                       algorithm
## 1284                    UZurich                                      algorithms
## 1285                    UZurich                                     constrained
## 1286                    UZurich                                          curves
## 1287                    UZurich                                       estimator
## 1288                    UZurich                                           noise
## 1289                    UZurich                                      supervised
## 1290                    UZurich                                        training
## 1291             UniSys_Georgia                                         content
## 1292             UniSys_Georgia                                       including
## 1293           Washington_State                                          access
## 1294           Washington_State                                           apply
## 1295           Washington_State                                         assefaw
## 1296           Washington_State                                        computer
## 1297           Washington_State                                        concepts
## 1298           Washington_State                                       filtering
## 1299           Washington_State                                           final
## 1300           Washington_State                                      generation
## 1301           Washington_State                                        identify
## 1302           Washington_State                                     information
## 1303           Washington_State                                            isbn
## 1304           Washington_State                                            late
## 1305           Washington_State                                         lecture
## 1306           Washington_State                                              nn
## 1307           Washington_State                                         process
## 1308           Washington_State                                      regression
## 1309           Washington_State                                         related
## 1310           Washington_State                                          safety
## 1311           Washington_State                                            spam
## 1312           Washington_State                                        syllabus
## 1313           Washington_State                                      university
## 1314           Washington_State                                         website
## 1315           William_and_Mary                                  accommodations
## 1316           William_and_Mary                                      clustering
## 1317           William_and_Mary                                   collaboration
## 1318           William_and_Mary                                         content
## 1319           William_and_Mary                                             day
## 1320           William_and_Mary                                        decision
## 1321           William_and_Mary                                             e.g
## 1322           William_and_Mary                                      instructor
## 1323           William_and_Mary                                           learn
## 1324           William_and_Mary                                          letter
## 1325           William_and_Mary                                           model
## 1326           William_and_Mary                                        modeling
## 1327           William_and_Mary                                          monday
## 1328           William_and_Mary                                            note
## 1329           William_and_Mary                                        pipeline
## 1330           William_and_Mary                                   preprocessing
## 1331           William_and_Mary                                          random
## 1332           William_and_Mary                                        schedule
## 1333           William_and_Mary                                         similar
## 1334           William_and_Mary                                           slack
## 1335           William_and_Mary                                      supervised
## 1336           William_and_Mary                                    unsupervised
## 1337           William_and_Mary                                           weeks
## 1338                        ASU                                       algorithm
## 1339                        ASU                                           based
## 1340                        ASU                                          campus
## 1341                        ASU                                            cell
## 1342                        ASU                                          center
## 1343                        ASU                                          change
## 1344                        ASU                                     conditional
## 1345                        ASU                                      continuous
## 1346                        ASU                                      counseling
## 1347                        ASU                                        counting
## 1348                        ASU                                         descent
## 1349                        ASU                                        discrete
## 1350                        ASU                                    distribution
## 1351                        ASU                                         edition
## 1352                        ASU                                        function
## 1353                        ASU                                         grading
## 1354                        ASU                                      harassment
## 1355                        ASU                                       implement
## 1356                        ASU                                       including
## 1357                        ASU                                              ix
## 1358                        ASU                                         lecture
## 1359                        ASU                                            note
## 1360                        ASU                                       publisher
## 1361                        ASU                                          review
## 1362                        ASU                                       sanctions
## 1363                        ASU                                         science
## 1364                        ASU                                        semester
## 1365                        ASU                                         theorem
## 1366                 Boston_Uni                                         algebra
## 1367                 Boston_Uni                                          basics
## 1368                 Boston_Uni                                            code
## 1369                 Boston_Uni                                     collaborate
## 1370                 Boston_Uni                                              cs
## 1371                 Boston_Uni                                      encouraged
## 1372                 Boston_Uni                                            exam
## 1373                 Boston_Uni                                          expect
## 1374                 Boston_Uni                                         fastest
## 1375                 Boston_Uni                                           final
## 1376                 Boston_Uni                                     instructors
## 1377                 Boston_Uni                                            labs
## 1378                 Boston_Uni                                          linear
## 1379                 Boston_Uni                                         october
## 1380                 Boston_Uni                                   participation
## 1381                 Boston_Uni                                       permitted
## 1382                 Boston_Uni                                         regrade
## 1383                 Boston_Uni                                        solution
## 1384                 Boston_Uni                                           staff
## 1385                 Boston_Uni                                        textbook
## 1386                      Brown                                      algorithms
## 1387                      Brown                                      evaluation
## 1388                      Brown                                     exploratory
## 1389                      Brown                                         machine
## 1390                      Brown                                         metrics
## 1391                      Brown                                         midterm
## 1392                      Brown                                         missing
## 1393                      Brown                                          models
## 1394                      Brown                                         project
## 1395                      Brown                                            real
## 1396                      Brown                                          review
## 1397                      Brown                                           solve
## 1398                      Brown                                           world
## 1399                       CUNY                                        actively
## 1400                       CUNY                                   computational
## 1401                       CUNY                                            draw
## 1402                       CUNY                                      humanities
## 1403                       CUNY                                       including
## 1404                       CUNY                               intersectionality
## 1405                       CUNY                                         lessons
## 1406                       CUNY                                       notebooks
## 1407                       CUNY                                   participation
## 1408                       CUNY                                       privilege
## 1409                       CUNY                                        projects
## 1410                       CUNY                                        research
## 1411                       CUNY                                          skills
## 1412                       CUNY                                       solutions
## 1413                       CUNY                                           world
## 1414                       CUNY                                         written
## 1415                    Cornell                                        accepted
## 1416                    Cornell                                      challenges
## 1417                    Cornell                                           check
## 1418                    Cornell                                         cornell
## 1419                    Cornell                                        directly
## 1420                    Cornell                                         dropped
## 1421                    Cornell                                         edition
## 1422                    Cornell                                            exam
## 1423                    Cornell                                      explicitly
## 1424                    Cornell                                         grading
## 1425                    Cornell                                        identify
## 1426                    Cornell                                        inf02950
## 1427                    Cornell                                          lowest
## 1428                    Cornell                                        material
## 1429                    Cornell                                       materials
## 1430                    Cornell                                         methods
## 1431                    Cornell                                            note
## 1432                    Cornell                                      objectives
## 1433                    Cornell                                        patterns
## 1434                    Cornell                                          posted
## 1435                    Cornell                                          quarto
## 1436                    Cornell                                       resources
## 1437                    Cornell                                          result
## 1438                    Cornell                                         science
## 1439                    Cornell                                     statistical
## 1440                    Cornell                                      submitting
## 1441                    Cornell                                      successful
## 1442                    Cornell                                   syllabus.html
## 1443                    Cornell                                           tools
## 1444                    Cornell                                    unauthorized
## 1445                    Cornell                                    undocumented
## 1446                    Cornell                                           write
## 1447                     Drexel                                        accessed
## 1448                     Drexel                                         archive
## 1449                     Drexel                                        articles
## 1450                     Drexel                                           avoid
## 1451                     Drexel                                           blogs
## 1452                     Drexel                                          bubble
## 1453                     Drexel                                        concepts
## 1454                     Drexel                                         contact
## 1455                     Drexel                                     datascience
## 1456                     Drexel                                            date
## 1457                     Drexel                                        equality
## 1458                     Drexel                                       essential
## 1459                     Drexel                                     exploratory
## 1460                     Drexel                                           final
## 1461                     Drexel                                          forbes
## 1462                     Drexel                                          grades
## 1463                     Drexel                                        handbook
## 1464                     Drexel                                         honesty
## 1465                     Drexel                                           ideas
## 1466                     Drexel                                           learn
## 1467                     Drexel                                       lifecycle
## 1468                     Drexel                                          linked
## 1469                     Drexel                                        metadata
## 1470                     Drexel                                             mid
## 1471                     Drexel                                          online
## 1472                     Drexel                                           paper
## 1473                     Drexel                                          papers
## 1474                     Drexel                                     performance
## 1475                     Drexel                                         privacy
## 1476                     Drexel                                         provost
## 1477                     Drexel                                         results
## 1478                     Drexel                                            ryan
## 1479                     Drexel                                        schedule
## 1480                     Drexel                                            size
## 1481                     Drexel                                        software
## 1482                     Drexel                                          source
## 1483                     Drexel                                         sources
## 1484                     Drexel                                           story
## 1485                     Drexel                                           times
## 1486                     Drexel                                   understanding
## 1487                     Drexel                                           weeks
## 1488                     Drexel                                           words
## 1489                     Drexel                                         written
## 1490                     Drexel                                  www.forbes.com
## 1491                     Drexel                                 www.nytimes.com
## 1492                     Drexel                                   www.wired.com
## 1493                     Drexel                                            york
## 1494               Georgia_Tech                                          attend
## 1495               Georgia_Tech                                        calculus
## 1496               Georgia_Tech                                          campus
## 1497               Georgia_Tech                                        gradient
## 1498               Georgia_Tech                                    introduction
## 1499               Georgia_Tech                                         machine
## 1500               Georgia_Tech                                          matrix
## 1501               Georgia_Tech                                         optimal
## 1502               Georgia_Tech                                             pre
## 1503               Georgia_Tech                                            time
## 1504                    Harvard                                   accessibility
## 1505                    Harvard                                          answer
## 1506                    Harvard                                        building
## 1507                    Harvard                                        concepts
## 1508                    Harvard                                              ed
## 1509                    Harvard                                         explore
## 1510                    Harvard                           extension.harvard.edu
## 1511                    Harvard                                         harvard
## 1512                    Harvard                                    introduction
## 1513                    Harvard                                        language
## 1514                    Harvard                                           model
## 1515                    Harvard                                         natural
## 1516                    Harvard                                          online
## 1517                    Harvard                                      processing
## 1518                    Harvard                                        recorded
## 1519                    Harvard                                        required
## 1520                    Harvard                                        services
## 1521                    Harvard                                         session
## 1522                    Harvard                                         student
## 1523                    Harvard                                      submission
## 1524                    Harvard                                         support
## 1525                    Harvard                                             tas
## 1526                    Harvard                                            test
## 1527                    Harvard                                        thinking
## 1528                    Harvard                                   understanding
## 1529                    Harvard                                            zoom
## 1530                        LSU                                         ability
## 1531                        LSU                                      commitment
## 1532                        LSU                                     communicate
## 1533                        LSU                                        computer
## 1534                        LSU                                         current
## 1535                        LSU                                     environment
## 1536                        LSU                                           found
## 1537                        LSU                                          github
## 1538                        LSU                                            hall
## 1539                        LSU                                          issues
## 1540                        LSU                                       knowledge
## 1541                        LSU                                        language
## 1542                        LSU                                   participation
## 1543                        LSU                                        personal
## 1544                        LSU                                          report
## 1545                        LSU                                      technology
## 1546                        MIT                                      additional
## 1547                        MIT                                     computation
## 1548                        MIT                                             day
## 1549                        MIT                                           goals
## 1550                        MIT                                          grades
## 1551                        MIT                                            half
## 1552                        MIT                                         lecture
## 1553                        MIT                                             mit
## 1554                        MIT                                      recitation
## 1555                        MIT                                           units
## 1556                        MIT                                            week
## 1557            Montgomery_Coll                                        business
## 1558            Montgomery_Coll                                           click
## 1559            Montgomery_Coll                       cms.montgomerycollege.edu
## 1560            Montgomery_Coll                                        datasets
## 1561            Montgomery_Coll                                       exercises
## 1562            Montgomery_Coll                                            free
## 1563            Montgomery_Coll                                    introduction
## 1564            Montgomery_Coll                                            late
## 1565            Montgomery_Coll                                        learning
## 1566            Montgomery_Coll                                            mail
## 1567            Montgomery_Coll                                            math
## 1568            Montgomery_Coll                                              mc
## 1569            Montgomery_Coll                                            note
## 1570            Montgomery_Coll                                          online
## 1571            Montgomery_Coll                                          period
## 1572            Montgomery_Coll                                        personal
## 1573            Montgomery_Coll                                        policies
## 1574            Montgomery_Coll                                         privacy
## 1575            Montgomery_Coll                                         project
## 1576            Montgomery_Coll                                         provide
## 1577            Montgomery_Coll                                    requirements
## 1578            Montgomery_Coll                                      statistics
## 1579            Montgomery_Coll                                           swirl
## 1580            Montgomery_Coll                                          topics
## 1581                   NYU_DS4E                                  accommodations
## 1582                   NYU_DS4E                                        analyses
## 1583                   NYU_DS4E                                         analyze
## 1584                   NYU_DS4E                                     assumptions
## 1585                   NYU_DS4E                                      attendance
## 1586                   NYU_DS4E                                          center
## 1587                   NYU_DS4E                                           cheat
## 1588                   NYU_DS4E                                     conclusions
## 1589                   NYU_DS4E                                          expect
## 1590                   NYU_DS4E                                         explain
## 1591                   NYU_DS4E                                         finally
## 1592                   NYU_DS4E                                           focus
## 1593                   NYU_DS4E                                        generate
## 1594                   NYU_DS4E                                          grades
## 1595                   NYU_DS4E                                        insights
## 1596                   NYU_DS4E                                    introduction
## 1597                   NYU_DS4E                                        language
## 1598                   NYU_DS4E                                         learned
## 1599                   NYU_DS4E                                        lectures
## 1600                   NYU_DS4E                                         machine
## 1601                   NYU_DS4E                                         methods
## 1602                   NYU_DS4E                                        optional
## 1603                   NYU_DS4E                                        overview
## 1604                   NYU_DS4E                                         package
## 1605                   NYU_DS4E                                     predictions
## 1606                   NYU_DS4E                                            real
## 1607                   NYU_DS4E                                         samples
## 1608                   NYU_DS4E                                      scientific
## 1609                   NYU_DS4E                                       sequences
## 1610                   NYU_DS4E                                           sheet
## 1611                   NYU_DS4E                                     surrounding
## 1612                   NYU_DS4E                                         surveys
## 1613                   NYU_DS4E                                           takes
## 1614                   NYU_DS4E                                            test
## 1615                   NYU_DS4E                                            text
## 1616                   NYU_DS4E                                           write
## 1617                NYU_IntroDS                                          center
## 1618                NYU_IntroDS                                      completing
## 1619                NYU_IntroDS                                        computer
## 1620                NYU_IntroDS                                        concepts
## 1621                NYU_IntroDS                                         explore
## 1622                NYU_IntroDS                                           final
## 1623                NYU_IntroDS                                      humanities
## 1624                NYU_IntroDS                                    implications
## 1625                NYU_IntroDS                                         lecture
## 1626                NYU_IntroDS                                         meeting
## 1627                NYU_IntroDS                                          models
## 1628                NYU_IntroDS                                        programs
## 1629                NYU_IntroDS                                            real
## 1630                NYU_IntroDS                                       statement
## 1631                NYU_IntroDS                                           trees
## 1632                NYU_IntroDS                                           weeks
## 1633                NYU_IntroDS                                           write
## 1634                NYU_IntroDS                                         writing
## 1635                  Princeton                                        assigned
## 1636                  Princeton                                     dimensional
## 1637                  Princeton                                        document
## 1638                  Princeton                                        extended
## 1639                  Princeton                                           final
## 1640                  Princeton                                       graphical
## 1641                  Princeton                                          hastie
## 1642                  Princeton                                          kernel
## 1643                  Princeton                                         lecture
## 1644                  Princeton                                              li
## 1645                  Princeton                                      likelihood
## 1646                  Princeton                                  macroeconomics
## 1647                  Princeton                                       materials
## 1648                  Princeton                                          matrix
## 1649                  Princeton                                         methods
## 1650                  Princeton                                         midterm
## 1651                  Princeton                                   neuroblastoma
## 1652                  Princeton                                   nonparametric
## 1653                  Princeton                                             pca
## 1654                  Princeton                                  regularization
## 1655                  Princeton                                            sets
## 1656                  Princeton                                        sherrerd
## 1657                  Princeton                                        springer
## 1658                  Princeton                                            text
## 1659                  Princeton                                          theory
## 1660                  Princeton                                      tibshirani
## 1661                  Princeton                                          topics
## 1662                  Princeton                                        variable
## 1663                  Princeton                                           zhang
## 1664                  Princeton                                          zillow
## 1665                  Princeton                                             zou
## 1666                    Rutgers                                   accessibility
## 1667                    Rutgers                                        advising
## 1668                    Rutgers                                         analyze
## 1669                    Rutgers                                        calendar
## 1670                    Rutgers                                     conclusions
## 1671                    Rutgers                                              cs
## 1672                    Rutgers                                           final
## 1673                    Rutgers                                         program
## 1674                    Rutgers                                        programs
## 1675                    Rutgers                                         project
## 1676                    Rutgers                                    registration
## 1677                    Rutgers                                          weekly
## 1678                 UCBerkeley                                        berkeley
## 1679                 UCBerkeley                                     datascience
## 1680                 UCBerkeley                                     environment
## 1681                 UCBerkeley                                        features
## 1682                 UCBerkeley                                     foundations
## 1683                 UCBerkeley                                            free
## 1684                 UCBerkeley                                        includes
## 1685                 UCBerkeley                                      instructor
## 1686                 UCBerkeley                                          module
## 1687                 UCBerkeley                                        notebook
## 1688                 UCBerkeley                                             org
## 1689                 UCBerkeley                                            real
## 1690                 UCBerkeley                                          slides
## 1691                 UCBerkeley                                        software
## 1692                 UCBerkeley                                           table
## 1693                 UCBerkeley                                           tests
## 1694                 UCBerkeley                                        thinking
## 1695                 UCBerkeley                                           world
## 1696                 UCBerkeley                                       www.data8
## 1697                 UCSanDiego                                  accommodations
## 1698                 UCSanDiego                                   accomodations
## 1699                 UCSanDiego                                             act
## 1700                 UCSanDiego                                        advising
## 1701                 UCSanDiego                                      attendance
## 1702                 UCSanDiego                                      babypandas
## 1703                 UCSanDiego                                           build
## 1704                 UCSanDiego                                          center
## 1705                 UCSanDiego                                          change
## 1706                 UCSanDiego                                        computer
## 1707                 UCSanDiego                                    confirmation
## 1708                 UCSanDiego                                         content
## 1709                 UCSanDiego                                            date
## 1710                 UCSanDiego                                    disabilities
## 1711                 UCSanDiego                                         discuss
## 1712                 UCSanDiego                                       diversity
## 1713                 UCSanDiego                                            drop
## 1714                 UCSanDiego                                             e.g
## 1715                 UCSanDiego                                       encourage
## 1716                 UCSanDiego                                        enrolled
## 1717                 UCSanDiego                                      enrollment
## 1718                 UCSanDiego                                     environment
## 1719                 UCSanDiego                                           error
## 1720                 UCSanDiego                                          errors
## 1721                 UCSanDiego                                        expected
## 1722                 UCSanDiego                                         explore
## 1723                 UCSanDiego                                          follow
## 1724                 UCSanDiego                                          format
## 1725                 UCSanDiego                                       inclusive
## 1726                 UCSanDiego                                    instructions
## 1727                 UCSanDiego                                     instructors
## 1728                 UCSanDiego                                        internet
## 1729                 UCSanDiego                                           ipynb
## 1730                 UCSanDiego                                          issues
## 1731                 UCSanDiego                                        material
## 1732                 UCSanDiego                                           meant
## 1733                 UCSanDiego                                            note
## 1734                 UCSanDiego                                         percent
## 1735                 UCSanDiego                                         perfect
## 1736                 UCSanDiego                                         podcast
## 1737                 UCSanDiego                                     programming
## 1738                 UCSanDiego                                         provide
## 1739                 UCSanDiego                                          public
## 1740                 UCSanDiego                                           reach
## 1741                 UCSanDiego                                         request
## 1742                 UCSanDiego                                        sections
## 1743                 UCSanDiego                                            send
## 1744                 UCSanDiego                                           short
## 1745                 UCSanDiego                                         started
## 1746                 UCSanDiego                                         support
## 1747                 UCSanDiego                                          taking
## 1748                 UCSanDiego                                      technology
## 1749                 UCSanDiego                                              uc
## 1750                 UCSanDiego                                           watch
## 1751                 UCSanDiego                                          webreg
## 1752                 UCSanDiego                                         website
## 1753                 UCSanDiego                                           wrong
## 1754                    UIU_107                                            code
## 1755                    UIU_107                                         cutoffs
## 1756                    UIU_107                                          earned
## 1757                    UIU_107                                             lab
## 1758                    UIU_107                                            labs
## 1759                    UIU_107                                         minimum
## 1760                    UIU_107                                            real
## 1761                    UIU_107                                      understand
## 1762                    UIU_107                                           world
## 1763                    UIU_207                                        analysis
## 1764                    UIU_207                                            code
## 1765                    UIU_207                                        complete
## 1766                    UIU_207                                          credit
## 1767                    UIU_207                                      department
## 1768                    UIU_207                                           final
## 1769                    UIU_207                                      instructor
## 1770                    UIU_207                                        learning
## 1771                    UIU_207                                         lecture
## 1772                    UIU_207                                             pct
## 1773                    UIU_207                                         section
## 1774                    UIU_207                                      statistics
## 1775                    UIU_207                                           total
## 1776                  UKentucky                                         account
## 1777                  UKentucky                                     achievement
## 1778                  UKentucky                                      additional
## 1779                  UKentucky                                         cluster
## 1780                  UKentucky                                        computer
## 1781                  UKentucky                                        concepts
## 1782                  UKentucky                                             day
## 1783                  UKentucky                                         discuss
## 1784                  UKentucky                                          expect
## 1785                  UKentucky                                           final
## 1786                  UKentucky                                         firefox
## 1787                  UKentucky                                            free
## 1788                  UKentucky                                        holidays
## 1789                  UKentucky                                       integrity
## 1790                  UKentucky                                        learning
## 1791                  UKentucky                                          linear
## 1792                  UKentucky                                        messages
## 1793                  UKentucky                                         methods
## 1794                  UKentucky                                   participation
## 1795                  UKentucky                                           phone
## 1796                  UKentucky                                      plagiarism
## 1797                  UKentucky                                         provide
## 1798                  UKentucky                                         quality
## 1799                  UKentucky                                        readings
## 1800                  UKentucky                                         receive
## 1801                  UKentucky                                         regular
## 1802                  UKentucky                                        required
## 1803                  UKentucky                                        response
## 1804                  UKentucky                                      statistics
## 1805                  UKentucky                                           total
## 1806                  UKentucky                                            uk’s
## 1807                  UKentucky                                      university
## 1808                  UKentucky                                        veterans
## 1809                  UKentucky                                           visit
## 1810                  UKentucky                                   visualization
## 1811                  UKentucky                                          weekly
## 1812                        UMD                                          action
## 1813                        UMD                                        analysis
## 1814                        UMD                                           apply
## 1815                        UMD                                     assessments
## 1816                        UMD                                      attendance
## 1817                        UMD                                        bootcamp
## 1818                        UMD                                        building
## 1819                        UMD                                        calendar
## 1820                        UMD                                          campus
## 1821                        UMD                                          citing
## 1822                        UMD                                      classmates
## 1823                        UMD                                       community
## 1824                        UMD                                        complete
## 1825                        UMD                                      coursework
## 1826                        UMD                                             day
## 1827                        UMD                                         details
## 1828                        UMD                                      evaluation
## 1829                        UMD                                       inclusion
## 1830                        UMD                                             leo
## 1831                        UMD                                         library
## 1832                        UMD                                         machine
## 1833                        UMD                                        maryland
## 1834                        UMD                                            note
## 1835                        UMD                                     opportunity
## 1836                        UMD                                         penalty
## 1837                        UMD                                            post
## 1838                        UMD                                         program
## 1839                        UMD                                         provide
## 1840                        UMD                                             pts
## 1841                        UMD                                         quizzes
## 1842                        UMD                                          relate
## 1843                        UMD                                        relevant
## 1844                        UMD                                         rounded
## 1845                        UMD                                           sites
## 1846                        UMD                                           staff
## 1847                        UMD                                      submission
## 1848                        UMD                                           tools
## 1849                        UMD                                           topic
## 1850                        UMD                                   undergraduate
## 1851                        UMD                                      understand
## 1852                        UMD                                   understanding
## 1853                        UMD                                          values
## 1854                        UMD                                          weekly
## 1855                        UMD                                      withdrawal
## 1856                     UMaine                                     application
## 1857                     UMaine                                          chains
## 1858                     UMaine                                            copy
## 1859                     UMaine                                      discretion
## 1860                     UMaine                                           error
## 1861                     UMaine                                      estimation
## 1862                     UMaine                                           event
## 1863                     UMaine                                            exam
## 1864                     UMaine                                           final
## 1865                     UMaine                                      generating
## 1866                     UMaine                                       homeworks
## 1867                     UMaine                                      hypothesis
## 1868                     UMaine                                    independence
## 1869                     UMaine                                     information
## 1870                     UMaine                                           joint
## 1871                     UMaine                                      likelihood
## 1872                     UMaine                                         maximum
## 1873                     UMaine                                           monte
## 1874                     UMaine                                    multivariate
## 1875                     UMaine                                      observance
## 1876                     UMaine                                          online
## 1877                     UMaine                                          papers
## 1878                     UMaine                                       religious
## 1879                     UMaine                                       resources
## 1880                     UMaine                                          source
## 1881                     UMaine                                          square
## 1882                     UMaine                                        teaching
## 1883                     UMaine                                           trees
## 1884                     UMaine                                       variables
## 1885                     UMaine                                            week
## 1886               USouthampton                                           basic
## 1887               USouthampton                                       computing
## 1888               USouthampton                                        concepts
## 1889                   UToronto                                         advisor
## 1890                   UToronto                                         anomaly
## 1891                   UToronto                                           basic
## 1892                   UToronto                                       detection
## 1893                   UToronto                                      distressed
## 1894                   UToronto                                     engineering
## 1895                   UToronto                                         faculty
## 1896                   UToronto                                         feeling
## 1897                   UToronto                                           intro
## 1898                   UToronto                                         lecture
## 1899                   UToronto                                         midterm
## 1900                   UToronto                                            pfda
## 1901                   UToronto                                       resources
## 1902                   UToronto                                        sessions
## 1903                      UUtah                                         ability
## 1904                      UUtah                                        accuracy
## 1905                      UUtah                                        activity
## 1906                      UUtah                                             ada
## 1907                      UUtah                                         analyze
## 1908                      UUtah                                    arrangements
## 1909                      UUtah                                            book
## 1910                      UUtah                                           bring
## 1911                      UUtah                                             cis
## 1912                      UUtah                                        cleaning
## 1913                      UUtah                                         college
## 1914                      UUtah                                        complete
## 1915                      UUtah                                       component
## 1916                      UUtah                                        computer
## 1917                      UUtah                                       computing
## 1918                      UUtah                                            deep
## 1919                      UUtah                                        directly
## 1920                      UUtah                                       diversity
## 1921                      UUtah                                        document
## 1922                      UUtah                                     effectively
## 1923                      UUtah                                         english
## 1924                      UUtah                                        expected
## 1925                      UUtah                                            file
## 1926                      UUtah                                          gender
## 1927                      UUtah                                          github
## 1928                      UUtah                                        graduate
## 1929                      UUtah                                           hands
## 1930                      UUtah                                       homeworks
## 1931                      UUtah                                            lead
## 1932                      UUtah                                         limited
## 1933                      UUtah                                         machine
## 1934                      UUtah                                      misconduct
## 1935                      UUtah                                        networks
## 1936                      UUtah                                          neural
## 1937                      UUtah                                          notice
## 1938                      UUtah                                     opportunity
## 1939                      UUtah                                        pandemic
## 1940                      UUtah                                        personal
## 1941                      UUtah                                      plagiarism
## 1942                      UUtah                                       practical
## 1943                      UUtah                                           prior
## 1944                      UUtah                                         private
## 1945                      UUtah                                         purpose
## 1946                      UUtah                                      reasonable
## 1947                      UUtah                                         related
## 1948                      UUtah                                          report
## 1949                      UUtah                                      respectful
## 1950                      UUtah                                            rule
## 1951                      UUtah                                           rules
## 1952                      UUtah                                          scikit
## 1953                      UUtah                                        services
## 1954                      UUtah                                          simple
## 1955                      UUtah                                          skills
## 1956                      UUtah                                        specific
## 1957                      UUtah                                           staff
## 1958                      UUtah                                      techniques
## 1959                      UUtah                                      tensorflow
## 1960                      UUtah                                           title
## 1961                      UUtah                                           union
## 1962                      UUtah                                            view
## 1963                      UUtah                                           visit
## 1964                      UUtah                                   visualization
## 1965                      UUtah                                          weekly
## 1966                      UUtah                                           write
## 1967                    UVA_SDS                                  accommodations
## 1968                    UVA_SDS                                       associate
## 1969                    UVA_SDS                                             bit
## 1970                    UVA_SDS                                             day
## 1971                    UVA_SDS                                              ds
## 1972                    UVA_SDS                                           elson
## 1973                    UVA_SDS                                    examinations
## 1974                    UVA_SDS                                           focus
## 1975                    UVA_SDS                                     foundations
## 1976                    UVA_SDS                                         grading
## 1977                    UVA_SDS                                           honor
## 1978                    UVA_SDS                                           human
## 1979                    UVA_SDS                                     information
## 1980                    UVA_SDS                                         observe
## 1981                    UVA_SDS                                          pledge
## 1982                    UVA_SDS                                        policies
## 1983                    UVA_SDS                                        practice
## 1984                    UVA_SDS                                         reading
## 1985                    UVA_SDS                                            sdac
## 1986                    UVA_SDS                                             set
## 1987                    UVA_SDS                                           study
## 1988                    UVA_SDS                                            test
## 1989                    UVA_SDS                                          topics
## 1990                    UVA_SDS                                             tue
## 1991                    UVA_SDS                                      university
## 1992                    UVA_SDS                                             uva
## 1993                    UVA_SDS                                          you’ll
## 1994                   UVA_Stat                                        anaconda
## 1995                   UVA_Stat                                      attendance
## 1996                   UVA_Stat                                          bundle
## 1997                   UVA_Stat                                            data
## 1998                   UVA_Stat                                           honor
## 1999                   UVA_Stat                                       permitted
## 2000                   UVA_Stat                                          piazza
## 2001                   UVA_Stat                                          python
## 2002                   UVA_Stat                                        semester
## 2003                   UVA_Stat                                    virginia.edu
## 2004                UWashington                                     application
## 2005                UWashington                                      attendance
## 2006                UWashington                                         content
## 2007                UWashington                                          credit
## 2008                UWashington                                        expected
## 2009                UWashington                                         section
## 2010     UWisc_Madison_Modeling                                         address
## 2011     UWisc_Madison_Modeling                                        complete
## 2012     UWisc_Madison_Modeling                                       computing
## 2013     UWisc_Madison_Modeling                                        concepts
## 2014     UWisc_Madison_Modeling                                              cv
## 2015     UWisc_Madison_Modeling                                            exam
## 2016     UWisc_Madison_Modeling                                           final
## 2017     UWisc_Madison_Modeling                                      individual
## 2018     UWisc_Madison_Modeling                                          online
## 2019     UWisc_Madison_Modeling                                    reproducible
## 2020     UWisc_Madison_Modeling                                        sessions
## 2021     UWisc_Madison_Modeling                                        textbook
## 2022     UWisc_Madison_Modeling                                       variables
## 2023     UWisc_Madison_Modeling                                            week
## 2024  UWisc_Madison_Programming                                             1st
## 2025  UWisc_Madison_Programming                                          1stlen
## 2026  UWisc_Madison_Programming                                         ability
## 2027  UWisc_Madison_Programming                                          access
## 2028  UWisc_Madison_Programming                                      applicable
## 2029  UWisc_Madison_Programming                                       arguments
## 2030  UWisc_Madison_Programming                                          assign
## 2031  UWisc_Madison_Programming                                          attend
## 2032  UWisc_Madison_Programming                                          choice
## 2033  UWisc_Madison_Programming                                       classroom
## 2034  UWisc_Madison_Programming                                   collaboration
## 2035  UWisc_Madison_Programming                                   communication
## 2036  UWisc_Madison_Programming                                            copy
## 2037  UWisc_Madison_Programming                                         credits
## 2038  UWisc_Madison_Programming                                        datasets
## 2039  UWisc_Madison_Programming                                            date
## 2040  UWisc_Madison_Programming                                           dates
## 2041  UWisc_Madison_Programming                                       deduction
## 2042  UWisc_Madison_Programming                                     description
## 2043  UWisc_Madison_Programming                                         details
## 2044  UWisc_Madison_Programming                                    disciplinary
## 2045  UWisc_Madison_Programming                                       diversity
## 2046  UWisc_Madison_Programming                                            drop
## 2047  UWisc_Madison_Programming                                         dropped
## 2048  UWisc_Madison_Programming                                        feedback
## 2049  UWisc_Madison_Programming                                         finding
## 2050  UWisc_Madison_Programming                                           forms
## 2051  UWisc_Madison_Programming                                          friday
## 2052  UWisc_Madison_Programming                                       grievance
## 2053  UWisc_Madison_Programming                                            half
## 2054  UWisc_Madison_Programming                                       including
## 2055  UWisc_Madison_Programming                                     instructors
## 2056  UWisc_Madison_Programming                                        learning
## 2057  UWisc_Madison_Programming                                          lec004
## 2058  UWisc_Madison_Programming                                           level
## 2059  UWisc_Madison_Programming                                         minutes
## 2060  UWisc_Madison_Programming                                      misconduct
## 2061  UWisc_Madison_Programming                                          models
## 2062  UWisc_Madison_Programming                                        notebook
## 2063  UWisc_Madison_Programming                                        official
## 2064  UWisc_Madison_Programming                                        readings
## 2065  UWisc_Madison_Programming                                             run
## 2066  UWisc_Madison_Programming                                          shared
## 2067  UWisc_Madison_Programming                                       solutions
## 2068  UWisc_Madison_Programming                                        strongly
## 2069  UWisc_Madison_Programming                                        syllabus
## 2070  UWisc_Madison_Programming                                             tag
## 2071  UWisc_Madison_Programming                                         version
## 2072  UWisc_Madison_Programming                                        wisc.edu
## 2073  UWisc_Madison_Programming                                         written
## 2074                 UWisconsin                                  accommodations
## 2075                 UWisconsin                                      activities
## 2076                 UWisconsin                                        advanced
## 2077                 UWisconsin                                           basic
## 2078                 UWisconsin                                      challenges
## 2079                 UWisconsin                                  classification
## 2080                 UWisconsin                                        concepts
## 2081                 UWisconsin                                          create
## 2082                 UWisconsin                                         dataset
## 2083                 UWisconsin                                        decision
## 2084                 UWisconsin                                          demand
## 2085                 UWisconsin                                          ensure
## 2086                 UWisconsin                                        examples
## 2087                 UWisconsin                                        expected
## 2088                 UWisconsin                                           fargo
## 2089                 UWisconsin                                         grading
## 2090                 UWisconsin                                          hadoop
## 2091                 UWisconsin                                          health
## 2092                 UWisconsin                                            late
## 2093                 UWisconsin                                          linear
## 2094                 UWisconsin                                        logistic
## 2095                 UWisconsin                                        multiple
## 2096                 UWisconsin                                           naked
## 2097                 UWisconsin                                   normalization
## 2098                 UWisconsin                                   opportunities
## 2099                 UWisconsin                                              ou
## 2100                 UWisconsin                                        overview
## 2101                 UWisconsin                                           peers
## 2102                 UWisconsin                                      predictive
## 2103                 UWisconsin                                        readings
## 2104                 UWisconsin                                           reply
## 2105                 UWisconsin                                            sams
## 2106                 UWisconsin                                         section
## 2107                 UWisconsin                                          skills
## 2108                 UWisconsin                                     statistical
## 2109                 UWisconsin                                          stored
## 2110                 UWisconsin                                           tools
## 2111                 UWisconsin                                   understanding
## 2112                 UWisconsin                                            word
## 2113                    UZurich                                    applications
## 2114                    UZurich                                      background
## 2115                    UZurich                                           basis
## 2116                    UZurich                                        concepts
## 2117                    UZurich                                     convergence
## 2118                    UZurich                                   convolutional
## 2119                    UZurich                                           curve
## 2120                    UZurich                                      definition
## 2121                    UZurich                                         descent
## 2122                    UZurich                                    discriminant
## 2123                    UZurich                                            dual
## 2124                    UZurich                                           error
## 2125                    UZurich                                        estimate
## 2126                    UZurich                                        exercise
## 2127                    UZurich                                         feature
## 2128                    UZurich                                         finding
## 2129                    UZurich                                       functions
## 2130                    UZurich                                        gaussian
## 2131                    UZurich                                         kernels
## 2132                    UZurich                                           learn
## 2133                    UZurich                                          method
## 2134                    UZurich                                        negative
## 2135                    UZurich                                       objective
## 2136                    UZurich                                      perceptron
## 2137                    UZurich                                      prediction
## 2138                    UZurich                                           press
## 2139                    UZurich                                       principal
## 2140                    UZurich                                   probabilistic
## 2141                    UZurich                                     programming
## 2142                    UZurich                                          recall
## 2143                    UZurich                                  regularisation
## 2144                    UZurich                                           ridge
## 2145                    UZurich                                          search
## 2146                    UZurich                                         support
## 2147                    UZurich                                      tensorflow
## 2148                    UZurich                                            test
## 2149                    UZurich                                          theory
## 2150                    UZurich                                      university
## 2151                    UZurich                                        variance
## 2152                    UZurich                                          vector
## 2153                    UZurich                                         vectors
## 2154             UniSys_Georgia                                           basic
## 2155             UniSys_Georgia                                        outcomes
## 2156             UniSys_Georgia                                         testing
## 2157           Washington_State                                  accommodations
## 2158           Washington_State                                     application
## 2159           Washington_State                                           bayes
## 2160           Washington_State                                            book
## 2161           Washington_State                                        building
## 2162           Washington_State                                          center
## 2163           Washington_State                                         dataset
## 2164           Washington_State                                       effective
## 2165           Washington_State                                       emergency
## 2166           Washington_State                                         ethical
## 2167           Washington_State                                     exploratory
## 2168           Washington_State                                           means
## 2169           Washington_State                                           naive
## 2170           Washington_State                                           notes
## 2171           Washington_State                                           osble
## 2172           Washington_State                                     probability
## 2173           Washington_State                                         product
## 2174           Washington_State                                       selection
## 2175           Washington_State                                           skill
## 2176           Washington_State                                         student
## 2177           Washington_State                                           study
## 2178           Washington_State                                             web
## 2179           William_and_Mary                                    additionally
## 2180           William_and_Mary                                        analysis
## 2181           William_and_Mary                                       completed
## 2182           William_and_Mary                                        computer
## 2183           William_and_Mary                                       delivered
## 2184           William_and_Mary                                       encourage
## 2185           William_and_Mary                                        examples
## 2186           William_and_Mary                                            free
## 2187           William_and_Mary                                      jupyterhub
## 2188           William_and_Mary                                            labs
## 2189           William_and_Mary                                          method
## 2190           William_and_Mary                                        networks
## 2191           William_and_Mary                                           nooks
## 2192           William_and_Mary                                            plot
## 2193           William_and_Mary                                            post
## 2194           William_and_Mary                                         project
## 2195           William_and_Mary                                       resources
## 2196           William_and_Mary                                         running
## 2197           William_and_Mary                                          spring
## 2198           William_and_Mary                                       structure
## 2199           William_and_Mary                                     synchronous
## 2200           William_and_Mary                                          topics
## 2201           William_and_Mary                                           tyler
## 2202           William_and_Mary                                           types
## 2203           William_and_Mary                                      validation
## 2204           William_and_Mary                                           video
## 2205           William_and_Mary                                         virtual
## 2206           William_and_Mary                                            zoom
## 2207                        ASU                                        absences
## 2208                        ASU                                          absent
## 2209                        ASU                                        activity
## 2210                        ASU                                      additional
## 2211                        ASU                                     alternative
## 2212                        ASU                                        analysis
## 2213                        ASU                                    arrangements
## 2214                        ASU                                      assessment
## 2215                        ASU                                         asu.edu
## 2216                        ASU                                          basics
## 2217                        ASU                                           bayes
## 2218                        ASU                                   circumstances
## 2219                        ASU                                       classroom
## 2220                        ASU                                           cover
## 2221                        ASU                                       coverings
## 2222                        ASU                                          covers
## 2223                        ASU                                      cumulative
## 2224                        ASU                                         cutoffs
## 2225                        ASU                                             dat
## 2226                        ASU                                           dates
## 2227                        ASU                                            dean
## 2228                        ASU                                     definitions
## 2229                        ASU                                    disabilities
## 2230                        ASU                                      dishonesty
## 2231                        ASU                                     eligibility
## 2232                        ASU                                       employees
## 2233                        ASU                                          events
## 2234                        ASU                                        expected
## 2235                        ASU                                         faculty
## 2236                        ASU                                         failure
## 2237                        ASU                                            fall
## 2238                        ASU                                        familiar
## 2239                        ASU                                           favor
## 2240                        ASU                                       functions
## 2241                        ASU                                          gender
## 2242                        ASU                                        harassed
## 2243                        ASU                                        includes
## 2244                        ASU                                    independence
## 2245                        ASU                                     independent
## 2246                        ASU                                          inform
## 2247                        ASU                                            ipod
## 2248                        ASU                                        learning
## 2249                        ASU                                        lectures
## 2250                        ASU                                           limit
## 2251                        ASU                                          limits
## 2252                        ASU                                            mass
## 2253                        ASU                                             mat
## 2254                        ASU                                          missed
## 2255                        ASU                                             mp3
## 2256                        ASU                                           notes
## 2257                        ASU                                          notion
## 2258                        ASU                                   participation
## 2259                        ASU                                              pd
## 2260                        ASU                                          person
## 2261                        ASU                                          phones
## 2262                        ASU                                           plane
## 2263                        ASU                                       preferred
## 2264                        ASU                                      prohibited
## 2265                        ASU                                         pronoun
## 2266                        ASU                                      reasonable
## 2267                        ASU                                           refer
## 2268                        ASU                                         related
## 2269                        ASU                                       religious
## 2270                        ASU                                        required
## 2271                        ASU                                        resource
## 2272                        ASU                                       resources
## 2273                        ASU                                  responsibility
## 2274                        ASU                                     retaliation
## 2275                        ASU                                          return
## 2276                        ASU                                              rv
## 2277                        ASU                                          samara
## 2278                        ASU                                      sanctioned
## 2279                        ASU                                            sims
## 2280                        ASU                                           staff
## 2281                        ASU                                          status
## 2282                        ASU                                       subjected
## 2283                        ASU                                         support
## 2284                        ASU                                          threat
## 2285                        ASU                                     threatening
## 2286                        ASU                                           tools
## 2287                        ASU                                      transcript
## 2288                        ASU                                             tth
## 2289                        ASU                                     www.asu.edu
## 2290                 Boston_Uni                                      additional
## 2291                 Boston_Uni                                        analysis
## 2292                 Boston_Uni                                      attendance
## 2293                 Boston_Uni                                              bu
## 2294                 Boston_Uni                                             cas
## 2295                 Boston_Uni                                        cleaning
## 2296                 Boston_Uni                                      clustering
## 2297                 Boston_Uni                                   collaborators
## 2298                 Boston_Uni                                        computer
## 2299                 Boston_Uni                                          convex
## 2300                 Boston_Uni                                         courses
## 2301                 Boston_Uni                                         covered
## 2302                 Boston_Uni                                            date
## 2303                 Boston_Uni                                             day
## 2304                 Boston_Uni                                      department
## 2305                 Boston_Uni                                      discussion
## 2306                 Boston_Uni                                        distance
## 2307                 Boston_Uni                                         easiest
## 2308                 Boston_Uni                                  electronically
## 2309                 Boston_Uni                                        enrolled
## 2310                 Boston_Uni                                           exams
## 2311                 Boston_Uni                                         explain
## 2312                 Boston_Uni                                          formal
## 2313                 Boston_Uni                                     foundations
## 2314                 Boston_Uni                                       functions
## 2315                 Boston_Uni                                        gradient
## 2316                 Boston_Uni                                          graphs
## 2317                 Boston_Uni                                            held
## 2318                 Boston_Uni                                         helpful
## 2319                 Boston_Uni                                           ideas
## 2320                 Boston_Uni                                       imperfect
## 2321                 Boston_Uni                                       including
## 2322                 Boston_Uni                                    introduction
## 2323                 Boston_Uni                                           learn
## 2324                 Boston_Uni                                        lectures
## 2325                 Boston_Uni                                         limited
## 2326                 Boston_Uni                                         machine
## 2327                 Boston_Uni                                         midterm
## 2328                 Boston_Uni                                          mining
## 2329                 Boston_Uni                                          minute
## 2330                 Boston_Uni                                        modeling
## 2331                 Boston_Uni                                             mon
## 2332                 Boston_Uni                                          normal
## 2333                 Boston_Uni                                           notes
## 2334                 Boston_Uni                                    optimization
## 2335                 Boston_Uni                                            post
## 2336                 Boston_Uni                                        practice
## 2337                 Boston_Uni                                     programming
## 2338                 Boston_Uni                                      regression
## 2339                 Boston_Uni                                         request
## 2340                 Boston_Uni                                        saturday
## 2341                 Boston_Uni                                            sets
## 2342                 Boston_Uni                                      similarity
## 2343                 Boston_Uni                                            slot
## 2344                 Boston_Uni                                       solutions
## 2345                 Boston_Uni                                         solving
## 2346                 Boston_Uni                                           speak
## 2347                 Boston_Uni                                      submission
## 2348                 Boston_Uni                                          submit
## 2349                 Boston_Uni                                      substitute
## 2350                 Boston_Uni                                        teaching
## 2351                 Boston_Uni                                        tendency
## 2352                 Boston_Uni                                              tf
## 2353                 Boston_Uni                                             tfs
## 2354                 Boston_Uni                                           thurs
## 2355                 Boston_Uni                                       thursdays
## 2356                 Boston_Uni                                         tuesday
## 2357                 Boston_Uni                                      university
## 2358                 Boston_Uni                                             web
## 2359                 Boston_Uni                                          weekly
## 2360                 Boston_Uni                                        workload
## 2361                 Boston_Uni                                           write
## 2362                 Boston_Uni                                         written
## 2363                      Brown                                      assessment
## 2364                      Brown                                           based
## 2365                      Brown                                  classification
## 2366                      Brown                                      continuous
## 2367                      Brown                                         discuss
## 2368                      Brown                                             eda
## 2369                      Brown                                     engineering
## 2370                      Brown                                         feature
## 2371                      Brown                                           hands
## 2372                      Brown                                      instructor
## 2373                      Brown                                          issues
## 2374                      Brown                                           learn
## 2375                      Brown                                          linear
## 2376                      Brown                                        logistic
## 2377                      Brown                                        overview
## 2378                      Brown                                        pipeline
## 2379                      Brown                                       pipelines
## 2380                      Brown                                     predictions
## 2381                      Brown                                   preprocessing
## 2382                      Brown                                    presentation
## 2383                      Brown                                          python
## 2384                      Brown                                          scikit
## 2385                      Brown                                         sources
## 2386                      Brown                                      techniques
## 2387                      Brown                                           total
## 2388                      Brown                                      validation
## 2389                      Brown                                            week
## 2390                       CUNY                                             ado
## 2391                       CUNY                                      analytical
## 2392                       CUNY                                          calado
## 2393                       CUNY                                          coding
## 2394                       CUNY                                      collection
## 2395                       CUNY                                       component
## 2396                       CUNY                                        computer
## 2397                       CUNY                                        concepts
## 2398                       CUNY                                     conclusions
## 2399                       CUNY                                         credits
## 2400                       CUNY                                       d'lgnazio
## 2401                       CUNY                                     description
## 2402                       CUNY                                        designed
## 2403                       CUNY                                         engaged
## 2404                       CUNY                                           exams
## 2405                       CUNY                                        expected
## 2406                       CUNY                                        feminism
## 2407                       CUNY                                          filipa
## 2408                       CUNY                                          format
## 2409                       CUNY                                        includes
## 2410                       CUNY                                    installation
## 2411                       CUNY                                      instructor
## 2412                       CUNY                                       interpret
## 2413                       CUNY                                    introduction
## 2414                       CUNY                                          ipa.ca
## 2415                       CUNY                                         jupyter
## 2416                       CUNY                                           klein
## 2417                       CUNY                                        language
## 2418                       CUNY                                          lauren
## 2419                       CUNY                                           learn
## 2420                       CUNY                                           means
## 2421                       CUNY                                              na
## 2422                       CUNY                                     nyu.zoom.us
## 2423                       CUNY                                        overview
## 2424                       CUNY                                            real
## 2425                       CUNY                                        required
## 2426                       CUNY                                      requisites
## 2427                       CUNY                                           shape
## 2428                       CUNY                                           short
## 2429                       CUNY                                     statistical
## 2430                       CUNY                                      technology
## 2431                       CUNY                                        thinking
## 2432                       CUNY                                   understanding
## 2433                    Cornell                                             1st
## 2434                    Cornell                                   accommodation
## 2435                    Cornell                                          answer
## 2436                    Cornell                                         applied
## 2437                    Cornell                                          attend
## 2438                    Cornell                                           based
## 2439                    Cornell                                           begin
## 2440                    Cornell                                           board
## 2441                    Cornell                                          coding
## 2442                    Cornell                                        complete
## 2443                    Cornell                                   computational
## 2444                    Cornell                                            core
## 2445                    Cornell                                              cs
## 2446                    Cornell                                            daca
## 2447                    Cornell                                     demonstrate
## 2448                    Cornell                                         details
## 2449                    Cornell                                       discussed
## 2450                    Cornell                                              dr
## 2451                    Cornell                                             e.g
## 2452                    Cornell                                          emails
## 2453                    Cornell                                          entire
## 2454                    Cornell                                        evaluate
## 2455                    Cornell                                        expected
## 2456                    Cornell                                     extenuating
## 2457                    Cornell                                     flexibility
## 2458                    Cornell                                           focus
## 2459                    Cornell                                          format
## 2460                    Cornell                                           forum
## 2461                    Cornell                                            free
## 2462                    Cornell                                          freely
## 2463                    Cornell                                          friday
## 2464                    Cornell                                            hard
## 2465                    Cornell                                          health
## 2466                    Cornell                                         honesty
## 2467                    Cornell                                           human
## 2468                    Cornell                                     immediately
## 2469                    Cornell                                     implemented
## 2470                    Cornell                                         include
## 2471                    Cornell                                       incorrect
## 2472                    Cornell                                      individual
## 2473                    Cornell                                    instructions
## 2474                    Cornell                                      instructor
## 2475                    Cornell                                     instructors
## 2476                    Cornell                                       integrity
## 2477                    Cornell                                       introduce
## 2478                    Cornell                                      introduced
## 2479                    Cornell                                    introduction
## 2480                    Cornell                                        involved
## 2481                    Cornell                                              ix
## 2482                    Cornell                                         learned
## 2483                    Cornell                                         medical
## 2484                    Cornell                                        meetings
## 2485                    Cornell                                        military
## 2486                    Cornell                                          monday
## 2487                    Cornell                                           mtwtf
## 2488                    Cornell                                      observance
## 2489                    Cornell                                          online
## 2490                    Cornell                                      percentage
## 2491                    Cornell                                    periodically
## 2492                    Cornell                                      permission
## 2493                    Cornell                                         persons
## 2494                    Cornell                                     predictions
## 2495                    Cornell                                           prior
## 2496                    Cornell                                     programming
## 2497                    Cornell                                         project
## 2498                    Cornell                                         provide
## 2499                    Cornell                                        provided
## 2500                    Cornell                                      reasonable
## 2501                    Cornell                                         related
## 2502                    Cornell                                       religious
## 2503                    Cornell                                    reproducible
## 2504                    Cornell                                         respond
## 2505                    Cornell                                        response
## 2506                    Cornell                                             sds
## 2507                    Cornell                                         section
## 2508                    Cornell                                         service
## 2509                    Cornell                                        sessions
## 2510                    Cornell                                           share
## 2511                    Cornell                                    significance
## 2512                    Cornell                                         similar
## 2513                    Cornell                                        software
## 2514                    Cornell                                        specific
## 2515                    Cornell                                           staff
## 2516                    Cornell                                      statistics
## 2517                    Cornell                                        strength
## 2518                    Cornell                                      submission
## 2519                    Cornell                                           tasks
## 2520                    Cornell                                      techniques
## 2521                    Cornell                                        thursday
## 2522                    Cornell                                           title
## 2523                    Cornell                                         tuesday
## 2524                    Cornell                                   understanding
## 2525                    Cornell                                      university
## 2526                    Cornell                                       violation
## 2527                     Drexel                                              3d
## 2528                     Drexel                                  accommodations
## 2529                     Drexel                                        accuracy
## 2530                     Drexel                                        accurate
## 2531                     Drexel                                     acquisition
## 2532                     Drexel                                      algorithms
## 2533                     Drexel                                         analyze
## 2534                     Drexel                                         article
## 2535                     Drexel                                        assessed
## 2536                     Drexel                                         average
## 2537                     Drexel                                          barbie
## 2538                     Drexel                                           based
## 2539                     Drexel                                            beat
## 2540                     Drexel                                       beautiful
## 2541                     Drexel                                            bias
## 2542                     Drexel                                          bigger
## 2543                     Drexel                                     bl.ocks.org
## 2544                     Drexel                                           brody
## 2545                     Drexel                                          broken
## 2546                     Drexel                                            bsds
## 2547                     Drexel                                       causation
## 2548                     Drexel                                         century
## 2549                     Drexel                                           chang
## 2550                     Drexel                                        children
## 2551                     Drexel                                           chris
## 2552                     Drexel                                           cloud
## 2553                     Drexel                                         college
## 2554                     Drexel                                       community
## 2555                     Drexel                                       computers
## 2556                     Drexel                                       conducted
## 2557                     Drexel                                  considerations
## 2558                     Drexel                                      considered
## 2559                     Drexel                                         context
## 2560                     Drexel                                     correlation
## 2561                     Drexel                                           cover
## 2562                     Drexel                                          credit
## 2563                     Drexel                                           curve
## 2564                     Drexel                                           cycle
## 2565                     Drexel                                       databases
## 2566                     Drexel                                    deliverables
## 2567                     Drexel                                        delivery
## 2568                     Drexel                                  demonstrations
## 2569                     Drexel                                             dgm
## 2570                     Drexel                                         digital
## 2571                     Drexel                                      discipline
## 2572                     Drexel                                     disciplines
## 2573                     Drexel                                         discuss
## 2574                     Drexel                                       diversity
## 2575                     Drexel                                           dolls
## 2576                     Drexel                                            doug
## 2577                     Drexel                                      drexel.edu
## 2578                     Drexel                                         effects
## 2579                     Drexel                                      electronic
## 2580                     Drexel                                       explained
## 2581                     Drexel                                       factories
## 2582                     Drexel                                         factory
## 2583                     Drexel                                         faculty
## 2584                     Drexel                                           falls
## 2585                     Drexel                                             faq
## 2586                     Drexel                                         feature
## 2587                     Drexel                                        features
## 2588                     Drexel                                           field
## 2589                     Drexel                                         finding
## 2590                     Drexel                             fivethirtyeight.com
## 2591                     Drexel                                    folksonomies
## 2592                     Drexel                                           found
## 2593                     Drexel                                          fourth
## 2594                     Drexel                                        generate
## 2595                     Drexel                                          gentle
## 2596                     Drexel                         googleblog.blogspot.com
## 2597                     Drexel                                          graded
## 2598                     Drexel                                           guide
## 2599                     Drexel                                          hadoop
## 2600                     Drexel                                         hartley
## 2601                     Drexel                                          hidden
## 2602                     Drexel                                            html
## 2603                     Drexel                                            huge
## 2604                     Drexel                                          humans
## 2605                     Drexel                                          hurdle
## 2606                     Drexel                                      identified
## 2607                     Drexel                                         illegal
## 2608                     Drexel                                      indicating
## 2609                     Drexel                                      individual
## 2610                     Drexel                                            info
## 2611                     Drexel                                     infographic
## 2612                     Drexel                                    infographics
## 2613                     Drexel                                        insights
## 2614                     Drexel                                       intensive
## 2615                     Drexel                                        internet
## 2616                     Drexel                    jakerylandwilliams.github.io
## 2617                     Drexel                                         janitor
## 2618                     Drexel                                             jim
## 2619                     Drexel                                         journey
## 2620                     Drexel                                         judging
## 2621                     Drexel                                           kalid
## 2622                     Drexel                                             key
## 2623                     Drexel                                       knowledge
## 2624                     Drexel                                           laney
## 2625                     Drexel                                       languages
## 2626                     Drexel                                           legal
## 2627                     Drexel                               leipzig.github.io
## 2628                     Drexel                                            life
## 2629                     Drexel                                           maloy
## 2630                     Drexel                                      management
## 2631                     Drexel                                           manna
## 2632                     Drexel                                       mapreduce
## 2633                     Drexel                                         marking
## 2634                     Drexel                                          matrix
## 2635                     Drexel                                            matt
## 2636                     Drexel                                        measures
## 2637                     Drexel                                         metrics
## 2638                     Drexel                                            mike
## 2639                     Drexel                                      milestones
## 2640                     Drexel                                           model
## 2641                     Drexel                                        modeling
## 2642                     Drexel                                            mozy
## 2643                     Drexel                                        mozy.com
## 2644                     Drexel                                        newshour
## 2645                     Drexel                                           notes
## 2646                     Drexel                                             odr
## 2647                     Drexel                                             oed
## 2648                     Drexel                                        official
## 2649                     Drexel                                          origin
## 2650                     Drexel                                   participation
## 2651                     Drexel                                     perspective
## 2652                     Drexel                                             pgs
## 2653                     Drexel                                        plzhqobo
## 2654                     Drexel                                       potential
## 2655                     Drexel                                       practical
## 2656                     Drexel                                   practitioners
## 2657                     Drexel                                       preparing
## 2658                     Drexel                                           press
## 2659                     Drexel                                         printed
## 2660                     Drexel                                     probability
## 2661                     Drexel                                      processing
## 2662                     Drexel                                        profiles
## 2663                     Drexel                                           pulse
## 2664                     Drexel                                         quality
## 2665                     Drexel                                          rachel
## 2666                     Drexel                                       reception
## 2667                     Drexel                                     reoffending
## 2668                     Drexel                                       resources
## 2669                     Drexel                                            risk
## 2670                     Drexel                                             roc
## 2671                     Drexel                                           roles
## 2672                     Drexel                                           rules
## 2673                     Drexel                                             run
## 2674                     Drexel                                          school
## 2675                     Drexel                                           scott
## 2676                     Drexel                                         section
## 2677                     Drexel                                        security
## 2678                     Drexel                                         sharing
## 2679                     Drexel                                           short
## 2680                     Drexel                                          simple
## 2681                     Drexel                                          singel
## 2682                     Drexel                                           skill
## 2683                     Drexel                                          skills
## 2684                     Drexel                                           space
## 2685                     Drexel                                            spam
## 2686                     Drexel                                        standard
## 2687                     Drexel                                       standards
## 2688                     Drexel                                          status
## 2689                     Drexel                                          stored
## 2690                     Drexel                                          street
## 2691                     Drexel                                      structured
## 2692                     Drexel                                          submit
## 2693                     Drexel                                       submitted
## 2694                     Drexel                                        syllabus
## 2695                     Drexel                                          system
## 2696                     Drexel                                      taxonomies
## 2697                     Drexel                                    technologies
## 2698                     Drexel                                     terminology
## 2699                     Drexel                                         testing
## 2700                     Drexel                                            text
## 2701                     Drexel                                           topic
## 2702                     Drexel                                          topics
## 2703                     Drexel                                           trade
## 2704                     Drexel                                          tricky
## 2705                     Drexel                                      understand
## 2706                     Drexel                                    unstructured
## 2707                     Drexel                                        variance
## 2708                     Drexel                                         variety
## 2709                     Drexel                                         vectors
## 2710                     Drexel                                        velocity
## 2711                     Drexel                                          visual
## 2712                     Drexel                                          volume
## 2713                     Drexel                                            wall
## 2714                     Drexel                                           wanna
## 2715                     Drexel                                         website
## 2716                     Drexel                                           we’re
## 2717                     Drexel                                      withdrawal
## 2718                     Drexel                                        workflow
## 2719                     Drexel                      wtqdpd3mizzm2xvfitgf8he_ab
## 2720                     Drexel                      www.datasciencecentral.com
## 2721               Georgia_Tech                                       algorithm
## 2722               Georgia_Tech                                        author's
## 2723               Georgia_Tech                                       bluejeans
## 2724               Georgia_Tech                                     constrained
## 2725               Georgia_Tech                                         covered
## 2726               Georgia_Tech                                         descent
## 2727               Georgia_Tech                                            fall
## 2728               Georgia_Tech                                        fall2020
## 2729               Georgia_Tech                                     familiarity
## 2730               Georgia_Tech                                            free
## 2731               Georgia_Tech                                         helpful
## 2732               Georgia_Tech                                           howey
## 2733               Georgia_Tech                                        matrices
## 2734               Georgia_Tech                                         methods
## 2735               Georgia_Tech                                            move
## 2736               Georgia_Tech                                   multivariable
## 2737               Georgia_Tech                                            n210
## 2738               Georgia_Tech                                        networks
## 2739               Georgia_Tech                                       numerical
## 2740               Georgia_Tech                                            plan
## 2741               Georgia_Tech                                        programs
## 2742               Georgia_Tech                                      randomness
## 2743               Georgia_Tech                                          record
## 2744               Georgia_Tech                                        recorded
## 2745               Georgia_Tech                                      regression
## 2746               Georgia_Tech                                       regularly
## 2747               Georgia_Tech                                       resources
## 2748               Georgia_Tech                                          review
## 2749               Georgia_Tech                                       scheduled
## 2750               Georgia_Tech                                         solving
## 2751               Georgia_Tech                                      statistics
## 2752               Georgia_Tech                                          strang
## 2753               Georgia_Tech                                         systems
## 2754               Georgia_Tech                                   understanding
## 2755               Georgia_Tech                                       variables
## 2756               Georgia_Tech                                          vector
## 2757               Georgia_Tech                                         website
## 2758               Georgia_Tech                         www.mdav.ece.gatech.edu
## 2759                    Harvard                                      acceptable
## 2760                    Harvard                                          access
## 2761                    Harvard                                       admission
## 2762                    Harvard                                       analytics
## 2763                    Harvard                                           anova
## 2764                    Harvard                                          attend
## 2765                    Harvard                                      attributes
## 2766                    Harvard                                        citation
## 2767                    Harvard                                  classification
## 2768                    Harvard                                        computer
## 2769                    Harvard                                         concept
## 2770                    Harvard                                            date
## 2771                    Harvard                                             day
## 2772                    Harvard                                           excel
## 2773                    Harvard                                         excuses
## 2774                    Harvard                                       extension
## 2775                    Harvard                                         extract
## 2776                    Harvard                                       filtering
## 2777                    Harvard                                           forum
## 2778                    Harvard                                      foundation
## 2779                    Harvard                                       gradebook
## 2780                    Harvard                                      instructor
## 2781                    Harvard                                         jupyter
## 2782                    Harvard                                         knowing
## 2783                    Harvard                                            live
## 2784                    Harvard                                            lost
## 2785                    Harvard                                         meeting
## 2786                    Harvard                                misunderstanding
## 2787                    Harvard                                          models
## 2788                    Harvard                                             nlp
## 2789                    Harvard                                        official
## 2790                    Harvard                                      permission
## 2791                    Harvard                                       platforms
## 2792                    Harvard                                    preattentive
## 2793                    Harvard                                       proctored
## 2794                    Harvard                                        projects
## 2795                    Harvard                                            quiz
## 2796                    Harvard                                      regression
## 2797                    Harvard                                     requirement
## 2798                    Harvard                                         results
## 2799                    Harvard                                          school
## 2800                    Harvard                                            seek
## 2801                    Harvard                                         sources
## 2802                    Harvard                                      statistics
## 2803                    Harvard                                       submitted
## 2804                    Harvard                                          system
## 2805                    Harvard                                      techniques
## 2806                    Harvard                                  transformation
## 2807                    Harvard                                       tutorials
## 2808                    Harvard                                         updated
## 2809                    Harvard                                           visit
## 2810                    Harvard                                          webcam
## 2811                    Harvard                                            week
## 2812                        LSU                                       accepting
## 2813                        LSU                                         address
## 2814                        LSU                                        advances
## 2815                        LSU                                         alleged
## 2816                        LSU                                     appointment
## 2817                        LSU                                      attendance
## 2818                        LSU                                           basic
## 2819                        LSU                                       borrowing
## 2820                        LSU                                          center
## 2821                        LSU                                          change
## 2822                        LSU                                           check
## 2823                        LSU                                       classroom
## 2824                        LSU                                           clean
## 2825                        LSU                               codeofconduct.php
## 2826                        LSU                                        comments
## 2827                        LSU                                    communicated
## 2828                        LSU                                         complex
## 2829                        LSU                                        concepts
## 2830                        LSU                                    constructive
## 2831                        LSU                                         contact
## 2832                        LSU                                         content
## 2833                        LSU                                          create
## 2834                        LSU                                          credit
## 2835                        LSU                                      discussing
## 2836                        LSU                                       diversity
## 2837                        LSU                                             e.g
## 2838                        LSU                                        examples
## 2839                        LSU                                          expect
## 2840                        LSU                                        expected
## 2841                        LSU                                     experiences
## 2842                        LSU                                            gear
## 2843                        LSU                                        generate
## 2844                        LSU                                         grading
## 2845                        LSU                                            hour
## 2846                        LSU                                         include
## 2847                        LSU                                      increasing
## 2848                        LSU                                      instructor
## 2849                        LSU                                       integrity
## 2850                        LSU                                          laptop
## 2851                        LSU                                            late
## 2852                        LSU                                     lib.lsu.edu
## 2853                        LSU                                     lsu.zoom.us
## 2854                        LSU                                            main
## 2855                        LSU                                          manage
## 2856                        LSU                                      objectives
## 2857                        LSU                                        organize
## 2858                        LSU                                        pandemic
## 2859                        LSU                                            plan
## 2860                        LSU                                           plans
## 2861                        LSU                                             pre
## 2862                        LSU                                         private
## 2863                        LSU                                        provided
## 2864                        LSU                                            pull
## 2865                        LSU                                        readings
## 2866                        LSU                                          reason
## 2867                        LSU                                         reports
## 2868                        LSU                                    repositories
## 2869                        LSU                                    reproducible
## 2870                        LSU                                         respect
## 2871                        LSU                                  responsibility
## 2872                        LSU                                          result
## 2873                        LSU                                         rstudio
## 2874                        LSU                                       softwares
## 2875                        LSU                                           spend
## 2876                        LSU                                       standards
## 2877                        LSU                                          strive
## 2878                        LSU                                      suspension
## 2879                        LSU                                         tureaud
## 2880                        LSU                                      university
## 2881                        MIT                                         ability
## 2882                        MIT                                      accomplish
## 2883                        MIT                                     accumulated
## 2884                        MIT                                            aims
## 2885                        MIT                                          attend
## 2886                        MIT                                      attendance
## 2887                        MIT                                  classification
## 2888                        MIT                                       confident
## 2889                        MIT                                         covered
## 2890                        MIT                                        dropping
## 2891                        MIT                                       exercises
## 2892                        MIT                                    experimental
## 2893                        MIT                                        feedback
## 2894                        MIT                                            feel
## 2895                        MIT                                          finger
## 2896                        MIT                                            hour
## 2897                        MIT                                         include
## 2898                        MIT                                        learning
## 2899                        MIT                                           major
## 2900                        MIT                                       materials
## 2901                        MIT                                            note
## 2902                        MIT                                             ocw
## 2903                        MIT                                    optimization
## 2904                        MIT                                            play
## 2905                        MIT                                           press
## 2906                        MIT                                        programs
## 2907                        MIT                                         provide
## 2908                        MIT                                     recitations
## 2909                        MIT                                            role
## 2910                        MIT                                          rolled
## 2911                        MIT                                         rolling
## 2912                        MIT                                           serve
## 2913                        MIT                                         session
## 2914                        MIT                                        sessions
## 2915                        MIT                                            sins
## 2916                        MIT                                         solving
## 2917                        MIT                                     statistical
## 2918                        MIT                                         student
## 2919                        MIT                                          taking
## 2920                        MIT                                        textbook
## 2921                        MIT                                        thinking
## 2922                        MIT                                          topics
## 2923                        MIT                                        versions
## 2924                        MIT                                           write
## 2925            Montgomery_Coll                                   accessibility
## 2926            Montgomery_Coll                                  accommodations
## 2927            Montgomery_Coll                                      activities
## 2928            Montgomery_Coll                                        activity
## 2929            Montgomery_Coll                                        addition
## 2930            Montgomery_Coll                                       announced
## 2931            Montgomery_Coll                                            call
## 2932            Montgomery_Coll                                         classes
## 2933            Montgomery_Coll                                        closings
## 2934            Montgomery_Coll                                             day
## 2935            Montgomery_Coll                                     demonstrate
## 2936            Montgomery_Coll                                      department
## 2937            Montgomery_Coll                                            desk
## 2938            Montgomery_Coll                                       emergency
## 2939            Montgomery_Coll                                      experience
## 2940            Montgomery_Coll                                       exploring
## 2941            Montgomery_Coll                                            hand
## 2942            Montgomery_Coll                                        identify
## 2943            Montgomery_Coll                                        internet
## 2944            Montgomery_Coll                                           learn
## 2945            Montgomery_Coll                                           login
## 2946            Montgomery_Coll                                         machine
## 2947            Montgomery_Coll                                            menu
## 2948            Montgomery_Coll                                         methods
## 2949            Montgomery_Coll                                      organizing
## 2950            Montgomery_Coll                                   participating
## 2951            Montgomery_Coll                                            peng
## 2952            Montgomery_Coll                                      procedures
## 2953            Montgomery_Coll                                       professor
## 2954            Montgomery_Coll                                         receive
## 2955            Montgomery_Coll                                       reinforce
## 2956            Montgomery_Coll                                        required
## 2957            Montgomery_Coll                                         respond
## 2958            Montgomery_Coll                                           roger
## 2959            Montgomery_Coll                                       routinely
## 2960            Montgomery_Coll                                           scale
## 2961            Montgomery_Coll                                        semester
## 2962            Montgomery_Coll                                        services
## 2963            Montgomery_Coll                                       supported
## 2964            Montgomery_Coll                                          system
## 2965            Montgomery_Coll                                            task
## 2966            Montgomery_Coll                                      techniques
## 2967            Montgomery_Coll                                           tools
## 2968            Montgomery_Coll                                         updated
## 2969            Montgomery_Coll                                         variety
## 2970            Montgomery_Coll                                            view
## 2971            Montgomery_Coll                                   visualization
## 2972            Montgomery_Coll                                            walk
## 2973            Montgomery_Coll                                             web
## 2974            Montgomery_Coll                                            week
## 2975            Montgomery_Coll                                         writing
## 2976                   NYU_DS4E                                              4p
## 2977                   NYU_DS4E                                          access
## 2978                   NYU_DS4E                                              ai
## 2979                   NYU_DS4E                                       algorithm
## 2980                   NYU_DS4E                                          answer
## 2981                   NYU_DS4E                                    applications
## 2982                   NYU_DS4E                                          attend
## 2983                   NYU_DS4E                                         broader
## 2984                   NYU_DS4E                                           build
## 2985                   NYU_DS4E                                        building
## 2986                   NYU_DS4E                                       causation
## 2987                   NYU_DS4E                                          coding
## 2988                   NYU_DS4E                                       comparing
## 2989                   NYU_DS4E                                        complete
## 2990                   NYU_DS4E                                        computer
## 2991                   NYU_DS4E                                         concept
## 2992                   NYU_DS4E                                        concrete
## 2993                   NYU_DS4E                                 congratulations
## 2994                   NYU_DS4E                                         contact
## 2995                   NYU_DS4E                                        controls
## 2996                   NYU_DS4E                                    disabilities
## 2997                   NYU_DS4E                                           don’t
## 2998                   NYU_DS4E                                            draw
## 2999                   NYU_DS4E                                          driven
## 3000                   NYU_DS4E                                       empirical
## 3001                   NYU_DS4E                                      estimation
## 3002                   NYU_DS4E                                        evaluate
## 3003                   NYU_DS4E                                           exams
## 3004                   NYU_DS4E                                     experiments
## 3005                   NYU_DS4E                                        facebook
## 3006                   NYU_DS4E                                            feel
## 3007                   NYU_DS4E                                            free
## 3008                   NYU_DS4E                                          graphs
## 3009                   NYU_DS4E                                            hard
## 3010                   NYU_DS4E                                      histograms
## 3011                   NYU_DS4E                                        holidays
## 3012                   NYU_DS4E                                        identify
## 3013                   NYU_DS4E                                      inferences
## 3014                   NYU_DS4E                                     information
## 3015                   NYU_DS4E                                        informed
## 3016                   NYU_DS4E                                            ings
## 3017                   NYU_DS4E                                           kinds
## 3018                   NYU_DS4E                                       knowledge
## 3019                   NYU_DS4E                                          limits
## 3020                   NYU_DS4E                                          listed
## 3021                   NYU_DS4E                                           major
## 3022                   NYU_DS4E                                      manipulate
## 3023                   NYU_DS4E                                         matters
## 3024                   NYU_DS4E                                           means
## 3025                   NYU_DS4E                                          mill’s
## 3026                   NYU_DS4E                                            miss
## 3027                   NYU_DS4E                                          models
## 3028                   NYU_DS4E                                           moses
## 3029                   NYU_DS4E                                         nyu.edu
## 3030                   NYU_DS4E                                             ols
## 3031                   NYU_DS4E                                          online
## 3032                   NYU_DS4E                                         outline
## 3033                   NYU_DS4E                                          people
## 3034                   NYU_DS4E                                          period
## 3035                   NYU_DS4E                                        powerful
## 3036                   NYU_DS4E                                    prerequisite
## 3037                   NYU_DS4E                                      principled
## 3038                   NYU_DS4E                                         privacy
## 3039                   NYU_DS4E                                         program
## 3040                   NYU_DS4E                                            read
## 3041                   NYU_DS4E                                         reading
## 3042                   NYU_DS4E                                        requires
## 3043                   NYU_DS4E                                        research
## 3044                   NYU_DS4E                                            rest
## 3045                   NYU_DS4E                                        sampling
## 3046                   NYU_DS4E                                    specifically
## 3047                   NYU_DS4E                                            talk
## 3048                   NYU_DS4E                                      techniques
## 3049                   NYU_DS4E                                             top
## 3050                   NYU_DS4E                                   visualization
## 3051                   NYU_DS4E                                  visualizations
## 3052                   NYU_DS4E                                       wednesday
## 3053                   NYU_DS4E                                           we’ll
## 3054                   NYU_DS4E                                           we’ve
## 3055                   NYU_DS4E                                          widely
## 3056                   NYU_DS4E                                          you’ve
## 3057                NYU_IntroDS                                  accommodations
## 3058                NYU_IntroDS                                    accompanying
## 3059                NYU_IntroDS                                        addition
## 3060                NYU_IntroDS                                           apply
## 3061                NYU_IntroDS                                            arts
## 3062                NYU_IntroDS                                        assigned
## 3063                NYU_IntroDS                                           bayes
## 3064                NYU_IntroDS                                    calculations
## 3065                NYU_IntroDS                                        calendar
## 3066                NYU_IntroDS                                        cheating
## 3067                NYU_IntroDS                                      clustering
## 3068                NYU_IntroDS                                         complex
## 3069                NYU_IntroDS                                         credits
## 3070                NYU_IntroDS                                          curves
## 3071                NYU_IntroDS                                    disabilities
## 3072                NYU_IntroDS                                     disciplines
## 3073                NYU_IntroDS                                      discretion
## 3074                NYU_IntroDS                                          essays
## 3075                NYU_IntroDS                                         ethical
## 3076                NYU_IntroDS                                            exam
## 3077                NYU_IntroDS                                         examine
## 3078                NYU_IntroDS                                        examples
## 3079                NYU_IntroDS                                       exercises
## 3080                NYU_IntroDS                                     fundamental
## 3081                NYU_IntroDS                                           hands
## 3082                NYU_IntroDS                                             i.e
## 3083                NYU_IntroDS                                      illustrate
## 3084                NYU_IntroDS                                    introduction
## 3085                NYU_IntroDS                                         laptops
## 3086                NYU_IntroDS                                           learn
## 3087                NYU_IntroDS                                        lectures
## 3088                NYU_IntroDS                                         liberal
## 3089                NYU_IntroDS                                         logical
## 3090                NYU_IntroDS                                        logistic
## 3091                NYU_IntroDS                                         methods
## 3092                NYU_IntroDS                                             mid
## 3093                NYU_IntroDS                                         midterm
## 3094                NYU_IntroDS                                          minute
## 3095                NYU_IntroDS                                    multivariate
## 3096                NYU_IntroDS                                           naive
## 3097                NYU_IntroDS                                        o’reilly
## 3098                NYU_IntroDS                                          python
## 3099                NYU_IntroDS                                        readings
## 3100                NYU_IntroDS                                        required
## 3101                NYU_IntroDS                                          result
## 3102                NYU_IntroDS                                        schedule
## 3103                NYU_IntroDS                                        semester
## 3104                NYU_IntroDS                                         sharing
## 3105                NYU_IntroDS                                           short
## 3106                NYU_IntroDS                                      structured
## 3107                NYU_IntroDS                                       technique
## 3108                NYU_IntroDS                                            term
## 3109                NYU_IntroDS                                     theoretical
## 3110                NYU_IntroDS                                        theories
## 3111                NYU_IntroDS                                       typically
## 3112                NYU_IntroDS                                      validation
## 3113                NYU_IntroDS                                          values
## 3114                NYU_IntroDS                                           world
## 3115                  Princeton                                            30am
## 3116                  Princeton                                            50pm
## 3117                  Princeton                                        adjusted
## 3118                  Princeton                                            aims
## 3119                  Princeton                                      asymptotic
## 3120                  Princeton                                      attendance
## 3121                  Princeton                                       augmented
## 3122                  Princeton                                           based
## 3123                  Princeton                                     calculators
## 3124                  Princeton                                       chapters1
## 3125                  Princeton                                       component
## 3126                  Princeton                                     computation
## 3127                  Princeton                                     correlation
## 3128                  Princeton                                            deep
## 3129                  Princeton                                  dimensionality
## 3130                  Princeton                                     expenditure
## 3131                  Princeton                                     expressions
## 3132                  Princeton                                         finance
## 3133                  Princeton                                       financial
## 3134                  Princeton                                            fred
## 3135                  Princeton                                       frederick
## 3136                  Princeton                                          friday
## 3137                  Princeton                                        friedman
## 3138                  Princeton                                          graded
## 3139                  Princeton                                         human.r
## 3140                  Princeton                                          impact
## 3141                  Princeton                                        jianqing
## 3142                  Princeton                                         laptops
## 3143                  Princeton                                       macro2019
## 3144                  Princeton                                            mice
## 3145                  Princeton                                          missed
## 3146                  Princeton                                           moore
## 3147                  Princeton                                       numerical
## 3148                  Princeton                                          people
## 3149                  Princeton                                          photos
## 3150                  Princeton                                        pictures
## 3151                  Princeton                                       precision
## 3152                  Princeton                                      prediction
## 3153                  Princeton                                       principal
## 3154                  Princeton                                     project.org
## 3155                  Princeton                                      properties
## 3156                  Princeton                                         protein
## 3157                  Princeton                                         reading
## 3158                  Princeton                                         receive
## 3159                  Princeton                                        required
## 3160                  Princeton                         research.stlouisfed.org
## 3161                  Princeton                                          robust
## 3162                  Princeton                                          series
## 3163                  Princeton                                        software
## 3164                  Princeton                                          source
## 3165                  Princeton                                         squares
## 3166                  Princeton                                      supervised
## 3167                  Princeton                                             t.j
## 3168                  Princeton                                        training
## 3169                  Princeton                                    unsupervised
## 3170                  Princeton                                      wainwright
## 3171                  Princeton                                       wednesday
## 3172                  Princeton                                        wireless
## 3173                    Rutgers                                        analysis
## 3174                    Rutgers                                           basic
## 3175                    Rutgers                                          called
## 3176                    Rutgers                                            core
## 3177                    Rutgers                                         covered
## 3178                    Rutgers                                      curriculum
## 3179                    Rutgers                                          defend
## 3180                    Rutgers                                      department
## 3181                    Rutgers                                           equal
## 3182                    Rutgers                                          events
## 3183                    Rutgers                                            exam
## 3184                    Rutgers                                           goals
## 3185                    Rutgers                                            home
## 3186                    Rutgers                                      imielinski
## 3187                    Rutgers                                      instructor
## 3188                    Rutgers                                          jersey
## 3189                    Rutgers                                            life
## 3190                    Rutgers                                            list
## 3191                    Rutgers                                        literacy
## 3192                    Rutgers                                      permission
## 3193                    Rutgers                                       placement
## 3194                    Rutgers                                         provide
## 3195                    Rutgers                                            real
## 3196                    Rutgers                                        required
## 3197                    Rutgers                                        sciences
## 3198                    Rutgers                                        semester
## 3199                    Rutgers                                         society
## 3200                    Rutgers                                           solve
## 3201                    Rutgers                                     statistical
## 3202                    Rutgers                                      statistics
## 3203                    Rutgers                                          tomasz
## 3204                    Rutgers                                      university
## 3205                 UCBerkeley                                        analysis
## 3206                 UCBerkeley                                          assign
## 3207                 UCBerkeley                                      components
## 3208                 UCBerkeley                                   computational
## 3209                 UCBerkeley                                       computing
## 3210                 UCBerkeley                                         current
## 3211                 UCBerkeley                                        designed
## 3212                 UCBerkeley                                        evaluate
## 3213                 UCBerkeley                                            fill
## 3214                 UCBerkeley                                            form
## 3215                 UCBerkeley                                          hosted
## 3216                 UCBerkeley                                       including
## 3217                 UCBerkeley                                         indexes
## 3218                 UCBerkeley                                     inferential
## 3219                 UCBerkeley                                  infrastructure
## 3220                 UCBerkeley                                    installation
## 3221                 UCBerkeley                                      iterations
## 3222                 UCBerkeley                                         jupyter
## 3223                 UCBerkeley                                         lecture
## 3224                 UCBerkeley                                           links
## 3225                 UCBerkeley                                      maintained
## 3226                 UCBerkeley                                    manipulation
## 3227                 UCBerkeley                                      matplotlib
## 3228                 UCBerkeley                                         modules
## 3229                 UCBerkeley                                          online
## 3230                 UCBerkeley                                          pandas
## 3231                 UCBerkeley                                      phenomenon
## 3232                 UCBerkeley                                          public
## 3233                 UCBerkeley                                         service
## 3234                 UCBerkeley                                          social
## 3235                 UCBerkeley                                       solutions
## 3236                 UCBerkeley                                    specifically
## 3237                 UCBerkeley                                        standard
## 3238                 UCBerkeley                                         student
## 3239                 UCBerkeley                                         support
## 3240                 UCBerkeley                                           tools
## 3241                 UCBerkeley                                              uc
## 3242                 UCSanDiego                                         ability
## 3243                 UCSanDiego                                         account
## 3244                 UCSanDiego                                acknowledgements
## 3245                 UCSanDiego                                        acquired
## 3246                 UCSanDiego                                         actions
## 3247                 UCSanDiego                                      activities
## 3248                 UCSanDiego                                           added
## 3249                 UCSanDiego                                         allowed
## 3250                 UCSanDiego                                        approach
## 3251                 UCSanDiego                                      approaches
## 3252                 UCSanDiego                                      artificial
## 3253                 UCSanDiego                                       attending
## 3254                 UCSanDiego                                           avoid
## 3255                 UCSanDiego                                          behalf
## 3256                 UCSanDiego                                      berkeley's
## 3257                 UCSanDiego                                           board
## 3258                 UCSanDiego                                       calculate
## 3259                 UCSanDiego                                          campus
## 3260                 UCSanDiego                                          canvas
## 3261                 UCSanDiego                                          chance
## 3262                 UCSanDiego                                           cheat
## 3263                 UCSanDiego                                   chronological
## 3264                 UCSanDiego                                   circumstances
## 3265                 UCSanDiego                                   clarification
## 3266                 UCSanDiego                                         classes
## 3267                 UCSanDiego                                      classmates
## 3268                 UCSanDiego                                        clicking
## 3269                 UCSanDiego                                         college
## 3270                 UCSanDiego                                     comfortable
## 3271                 UCSanDiego                                       community
## 3272                 UCSanDiego                                       completed
## 3273                 UCSanDiego                                      completing
## 3274                 UCSanDiego                                         concept
## 3275                 UCSanDiego                                        contents
## 3276                 UCSanDiego                                         copying
## 3277                 UCSanDiego                                       correctly
## 3278                 UCSanDiego                                     correctness
## 3279                 UCSanDiego                                          counts
## 3280                 UCSanDiego                                          create
## 3281                 UCSanDiego                                          credit
## 3282                 UCSanDiego                                        datasets
## 3283                 UCSanDiego                                             day
## 3284                 UCSanDiego                                          degree
## 3285                 UCSanDiego                                        designed
## 3286                 UCSanDiego                                       determine
## 3287                 UCSanDiego                                          direct
## 3288                 UCSanDiego                                        directly
## 3289                 UCSanDiego                                      discussing
## 3290                 UCSanDiego                                   documentation
## 3291                 UCSanDiego                                      dscstudent
## 3292                 UCSanDiego                                         earlier
## 3293                 UCSanDiego                                           emoji
## 3294                 UCSanDiego                                         enforce
## 3295                 UCSanDiego                                          ensure
## 3296                 UCSanDiego                                         ethical
## 3297                 UCSanDiego                                      exhaustive
## 3298                 UCSanDiego                                      experience
## 3299                 UCSanDiego                                     experiences
## 3300                 UCSanDiego                                         explain
## 3301                 UCSanDiego                                           extra
## 3302                 UCSanDiego                                            faqs
## 3303                 UCSanDiego                                            feel
## 3304                 UCSanDiego                                          figure
## 3305                 UCSanDiego                                            fill
## 3306                 UCSanDiego                                           fills
## 3307                 UCSanDiego                                          friday
## 3308                 UCSanDiego                                            goal
## 3309                 UCSanDiego                                       guarantee
## 3310                 UCSanDiego                                            hall
## 3311                 UCSanDiego                                            hard
## 3312                 UCSanDiego                                        homepage
## 3313                 UCSanDiego                                           ideas
## 3314                 UCSanDiego                                       inclusion
## 3315                 UCSanDiego                                     incompletes
## 3316                 UCSanDiego                                    individually
## 3317                 UCSanDiego                                        instance
## 3318                 UCSanDiego                                    intelligence
## 3319                 UCSanDiego                                      invitation
## 3320                 UCSanDiego                                           level
## 3321                 UCSanDiego                                          linked
## 3322                 UCSanDiego                                          listed
## 3323                 UCSanDiego                                          lowest
## 3324                 UCSanDiego                                            main
## 3325                 UCSanDiego                                           major
## 3326                 UCSanDiego                                           means
## 3327                 UCSanDiego                                            meet
## 3328                 UCSanDiego                                        meetings
## 3329                 UCSanDiego                                           minor
## 3330                 UCSanDiego                                          module
## 3331                 UCSanDiego                                             mwf
## 3332                 UCSanDiego                                              np
## 3333                 UCSanDiego                                           occur
## 3334                 UCSanDiego                                     participate
## 3335                 UCSanDiego                                    perspectives
## 3336                 UCSanDiego                                       podcasted
## 3337                 UCSanDiego                                         posting
## 3338                 UCSanDiego                                        practice
## 3339                 UCSanDiego                                         prevent
## 3340                 UCSanDiego                                        previous
## 3341                 UCSanDiego                                        priority
## 3342                 UCSanDiego                                         program
## 3343                 UCSanDiego                                        provided
## 3344                 UCSanDiego                                            read
## 3345                 UCSanDiego                                      reasonable
## 3346                 UCSanDiego                                         release
## 3347                 UCSanDiego                                        requests
## 3348                 UCSanDiego                                         respect
## 3349                 UCSanDiego                                        resubmit
## 3350                 UCSanDiego                                          review
## 3351                 UCSanDiego                                         roughly
## 3352                 UCSanDiego                                     scholarship
## 3353                 UCSanDiego                                             set
## 3354                 UCSanDiego                                         setting
## 3355                 UCSanDiego                                         sharing
## 3356                 UCSanDiego                                          skills
## 3357                 UCSanDiego                                       solutions
## 3358                 UCSanDiego                                         solving
## 3359                 UCSanDiego                                           stick
## 3360                 UCSanDiego                                        strongly
## 3361                 UCSanDiego                                       student's
## 3362                 UCSanDiego                                     suggestions
## 3363                 UCSanDiego                                           table
## 3364                 UCSanDiego                                          tablet
## 3365                 UCSanDiego                                         talking
## 3366                 UCSanDiego                                           times
## 3367                 UCSanDiego                                            tool
## 3368                 UCSanDiego                                        ucsd.edu
## 3369                 UCSanDiego                                      understand
## 3370                 UCSanDiego                                   understanding
## 3371                 UCSanDiego                                          unlike
## 3372                 UCSanDiego                                          upload
## 3373                 UCSanDiego                                          verify
## 3374                 UCSanDiego                                           video
## 3375                 UCSanDiego                                      waitlisted
## 3376                 UCSanDiego                                         warning
## 3377                 UCSanDiego                                        weighted
## 3378                 UCSanDiego                                           worth
## 3379                 UCSanDiego                                            zoom
## 3380                    UIU_107                                          answer
## 3381                    UIU_107                                           based
## 3382                    UIU_107                                        cheating
## 3383                    UIU_107                                        complete
## 3384                    UIU_107                                          design
## 3385                    UIU_107                                          device
## 3386                    UIU_107                                        discover
## 3387                    UIU_107                                       discovery
## 3388                    UIU_107                                         discuss
## 3389                    UIU_107                                          giving
## 3390                    UIU_107                                          grades
## 3391                    UIU_107                                            held
## 3392                    UIU_107                                           ideas
## 3393                    UIU_107                                illinois.zoom.us
## 3394                    UIU_107                                        includes
## 3395                    UIU_107                                          issues
## 3396                    UIU_107                                          laptop
## 3397                    UIU_107                                            late
## 3398                    UIU_107                                            lead
## 3399                    UIU_107                                         lecture
## 3400                    UIU_107                                          letter
## 3401                    UIU_107                                            loss
## 3402                    UIU_107                                         midterm
## 3403                    UIU_107                                         perform
## 3404                    UIU_107                                            prof
## 3405                    UIU_107                                             pwd
## 3406                    UIU_107                                         sharing
## 3407                    UIU_107                                     significant
## 3408                    UIU_107                                          social
## 3409                    UIU_107                                           staff
## 3410                    UIU_107                                     submissions
## 3411                    UIU_107                                       submitted
## 3412                    UIU_107                                        teaching
## 3413                    UIU_107                                       thursdays
## 3414                    UIU_107                                           times
## 3415                    UIU_107                                            week
## 3416                    UIU_107                                          weekly
## 3417                    UIU_107                                            zoom
## 3418                    UIU_207                                      activities
## 3419                    UIU_207                                          answer
## 3420                    UIU_207                                           based
## 3421                    UIU_207                                        building
## 3422                    UIU_207                                      calculator
## 3423                    UIU_207                                        cheating
## 3424                    UIU_207                                      components
## 3425                    UIU_207                                         discuss
## 3426                    UIU_207                                         english
## 3427                    UIU_207                                            exam
## 3428                    UIU_207                                           exams
## 3429                    UIU_207                                     exploration
## 3430                    UIU_207                                         explore
## 3431                    UIU_207                                          github
## 3432                    UIU_207                                          giving
## 3433                    UIU_207                                          grades
## 3434                    UIU_207                                           ideas
## 3435                    UIU_207                                        illinois
## 3436                    UIU_207                                        includes
## 3437                    UIU_207                                       inference
## 3438                    UIU_207                                          laptop
## 3439                    UIU_207                                            late
## 3440                    UIU_207                                        modeling
## 3441                    UIU_207                                          monday
## 3442                    UIU_207                                           notes
## 3443                    UIU_207                                             os3
## 3444                    UIU_207                                      percentage
## 3445                    UIU_207                                           quant
## 3446                    UIU_207                                            read
## 3447                    UIU_207                                         sharing
## 3448                    UIU_207                                         stat207
## 3449                    UIU_207                                     submissions
## 3450                    UIU_207                                       submitted
## 3451                    UIU_207                                        teaching
## 3452                    UIU_207                                          topics
## 3453                    UIU_207                                         tuesday
## 3454                    UIU_207                                      university
## 3455                    UIU_207                                         website
## 3456                  UKentucky                                        accepted
## 3457                  UKentucky                                           adobe
## 3458                  UKentucky                                   announcements
## 3459                  UKentucky                                      assistance
## 3460                  UKentucky                                          basics
## 3461                  UKentucky                                           board
## 3462                  UKentucky                                        business
## 3463                  UKentucky                                           check
## 3464                  UKentucky                                            code
## 3465                  UKentucky                                  communications
## 3466                  UKentucky                                      conducting
## 3467                  UKentucky                                         content
## 3468                  UKentucky                                          credit
## 3469                  UKentucky                                        customer
## 3470                  UKentucky                                        datasets
## 3471                  UKentucky                                            date
## 3472                  UKentucky                                       decisions
## 3473                  UKentucky                                      definition
## 3474                  UKentucky                                           delay
## 3475                  UKentucky                                      developing
## 3476                  UKentucky                                              dl
## 3477                  UKentucky                                            earn
## 3478                  UKentucky                                          emails
## 3479                  UKentucky                                          ethics
## 3480                  UKentucky                                    expectations
## 3481                  UKentucky                                      facilitate
## 3482                  UKentucky                                         failure
## 3483                  UKentucky                                          family
## 3484                  UKentucky                                       household
## 3485                  UKentucky                                            html
## 3486                  UKentucky                                              ii
## 3487                  UKentucky                                         illness
## 3488                  UKentucky                                        includes
## 3489                  UKentucky                                       including
## 3490                  UKentucky                                      individual
## 3491                  UKentucky                                        internet
## 3492                  UKentucky                                          issues
## 3493                  UKentucky                                        kentucky
## 3494                  UKentucky                                            late
## 3495                  UKentucky                                           learn
## 3496                  UKentucky                                       libraries
## 3497                  UKentucky                                        locating
## 3498                  UKentucky                                            main
## 3499                  UKentucky                                    manipulation
## 3500                  UKentucky                                       materials
## 3501                  UKentucky                                           means
## 3502                  UKentucky                                         message
## 3503                  UKentucky                                          monday
## 3504                  UKentucky                                           occur
## 3505                  UKentucky                                           ombud
## 3506                  UKentucky                                   organizations
## 3507                  UKentucky                                             p.m
## 3508                  UKentucky                                           part2
## 3509                  UKentucky                                     participate
## 3510                  UKentucky                                             pdf
## 3511                  UKentucky                                           posed
## 3512                  UKentucky                                            post
## 3513                  UKentucky                                           posts
## 3514                  UKentucky                                        question
## 3515                  UKentucky                                           refer
## 3516                  UKentucky                                         request
## 3517                  UKentucky                                        requests
## 3518                  UKentucky                                        research
## 3519                  UKentucky                                        resource
## 3520                  UKentucky                                responsibilities
## 3521                  UKentucky                                        returned
## 3522                  UKentucky                                           reuse
## 3523                  UKentucky                                          rights
## 3524                  UKentucky                                         section
## 3525                  UKentucky                                             set
## 3526                  UKentucky                                            site
## 3527                  UKentucky                                          source
## 3528                  UKentucky                                  studentaffairs
## 3529                  UKentucky                                          submit
## 3530                  UKentucky                                       submitted
## 3531                  UKentucky                                     substantive
## 3532                  UKentucky                                           table
## 3533                  UKentucky                                      techniques
## 3534                  UKentucky                                   technological
## 3535                  UKentucky                                        textbook
## 3536                  UKentucky                                      thoughtful
## 3537                  UKentucky                                           tools
## 3538                  UKentucky                                           topic
## 3539                  UKentucky                                         topical
## 3540                  UKentucky                                          topics
## 3541                  UKentucky                                      understand
## 3542                  UKentucky                                        valuable
## 3543                  UKentucky                                    verification
## 3544                  UKentucky                                         veteran
## 3545                  UKentucky                                        weekdays
## 3546                  UKentucky                                        weekends
## 3547                  UKentucky                                           weeks
## 3548                  UKentucky                                           words
## 3549                        UMD                                      acceptable
## 3550                        UMD                                         account
## 3551                        UMD                                         achieve
## 3552                        UMD                                      activities
## 3553                        UMD                                         address
## 3554                        UMD                                       admission
## 3555                        UMD                                     affirmative
## 3556                        UMD                                       analytics
## 3557                        UMD                                         analyze
## 3558                        UMD                                        approved
## 3559                        UMD                                          arrays
## 3560                        UMD                                      assistance
## 3561                        UMD                                           audit
## 3562                        UMD                                       authentic
## 3563                        UMD                                   authorization
## 3564                        UMD                                           award
## 3565                        UMD                                             bar
## 3566                        UMD                                           based
## 3567                        UMD                                       beginning
## 3568                        UMD                                     calculation
## 3569                        UMD                                      capricious
## 3570                        UMD                                          change
## 3571                        UMD                                           check
## 3572                        UMD                                        cleaning
## 3573                        UMD                                         comment
## 3574                        UMD                                      commitment
## 3575                        UMD                                       committed
## 3576                        UMD                                       completed
## 3577                        UMD                                         context
## 3578                        UMD                                      contribute
## 3579                        UMD                                         culture
## 3580                        UMD                                           dates
## 3581                        UMD                                     demonstrate
## 3582                        UMD                                    descriptions
## 3583                        UMD                                        detailed
## 3584                        UMD                                         develop
## 3585                        UMD                                     development
## 3586                        UMD                                        ensuring
## 3587                        UMD                                           equal
## 3588                        UMD                                          ethics
## 3589                        UMD                                            exam
## 3590                        UMD                                     examination
## 3591                        UMD                                          expect
## 3592                        UMD                                     experiences
## 3593                        UMD                                     exploration
## 3594                        UMD                                         express
## 3595                        UMD                                      extensions
## 3596                        UMD                                         failure
## 3597                        UMD                                        fairness
## 3598                        UMD                                           found
## 3599                        UMD                                             gpa
## 3600                        UMD                                          graded
## 3601                        UMD                                          grades
## 3602                        UMD                                        handbook
## 3603                        UMD                                      identified
## 3604                        UMD                                    instructions
## 3605                        UMD                                    intellectual
## 3606                        UMD                                     interaction
## 3607                        UMD                                          issues
## 3608                        UMD                                           items
## 3609                        UMD                                             key
## 3610                        UMD                                           learn
## 3611                        UMD                                       lifecycle
## 3612                        UMD                                           links
## 3613                        UMD                                            main
## 3614                        UMD                                        maintain
## 3615                        UMD                                            mark
## 3616                        UMD                                      misconduct
## 3617                        UMD                                          models
## 3618                        UMD                                      navigation
## 3619                        UMD                                   opportunities
## 3620                        UMD                                        outcomes
## 3621                        UMD                                         passing
## 3622                        UMD                                         pending
## 3623                        UMD                                      philosophy
## 3624                        UMD                                            plan
## 3625                        UMD                                          posted
## 3626                        UMD                                         posting
## 3627                        UMD                                           posts
## 3628                        UMD                                       potential
## 3629                        UMD                                      predictive
## 3630                        UMD                                       preferred
## 3631                        UMD                                     preparation
## 3632                        UMD                                         primary
## 3633                        UMD                                         process
## 3634                        UMD                                        products
## 3635                        UMD                                         project
## 3636                        UMD                                        property
## 3637                        UMD                                            read
## 3638                        UMD                                         request
## 3639                        UMD                                         respect
## 3640                        UMD                                        response
## 3641                        UMD                                     responsible
## 3642                        UMD                                            role
## 3643                        UMD                                          rubric
## 3644                        UMD                                         rubrics
## 3645                        UMD                                    satisfactory
## 3646                        UMD                                        schedule
## 3647                        UMD                                          school
## 3648                        UMD                                         science
## 3649                        UMD                                        security
## 3650                        UMD                                        services
## 3651                        UMD                                             set
## 3652                        UMD                                         sharing
## 3653                        UMD                                        specific
## 3654                        UMD                                       student's
## 3655                        UMD                                         studies
## 3656                        UMD                                     submissions
## 3657                        UMD                                      sufficient
## 3658                        UMD                                       supported
## 3659                        UMD                                       technical
## 3660                        UMD                                            term
## 3661                        UMD                                           terms
## 3662                        UMD                                        thinking
## 3663                        UMD                                            time
## 3664                        UMD                                      transcript
## 3665                        UMD                                     transcripts
## 3666                        UMD                                        tutorial
## 3667                        UMD                                           types
## 3668                        UMD                                          umgc's
## 3669                        UMD                                        umgc.edu
## 3670                        UMD                                    university's
## 3671                        UMD                                  unsatisfactory
## 3672                        UMD                                          uphold
## 3673                        UMD                                       uploading
## 3674                        UMD                                         variety
## 3675                        UMD                                       violation
## 3676                        UMD                                           weeks
## 3677                        UMD                                        withdrew
## 3678                     UMaine                                   accessibility
## 3679                     UMaine                                   accommodation
## 3680                     UMaine                                          action
## 3681                     UMaine                                      additional
## 3682                     UMaine                                         allowed
## 3683                     UMaine                                           basic
## 3684                     UMaine                                           bayes
## 3685                     UMaine                                        bayesian
## 3686                     UMaine                                          binary
## 3687                     UMaine                                           chain
## 3688                     UMaine                                           cheat
## 3689                     UMaine                                        concepts
## 3690                     UMaine                                      continuous
## 3691                     UMaine                                     correlation
## 3692                     UMaine                                           covid
## 3693                     UMaine                                      definition
## 3694                     UMaine                                         density
## 3695                     UMaine                                         details
## 3696                     UMaine                                        discrete
## 3697                     UMaine                                      disruption
## 3698                     UMaine                                      disruptive
## 3699                     UMaine                                     distributed
## 3700                     UMaine                                       estimator
## 3701                     UMaine                                          events
## 3702                     UMaine                                     examination
## 3703                     UMaine                                           exams
## 3704                     UMaine                                          format
## 3705                     UMaine                                        function
## 3706                     UMaine                                          grades
## 3707                     UMaine                                         grading
## 3708                     UMaine                                       histogram
## 3709                     UMaine                                        holidays
## 3710                     UMaine                                         honesty
## 3711                     UMaine                                     identically
## 3712                     UMaine                                     independent
## 3713                     UMaine                                       intervals
## 3714                     UMaine                                        learning
## 3715                     UMaine                                         lecture
## 3716                     UMaine                                          letter
## 3717                     UMaine                                          manual
## 3718                     UMaine                                            mass
## 3719                     UMaine                                       materials
## 3720                     UMaine                                          method
## 3721                     UMaine                                         methods
## 3722                     UMaine                                         midterm
## 3723                     UMaine                                         missing
## 3724                     UMaine                                             mle
## 3725                     UMaine                                            mont
## 3726                     UMaine                                           notes
## 3727                     UMaine                                       observing
## 3728                     UMaine                                      parametric
## 3729                     UMaine                                             pdf
## 3730                     UMaine                                          person
## 3731                     UMaine                                           press
## 3732                     UMaine                                         provide
## 3733                     UMaine                                         pruning
## 3734                     UMaine                                         quietly
## 3735                     UMaine                                            real
## 3736                     UMaine                                       reporting
## 3737                     UMaine                                           rules
## 3738                     UMaine                                              rv
## 3739                     UMaine                                         salimeh
## 3740                     UMaine                                        sampling
## 3741                     UMaine                                           sekeh
## 3742                     UMaine                                        semester
## 3743                     UMaine                                      sequential
## 3744                     UMaine                                          series
## 3745                     UMaine                                        services
## 3746                     UMaine                                     significant
## 3747                     UMaine                                       student’s
## 3748                     UMaine                                           study
## 3749                     UMaine                                         subject
## 3750                     UMaine                                         summary
## 3751                     UMaine                                       tentative
## 3752                     UMaine                                            term
## 3753                     UMaine                                       textbooks
## 3754                     UMaine                                          theory
## 3755                     UMaine                                          topics
## 3756                     UMaine                                            type
## 3757                     UMaine                                          umaine
## 3758                     UMaine                                        uploaded
## 3759                     UMaine                                          values
## 3760                     UMaine                                      violations
## 3761                     UMaine                                     visualizing
## 3762                     UMaine                                           walks
## 3763                     UMaine                                         website
## 3764                     UMaine                                           weeks
## 3765                     UMaine                                           world
## 3766                     UMaine                                          yasaei
## 3767               USouthampton                                     application
## 3768               USouthampton                                      collection
## 3769               USouthampton                                         contact
## 3770               USouthampton                                            copy
## 3771               USouthampton                                            core
## 3772               USouthampton                                           cover
## 3773               USouthampton                                        crawling
## 3774               USouthampton                                       databases
## 3775               USouthampton                                        existing
## 3776               USouthampton                                         include
## 3777               USouthampton                                     information
## 3778               USouthampton                                        learning
## 3779               USouthampton                                           level
## 3780               USouthampton                                       mapreduce
## 3781               USouthampton                                         methods
## 3782               USouthampton                                          module
## 3783               USouthampton                                      objectives
## 3784               USouthampton                                     performance
## 3785               USouthampton                                        pipeline
## 3786               USouthampton                                        pitfalls
## 3787               USouthampton                                      prospectus
## 3788               USouthampton                                        sampling
## 3789               USouthampton                                     statistical
## 3790               USouthampton                                         toolkit
## 3791               USouthampton                                   visualization
## 3792                   UToronto                                  accommodations
## 3793                   UToronto                                          action
## 3794                   UToronto                                         algebra
## 3795                   UToronto                                          attend
## 3796                   UToronto                                          campus
## 3797                   UToronto                                            code
## 3798                   UToronto                                      continuous
## 3799                   UToronto                                          create
## 3800                   UToronto                                     environment
## 3801                   UToronto                                          equity
## 3802                   UToronto                                             esl
## 3803                   UToronto                                      experience
## 3804                   UToronto                                           final
## 3805                   UToronto                                     fundamental
## 3806                   UToronto                                       inclusive
## 3807                   UToronto                                          matrix
## 3808                   UToronto                                          mental
## 3809                   UToronto                                          online
## 3810                   UToronto                                    optimization
## 3811                   UToronto                                        personal
## 3812                   UToronto                                           range
## 3813                   UToronto                                  responsibility
## 3814                   UToronto                                          review
## 3815                   UToronto                                         science
## 3816                   UToronto                                        services
## 3817                   UToronto                                           start
## 3818                   UToronto                                      statistics
## 3819                   UToronto                                       student's
## 3820                   UToronto                                       submitted
## 3821                   UToronto                                         support
## 3822                   UToronto                                     utoronto.ca
## 3823                   UToronto                                      wednesdays
## 3824                   UToronto                                            week
## 3825                   UToronto                     www.studentlife.utoronto.ca
## 3826                      UUtah                                             2nd
## 3827                      UUtah                                        accepted
## 3828                      UUtah                                          access
## 3829                      UUtah                                     accommodate
## 3830                      UUtah                                     acknowledge
## 3831                      UUtah                                         acquire
## 3832                      UUtah                                        addition
## 3833                      UUtah                                        affected
## 3834                      UUtah                                             age
## 3835                      UUtah                                             aid
## 3836                      UUtah                                          amount
## 3837                      UUtah                                       announced
## 3838                      UUtah                                         anxiety
## 3839                      UUtah                                            apis
## 3840                      UUtah                                        approval
## 3841                      UUtah                                        assessed
## 3842                      UUtah                                        assigned
## 3843                      UUtah                                        aurélien
## 3844                      UUtah                                          author
## 3845                      UUtah                                   automatically
## 3846                      UUtah                                           aware
## 3847                      UUtah                                           broad
## 3848                      UUtah                                           build
## 3849                      UUtah                                             cda
## 3850                      UUtah                                        cheating
## 3851                      UUtah                                           check
## 3852                      UUtah                                         classes
## 3853                      UUtah                                           clean
## 3854                      UUtah                                      clustering
## 3855                      UUtah                                   collaboration
## 3856                      UUtah                                      components
## 3857                      UUtah                                    confidential
## 3858                      UUtah                                         consult
## 3859                      UUtah                                            cops
## 3860                      UUtah                                            copy
## 3861                      UUtah                                       copyright
## 3862                      UUtah                                           couid
## 3863                      UUtah                                          create
## 3864                      UUtah                                         credits
## 3865                      UUtah                                        criteria
## 3866                      UUtah                                              cs
## 3867                      UUtah                                           dates
## 3868                      UUtah                                        deadline
## 3869                      UUtah                                        decision
## 3870                      UUtah                                       decisions
## 3871                      UUtah                                      department
## 3872                      UUtah                                      depression
## 3873                      UUtah                                        designed
## 3874                      UUtah                                       determine
## 3875                      UUtah                                  dimensionality
## 3876                      UUtah                                    disabilities
## 3877                      UUtah                                         discuss
## 3878                      UUtah                                        doctor's
## 3879                      UUtah                                           doubt
## 3880                      UUtah                                            drop
## 3881                      UUtah                                              ed
## 3882                      UUtah                                         edition
## 3883                      UUtah                                          effort
## 3884                      UUtah                                     emergencies
## 3885                      UUtah                                      encouraged
## 3886                      UUtah                                     environment
## 3887                      UUtah                                           equal
## 3888                      UUtah                                       etiquette
## 3889                      UUtah                                        examples
## 3890                      UUtah                                       exercises
## 3891                      UUtah                                      experience
## 3892                      UUtah                                     extenuating
## 3893                      UUtah                                         factors
## 3894                      UUtah                                            fair
## 3895                      UUtah                                     familiarize
## 3896                      UUtah                                        features
## 3897                      UUtah                                           files
## 3898                      UUtah                                           final
## 3899                      UUtah                                           found
## 3900                      UUtah                                            goal
## 3901                      UUtah                                          graded
## 3902                      UUtah                                           guide
## 3903                      UUtah                                           géron
## 3904                      UUtah                                        handbook
## 3905                      UUtah                                         helpful
## 3906                      UUtah                                    holistically
## 3907                      UUtah                                        identity
## 3908                      UUtah                                          images
## 3909                      UUtah                                     immigration
## 3910                      UUtah                                   inappropriate
## 3911                      UUtah                                         include
## 3912                      UUtah                                    instructions
## 3913                      UUtah                                     intelligent
## 3914                      UUtah                                          intent
## 3915                      UUtah                                       interfere
## 3916                      UUtah                                    introductory
## 3917                      UUtah                                         ipython
## 3918                      UUtah                                              ix
## 3919                      UUtah                                         jupyter
## 3920                      UUtah                                           kinds
## 3921                      UUtah                                         lecture
## 3922                      UUtah                                         library
## 3923                      UUtah                                         license
## 3924                      UUtah                                            list
## 3925                      UUtah                                        logistic
## 3926                      UUtah                                            loss
## 3927                      UUtah                                          lowest
## 3928                      UUtah                                        machines
## 3929                      UUtah                                           major
## 3930                      UUtah                                     mathematics
## 3931                      UUtah                                        mckinney
## 3932                      UUtah                                           messy
## 3933                      UUtah                                       milestone
## 3934                      UUtah                                          mining
## 3935                      UUtah                                          modify
## 3936                      UUtah                                         nearest
## 3937                      UUtah                                       neighbors
## 3938                      UUtah                                         network
## 3939                      UUtah                                            note
## 3940                      UUtah                                           numpy
## 3941                      UUtah                                    occasionally
## 3942                      UUtah                                          offers
## 3943                      UUtah                                           olpin
## 3944                      UUtah                                        original
## 3945                      UUtah                                        outcomes
## 3946                      UUtah                                            path
## 3947                      UUtah                                            peer
## 3948                      UUtah                                          people
## 3949                      UUtah                                         perform
## 3950                      UUtah                                     performance
## 3951                      UUtah                                          police
## 3952                      UUtah                                          posted
## 3953                      UUtah                                           power
## 3954                      UUtah                                        practice
## 3955                      UUtah                                   prerequisites
## 3956                      UUtah                                       principle
## 3957                      UUtah                                         process
## 3958                      UUtah                                      processing
## 3959                      UUtah                                    professional
## 3960                      UUtah                                     programmers
## 3961                      UUtah                                        proposal
## 3962                      UUtah                                       protected
## 3963                      UUtah                                            race
## 3964                      UUtah                                           range
## 3965                      UUtah                                         reading
## 3966                      UUtah                                        readings
## 3967                      UUtah                                          reason
## 3968                      UUtah                                     recommended
## 3969                      UUtah                                       reduction
## 3970                      UUtah                                         regrade
## 3971                      UUtah                                       regrading
## 3972                      UUtah                                        relevant
## 3973                      UUtah                                        religion
## 3974                      UUtah                                    repositories
## 3975                      UUtah                                      repository
## 3976                      UUtah                                         request
## 3977                      UUtah                                        requests
## 3978                      UUtah                                        required
## 3979                      UUtah                                          review
## 3980                      UUtah                                           scale
## 3981                      UUtah                                          school
## 3982                      UUtah                                        scraping
## 3983                      UUtah                                           short
## 3984                      UUtah                                     significant
## 3985                      UUtah                                         similar
## 3986                      UUtah                                           solve
## 3987                      UUtah                                        starting
## 3988                      UUtah                                          stated
## 3989                      UUtah                                     statistical
## 3990                      UUtah                                      structures
## 3991                      UUtah                                       student's
## 3992                      UUtah                         studentaffairs.utah.edu
## 3993                      UUtah                                        syllabus
## 3994                      UUtah                                         systems
## 3995                      UUtah                                          taught
## 3996                      UUtah                                            test
## 3997                      UUtah                                            text
## 3998                      UUtah                                       textbooks
## 3999                      UUtah                                          topics
## 4000                      UUtah                                           total
## 4001                      UUtah                                           trees
## 4002                      UUtah                                   undergraduate
## 4003                      UUtah                                      understand
## 4004                      UUtah                                   understanding
## 4005                      UUtah                                    undocumented
## 4006                      UUtah                                          values
## 4007                      UUtah                                          vector
## 4008                      UUtah                                         version
## 4009                      UUtah                                        versions
## 4010                      UUtah                                        veterans
## 4011                      UUtah                                             web
## 4012                      UUtah                                             wes
## 4013                      UUtah                                            zoom
## 4014                    UVA_SDS                                      activities
## 4015                    UVA_SDS                                      additional
## 4016                    UVA_SDS                                         advance
## 4017                    UVA_SDS                                              ai
## 4018                    UVA_SDS                                          alonzi
## 4019                    UVA_SDS                                        analysis
## 4020                    UVA_SDS                                      articulate
## 4021                    UVA_SDS                                          aspect
## 4022                    UVA_SDS                                       assistant
## 4023                    UVA_SDS                                      categories
## 4024                    UVA_SDS                                          center
## 4025                    UVA_SDS                                        centered
## 4026                    UVA_SDS                                          charts
## 4027                    UVA_SDS                                         collect
## 4028                    UVA_SDS                                   communication
## 4029                    UVA_SDS                                      components
## 4030                    UVA_SDS                                        computer
## 4031                    UVA_SDS                                        concepts
## 4032                    UVA_SDS                                         contact
## 4033                    UVA_SDS                                        cummings
## 4034                    UVA_SDS                                            date
## 4035                    UVA_SDS                                       decisions
## 4036                    UVA_SDS                                          define
## 4037                    UVA_SDS                                     destruction
## 4038                    UVA_SDS                                        director
## 4039                    UVA_SDS                                    disabilities
## 4040                    UVA_SDS                                         discord
## 4041                    UVA_SDS                                            draw
## 4042                    UVA_SDS                                          driven
## 4043                    UVA_SDS                                        emerging
## 4044                    UVA_SDS                                     engineering
## 4045                    UVA_SDS                                           essay
## 4046                    UVA_SDS                                         excited
## 4047                    UVA_SDS                                       extremely
## 4048                    UVA_SDS                                         forelle
## 4049                    UVA_SDS                                         friedel
## 4050                    UVA_SDS                                          gobble
## 4051                    UVA_SDS                                             gpu
## 4052                    UVA_SDS                                        identify
## 4053                    UVA_SDS                                           leave
## 4054                    UVA_SDS                                           level
## 4055                    UVA_SDS                                             lie
## 4056                    UVA_SDS                                            live
## 4057                    UVA_SDS                                             lot
## 4058                    UVA_SDS                                         machine
## 4059                    UVA_SDS                                           magee
## 4060                    UVA_SDS                                         mastery
## 4061                    UVA_SDS                                        material
## 4062                    UVA_SDS                                       materials
## 4063                    UVA_SDS                                            math
## 4064                    UVA_SDS                                           model
## 4065                    UVA_SDS                                              ms
## 4066                    UVA_SDS                                            note
## 4067                    UVA_SDS                                         o'brien
## 4068                    UVA_SDS                                        official
## 4069                    UVA_SDS                                     opportunity
## 4070                    UVA_SDS                                        overview
## 4071                    UVA_SDS                                          people
## 4072                    UVA_SDS                                        personal
## 4073                    UVA_SDS                                          posted
## 4074                    UVA_SDS                                          python
## 4075                    UVA_SDS                                        readings
## 4076                    UVA_SDS                                            real
## 4077                    UVA_SDS                                         reflect
## 4078                    UVA_SDS                                            reia
## 4079                    UVA_SDS                                          review
## 4080                    UVA_SDS                                          rubric
## 4081                    UVA_SDS                                         section
## 4082                    UVA_SDS                                           short
## 4083                    UVA_SDS                                        software
## 4084                    UVA_SDS                                  specifications
## 4085                    UVA_SDS                                          submit
## 4086                    UVA_SDS                                          taking
## 4087                    UVA_SDS                                            term
## 4088                    UVA_SDS                                           tools
## 4089                    UVA_SDS                                            type
## 4090                    UVA_SDS                                          videos
## 4091                    UVA_SDS                                    virginia.edu
## 4092                    UVA_SDS                                          visual
## 4093                    UVA_SDS                                         weapons
## 4094                    UVA_SDS                                          wright
## 4095                    UVA_SDS                                         written
## 4096                    UVA_SDS                     www.definingdatascience.com
## 4097                    UVA_SDS                                www.virginia.edu
## 4098                   UVA_Stat                                      accessible
## 4099                   UVA_Stat                                        addition
## 4100                   UVA_Stat                                           based
## 4101                   UVA_Stat                                             bit
## 4102                   UVA_Stat                                           check
## 4103                   UVA_Stat                                        complete
## 4104                   UVA_Stat                                      consulting
## 4105                   UVA_Stat                                            copy
## 4106                   UVA_Stat                                          credit
## 4107                   UVA_Stat                                         discuss
## 4108                   UVA_Stat                                     distributed
## 4109                   UVA_Stat                                      experience
## 4110                   UVA_Stat                                         failing
## 4111                   UVA_Stat                                           found
## 4112                   UVA_Stat                                            half
## 4113                   UVA_Stat                                            hall
## 4114                   UVA_Stat                                          hidden
## 4115                   UVA_Stat                                       homeworks
## 4116                   UVA_Stat                                      instructor
## 4117                   UVA_Stat                                    introduction
## 4118                   UVA_Stat                                             lab
## 4119                   UVA_Stat                                            lock
## 4120                   UVA_Stat                                         meeting
## 4121                   UVA_Stat                                        modeling
## 4122                   UVA_Stat                                       notebooks
## 4123                   UVA_Stat                                          person
## 4124                   UVA_Stat                                           posts
## 4125                   UVA_Stat                                             pre
## 4126                   UVA_Stat                                     programming
## 4127                   UVA_Stat                                        projects
## 4128                   UVA_Stat                                        relating
## 4129                   UVA_Stat                                         respond
## 4130                   UVA_Stat                                             run
## 4131                   UVA_Stat                                         science
## 4132                   UVA_Stat                                      techniques
## 4133                   UVA_Stat                                           times
## 4134                   UVA_Stat                                      university
## 4135                   UVA_Stat                                        websites
## 4136                   UVA_Stat                                           write
## 4137                   UVA_Stat                                         written
## 4138                   UVA_Stat                                            zoom
## 4139                UWashington                                           based
## 4140                UWashington                                      challenges
## 4141                UWashington                                             day
## 4142                UWashington                                      discussion
## 4143                UWashington                                      evaluation
## 4144                UWashington                                           extra
## 4145                UWashington                                         leading
## 4146                UWashington                                            maas
## 4147                UWashington                                          result
## 4148                UWashington                                           score
## 4149                UWashington                                        sections
## 4150                UWashington                                            sets
## 4151                UWashington                                         student
## 4152     UWisc_Madison_Modeling                                             aut
## 4153     UWisc_Madison_Modeling                                          canvas
## 4154     UWisc_Madison_Modeling                                        cisewski
## 4155     UWisc_Madison_Modeling                                            code
## 4156     UWisc_Madison_Modeling                                    construction
## 4157     UWisc_Madison_Modeling                                     environment
## 4158     UWisc_Madison_Modeling                                     exploration
## 4159     UWisc_Madison_Modeling                                       graphical
## 4160     UWisc_Madison_Modeling                                            home
## 4161     UWisc_Madison_Modeling                                            html
## 4162     UWisc_Madison_Modeling                                      integrated
## 4163     UWisc_Madison_Modeling                                           jessi
## 4164     UWisc_Madison_Modeling                                            kehe
## 4165     UWisc_Madison_Modeling                                             lab
## 4166     UWisc_Madison_Modeling                                           learn
## 4167     UWisc_Madison_Modeling                                         methods
## 4168     UWisc_Madison_Modeling                                         midterm
## 4169     UWisc_Madison_Modeling                                          models
## 4170     UWisc_Madison_Modeling                                           notes
## 4171     UWisc_Madison_Modeling                                     probability
## 4172     UWisc_Madison_Modeling                                         provide
## 4173     UWisc_Madison_Modeling                                    publications
## 4174     UWisc_Madison_Modeling                                            quiz
## 4175     UWisc_Madison_Modeling                                          random
## 4176     UWisc_Madison_Modeling                                      regression
## 4177     UWisc_Madison_Modeling                                          report
## 4178     UWisc_Madison_Modeling                                        research
## 4179     UWisc_Madison_Modeling                                           short
## 4180     UWisc_Madison_Modeling                                         sources
## 4181     UWisc_Madison_Modeling                                         stat240
## 4182     UWisc_Madison_Modeling                                         studies
## 4183     UWisc_Madison_Modeling                                        teaching
## 4184     UWisc_Madison_Modeling                                       wrangling
## 4185  UWisc_Madison_Programming                                      acceptable
## 4186  UWisc_Madison_Programming                                        accepted
## 4187  UWisc_Madison_Programming                                     accommodate
## 4188  UWisc_Madison_Programming                                          action
## 4189  UWisc_Madison_Programming                                       additions
## 4190  UWisc_Madison_Programming                                              al
## 4191  UWisc_Madison_Programming                                          answer
## 4192  UWisc_Madison_Programming                                         applied
## 4193  UWisc_Madison_Programming                                           apply
## 4194  UWisc_Madison_Programming                                        arriving
## 4195  UWisc_Madison_Programming                                       automated
## 4196  UWisc_Madison_Programming                                   automatically
## 4197  UWisc_Madison_Programming                                      background
## 4198  UWisc_Madison_Programming                                            bank
## 4199  UWisc_Madison_Programming                                          behalf
## 4200  UWisc_Madison_Programming                                          called
## 4201  UWisc_Madison_Programming                                          center
## 4202  UWisc_Madison_Programming                                            cite
## 4203  UWisc_Madison_Programming                                          citing
## 4204  UWisc_Madison_Programming                                         classes
## 4205  UWisc_Madison_Programming                                          closed
## 4206  UWisc_Madison_Programming                                          coding
## 4207  UWisc_Madison_Programming                                         comment
## 4208  UWisc_Madison_Programming                                          commit
## 4209  UWisc_Madison_Programming                                          common
## 4210  UWisc_Madison_Programming                                       community
## 4211  UWisc_Madison_Programming                                       component
## 4212  UWisc_Madison_Programming                                        concepts
## 4213  UWisc_Madison_Programming                                      considered
## 4214  UWisc_Madison_Programming                                         contact
## 4215  UWisc_Madison_Programming                                        creating
## 4216  UWisc_Madison_Programming                                        deadline
## 4217  UWisc_Madison_Programming                                          direct
## 4218  UWisc_Madison_Programming                                     distributed
## 4219  UWisc_Madison_Programming                                        droppped
## 4220  UWisc_Madison_Programming                                              e1
## 4221  UWisc_Madison_Programming                                              e2
## 4222  UWisc_Madison_Programming                                              e3
## 4223  UWisc_Madison_Programming                                       education
## 4224  UWisc_Madison_Programming                                     educational
## 4225  UWisc_Madison_Programming                                          effort
## 4226  UWisc_Madison_Programming                                     emergencies
## 4227  UWisc_Madison_Programming                                       encourage
## 4228  UWisc_Madison_Programming                                      engagement
## 4229  UWisc_Madison_Programming                                        enrolled
## 4230  UWisc_Madison_Programming                                        expected
## 4231  UWisc_Madison_Programming                                      experience
## 4232  UWisc_Madison_Programming                                         failure
## 4233  UWisc_Madison_Programming                                            file
## 4234  UWisc_Madison_Programming                                           focus
## 4235  UWisc_Madison_Programming                                          follow
## 4236  UWisc_Madison_Programming                                            form
## 4237  UWisc_Madison_Programming                                          giving
## 4238  UWisc_Madison_Programming                                            hall
## 4239  UWisc_Madison_Programming                                          happen
## 4240  UWisc_Madison_Programming                                         helping
## 4241  UWisc_Madison_Programming                                            hour
## 4242  UWisc_Madison_Programming                                             i.e
## 4243  UWisc_Madison_Programming                                           ideas
## 4244  UWisc_Madison_Programming                                        incident
## 4245  UWisc_Madison_Programming                                         include
## 4246  UWisc_Madison_Programming                                         install
## 4247  UWisc_Madison_Programming                                    instructions
## 4248  UWisc_Madison_Programming                                       integrity
## 4249  UWisc_Madison_Programming                                    introduction
## 4250  UWisc_Madison_Programming                                         kuemmel
## 4251  UWisc_Madison_Programming                                          letter
## 4252  UWisc_Madison_Programming                                          listed
## 4253  UWisc_Madison_Programming                                        location
## 4254  UWisc_Madison_Programming                                             lot
## 4255  UWisc_Madison_Programming                                             mac
## 4256  UWisc_Madison_Programming                                          majors
## 4257  UWisc_Madison_Programming                                          matter
## 4258  UWisc_Madison_Programming                                        mcburney
## 4259  UWisc_Madison_Programming                                           means
## 4260  UWisc_Madison_Programming                                            note
## 4261  UWisc_Madison_Programming                                           notes
## 4262  UWisc_Madison_Programming                                        numbered
## 4263  UWisc_Madison_Programming                                              os
## 4264  UWisc_Madison_Programming                                             p13
## 4265  UWisc_Madison_Programming                                              p2
## 4266  UWisc_Madison_Programming                                     participate
## 4267  UWisc_Madison_Programming                                          piazza
## 4268  UWisc_Madison_Programming                                         picking
## 4269  UWisc_Madison_Programming                                            post
## 4270  UWisc_Madison_Programming                                          posted
## 4271  UWisc_Madison_Programming                                        practice
## 4272  UWisc_Madison_Programming                                     preparation
## 4273  UWisc_Madison_Programming                                      procedures
## 4274  UWisc_Madison_Programming                                      proctoring
## 4275  UWisc_Madison_Programming                                         program
## 4276  UWisc_Madison_Programming                                       providing
## 4277  UWisc_Madison_Programming                                              q1
## 4278  UWisc_Madison_Programming                                             q10
## 4279  UWisc_Madison_Programming                                        question
## 4280  UWisc_Madison_Programming                                            real
## 4281  UWisc_Madison_Programming                                      reasonable
## 4282  UWisc_Madison_Programming                                       reasoning
## 4283  UWisc_Madison_Programming                                         require
## 4284  UWisc_Madison_Programming                                     requirement
## 4285  UWisc_Madison_Programming                                        research
## 4286  UWisc_Madison_Programming                                         results
## 4287  UWisc_Madison_Programming                                          return
## 4288  UWisc_Madison_Programming                                          review
## 4289  UWisc_Madison_Programming                                          rubric
## 4290  UWisc_Madison_Programming                                            runs
## 4291  UWisc_Madison_Programming                                        scantron
## 4292  UWisc_Madison_Programming                                       scheduled
## 4293  UWisc_Madison_Programming                                             sci
## 4294  UWisc_Madison_Programming                                         section
## 4295  UWisc_Madison_Programming                                         sending
## 4296  UWisc_Madison_Programming                                      separately
## 4297  UWisc_Madison_Programming                                         sharing
## 4298  UWisc_Madison_Programming                                      similarity
## 4299  UWisc_Madison_Programming                                        snippets
## 4300  UWisc_Madison_Programming                                           solve
## 4301  UWisc_Madison_Programming                                        specific
## 4302  UWisc_Madison_Programming                               stackoverflow.com
## 4303  UWisc_Madison_Programming                                           staff
## 4304  UWisc_Madison_Programming                                          status
## 4305  UWisc_Madison_Programming                                            stay
## 4306  UWisc_Madison_Programming                                         staying
## 4307  UWisc_Madison_Programming                                       student's
## 4308  UWisc_Madison_Programming                                     submissions
## 4309  UWisc_Madison_Programming                                          submit
## 4310  UWisc_Madison_Programming                                         succeed
## 4311  UWisc_Madison_Programming                                       supported
## 4312  UWisc_Madison_Programming                                          taking
## 4313  UWisc_Madison_Programming                                            tool
## 4314  UWisc_Madison_Programming                                             top
## 4315  UWisc_Madison_Programming                                     traditional
## 4316  UWisc_Madison_Programming                                         trouble
## 4317  UWisc_Madison_Programming                                          upload
## 4318  UWisc_Madison_Programming                                         windows
## 4319  UWisc_Madison_Programming                                         writing
## 4320                 UWisconsin                                             2nd
## 4321                 UWisconsin                                          access
## 4322                 UWisconsin                                   accessibility
## 4323                 UWisconsin                                             act
## 4324                 UWisconsin                                         advised
## 4325                 UWisconsin                                             age
## 4326                 UWisconsin                                        analytic
## 4327                 UWisconsin                                         analyze
## 4328                 UWisconsin                                    applications
## 4329                 UWisconsin                                    architecture
## 4330                 UWisconsin                                        assessed
## 4331                 UWisconsin                                         attempt
## 4332                 UWisconsin                                          binary
## 4333                 UWisconsin                                           build
## 4334                 UWisconsin                                         charles
## 4335                 UWisconsin                                         cleaned
## 4336                 UWisconsin                                        cleaning
## 4337                 UWisconsin                                            code
## 4338                 UWisconsin                                   communication
## 4339                 UWisconsin                                         compare
## 4340                 UWisconsin                                       conducted
## 4341                 UWisconsin                                         copying
## 4342                 UWisconsin                                         current
## 4343                 UWisconsin                                            date
## 4344                 UWisconsin                                       davenport
## 4345                 UWisconsin                                             day
## 4346                 UWisconsin                                       deadlines
## 4347                 UWisconsin                                       decisions
## 4348                 UWisconsin                                     description
## 4349                 UWisconsin                                        detailed
## 4350                 UWisconsin                                         develop
## 4351                 UWisconsin                                         dialogs
## 4352                 UWisconsin                                    disabilities
## 4353                 UWisconsin                                           dread
## 4354                 UWisconsin                                      encourages
## 4355                 UWisconsin                                         enhance
## 4356                 UWisconsin                                      evaluation
## 4357                 UWisconsin                                    examinations
## 4358                 UWisconsin                                         execute
## 4359                 UWisconsin                                            file
## 4360                 UWisconsin                                        forecast
## 4361                 UWisconsin                                           found
## 4362                 UWisconsin                                      foundation
## 4363                 UWisconsin                                          future
## 4364                 UWisconsin                                          grades
## 4365                 UWisconsin                                           guide
## 4366                 UWisconsin                                         harvard
## 4367                 UWisconsin                                        identify
## 4368                 UWisconsin                                         improve
## 4369                 UWisconsin                                       including
## 4370                 UWisconsin                                        insights
## 4371                 UWisconsin                                    instructions
## 4372                 UWisconsin                                       integrity
## 4373                 UWisconsin                                       interview
## 4374                 UWisconsin                                            john
## 4375                 UWisconsin                                         kenneth
## 4376                 UWisconsin                                           learn
## 4377                 UWisconsin                                            line
## 4378                 UWisconsin                                         machine
## 4379                 UWisconsin                                         manning
## 4380                 UWisconsin                                        material
## 4381                 UWisconsin                                           means
## 4382                 UWisconsin                                         methods
## 4383                 UWisconsin                                        mitigate
## 4384                 UWisconsin                                           nosql
## 4385                 UWisconsin                                             of7
## 4386                 UWisconsin                                          output
## 4387                 UWisconsin                                             pdf
## 4388                 UWisconsin                                        policies
## 4389                 UWisconsin                                           posts
## 4390                 UWisconsin                                       practical
## 4391                 UWisconsin                                      predicting
## 4392                 UWisconsin                                           press
## 4393                 UWisconsin                                          primer
## 4394                 UWisconsin                                       professor
## 4395                 UWisconsin                                         program
## 4396                 UWisconsin                                         provide
## 4397                 UWisconsin                                        purchase
## 4398                 UWisconsin                                         quality
## 4399                 UWisconsin                                         receive
## 4400                 UWisconsin                                          report
## 4401                 UWisconsin                                         request
## 4402                 UWisconsin                                       resources
## 4403                 UWisconsin                                         respond
## 4404                 UWisconsin                                         results
## 4405                 UWisconsin                                          robert
## 4406                 UWisconsin                                           score
## 4407                 UWisconsin                                          series
## 4408                 UWisconsin                                        services
## 4409                 UWisconsin                                         smarter
## 4410                 UWisconsin                                       stripping
## 4411                 UWisconsin                                         student
## 4412                 UWisconsin                                          studio
## 4413                 UWisconsin                                           study
## 4414                 UWisconsin                                     submissions
## 4415                 UWisconsin                                           teach
## 4416                 UWisconsin                                      techniques
## 4417                 UWisconsin                                        thinking
## 4418                 UWisconsin                                          thomas
## 4419                 UWisconsin                                       transform
## 4420                 UWisconsin                                      university
## 4421                 UWisconsin                                        uwsp.edu
## 4422                 UWisconsin                                          vendor
## 4423                 UWisconsin                                          videos
## 4424                 UWisconsin                                  visualizations
## 4425                 UWisconsin                                          week's
## 4426                 UWisconsin                                           write
## 4427                    UZurich                                        absolute
## 4428                    UZurich                                           bayes
## 4429                    UZurich                                            bias
## 4430                    UZurich                                           books
## 4431                    UZurich                                      boundaries
## 4432                    UZurich                                        choosing
## 4433                    UZurich                                       component
## 4434                    UZurich                                   computational
## 4435                    UZurich                                        computer
## 4436                    UZurich                                      conditions
## 4437                    UZurich                                       confusion
## 4438                    UZurich                                      continuous
## 4439                    UZurich                                         contour
## 4440                    UZurich                                         covered
## 4441                    UZurich                                           cross
## 4442                    UZurich                                         dataset
## 4443                    UZurich                                        decision
## 4444                    UZurich                                   decomposition
## 4445                    UZurich                                            deep
## 4446                    UZurich                                      derivative
## 4447                    UZurich                                  dimensionality
## 4448                    UZurich                                  discriminative
## 4449                    UZurich                                       expansion
## 4450                    UZurich                                         forward
## 4451                    UZurich                                     foundations
## 4452                    UZurich                                       geometric
## 4453                    UZurich                                          global
## 4454                    UZurich                                         hessian
## 4455                    UZurich                                           hinge
## 4456                    UZurich                                  implementation
## 4457                    UZurich                                  interpretation
## 4458                    UZurich                                    introduction
## 4459                    UZurich                                         jupyter
## 4460                    UZurich                                         laplace
## 4461                    UZurich                                           layer
## 4462                    UZurich                                           local
## 4463                    UZurich                                            loss
## 4464                    UZurich                                        machines
## 4465                    UZurich                                    mathematical
## 4466                    UZurich                                     mathematics
## 4467                    UZurich                                        matrices
## 4468                    UZurich                                             mit
## 4469                    UZurich                                           multi
## 4470                    UZurich                                      multiclass
## 4471                    UZurich                                    multivariate
## 4472                    UZurich                                         pattern
## 4473                    UZurich                                      polynomial
## 4474                    UZurich                                         popular
## 4475                    UZurich                                       practical
## 4476                    UZurich                                      practicals
## 4477                    UZurich                                       precision
## 4478                    UZurich                                       principle
## 4479                    UZurich                                          python
## 4480                    UZurich                                       quadratic
## 4481                    UZurich                                             rbf
## 4482                    UZurich                                     recommended
## 4483                    UZurich                                  reconstruction
## 4484                    UZurich                                       reduction
## 4485                    UZurich                                            relu
## 4486                    UZurich                                       resources
## 4487                    UZurich                                        revision
## 4488                    UZurich                                             roc
## 4489                    UZurich                                            rule
## 4490                    UZurich                                          scikit
## 4491                    UZurich                                           scope
## 4492                    UZurich                                            semi
## 4493                    UZurich                                        sessions
## 4494                    UZurich                                            sets
## 4495                    UZurich                                        singular
## 4496                    UZurich                                         softmax
## 4497                    UZurich                                           space
## 4498                    UZurich                                        springer
## 4499                    UZurich                                         systems
## 4500                    UZurich                                           tasks
## 4501                    UZurich                                      techniques
## 4502                    UZurich                                   understanding
## 4503                    UZurich                                     universität
## 4504                    UZurich                                    unsupervised
## 4505                    UZurich                                       variables
## 4506                    UZurich                                            view
## 4507                    UZurich                                         weights
## 4508             UniSys_Georgia                                         account
## 4509             UniSys_Georgia                                      additional
## 4510             UniSys_Georgia                                           apply
## 4511             UniSys_Georgia                                       bootstrap
## 4512             UniSys_Georgia                                     categorical
## 4513             UniSys_Georgia                                        cleaning
## 4514             UniSys_Georgia                                     communicate
## 4515             UniSys_Georgia                                        decision
## 4516             UniSys_Georgia                                         develop
## 4517             UniSys_Georgia                                   distributions
## 4518             UniSys_Georgia                                         ethical
## 4519             UniSys_Georgia                                     experiments
## 4520             UniSys_Georgia                                         explain
## 4521             UniSys_Georgia                                        findings
## 4522             UniSys_Georgia                                     information
## 4523             UniSys_Georgia                                       intervals
## 4524             UniSys_Georgia                                    introduction
## 4525             UniSys_Georgia                                          issues
## 4526             UniSys_Georgia                                        learning
## 4527             UniSys_Georgia                                           legal
## 4528             UniSys_Georgia                                          levels
## 4529             UniSys_Georgia                                         limited
## 4530             UniSys_Georgia                                          models
## 4531             UniSys_Georgia                                           modes
## 4532             UniSys_Georgia                                       numerical
## 4533             UniSys_Georgia                                            role
## 4534             UniSys_Georgia                                         society
## 4535             UniSys_Georgia                                         sources
## 4536             UniSys_Georgia                                     statistical
## 4537             UniSys_Georgia                                       summarize
## 4538             UniSys_Georgia                                     surrounding
## 4539             UniSys_Georgia                                      techniques
## 4540             UniSys_Georgia                                      technology
## 4541             UniSys_Georgia                                           tools
## 4542             UniSys_Georgia                                          topics
## 4543             UniSys_Georgia                                           types
## 4544             UniSys_Georgia                                      univariate
## 4545           Washington_State                                     algorithmic
## 4546           Washington_State                                        analytic
## 4547           Washington_State                                            apis
## 4548           Washington_State                                    applications
## 4549           Washington_State                                     appointment
## 4550           Washington_State                                         authors
## 4551           Washington_State                                           books
## 4552           Washington_State                                           build
## 4553           Washington_State                                        business
## 4554           Washington_State                                        calendar
## 4555           Washington_State                                       cambridge
## 4556           Washington_State                                           carry
## 4557           Washington_State                                         choices
## 4558           Washington_State                                         complex
## 4559           Washington_State                                      components
## 4560           Washington_State                                         consult
## 4561           Washington_State                                            cpts
## 4562           Washington_State                                          create
## 4563           Washington_State                                        datasets
## 4564           Washington_State                                       deadlines
## 4565           Washington_State                                        decision
## 4566           Washington_State                                   decomposition
## 4567           Washington_State                                        describe
## 4568           Washington_State                                  dimensionality
## 4569           Washington_State                                     discussions
## 4570           Washington_State                                   distributions
## 4571           Washington_State                                             dot
## 4572           Washington_State                                         edition
## 4573           Washington_State                                            eecs
## 4574           Washington_State                                      encouraged
## 4575           Washington_State                                          engine
## 4576           Washington_State                                     engineering
## 4577           Washington_State                                        exercise
## 4578           Washington_State                                        existing
## 4579           Washington_State                                        expected
## 4580           Washington_State                                         filters
## 4581           Washington_State                                         forests
## 4582           Washington_State                                     foundations
## 4583           Washington_State                                            free
## 4584           Washington_State                                     fundamental
## 4585           Washington_State                                         grading
## 4586           Washington_State                                            hype
## 4587           Washington_State                                       including
## 4588           Washington_State                                       inference
## 4589           Washington_State                                     ingredients
## 4590           Washington_State                                      instructor
## 4591           Washington_State                                     integration
## 4592           Washington_State                                    introduction
## 4593           Washington_State                                          issues
## 4594           Washington_State                                       knowledge
## 4595           Washington_State                                           learn
## 4596           Washington_State                                      management
## 4597           Washington_State                                     mathematics
## 4598           Washington_State                                         missing
## 4599           Washington_State                                           model
## 4600           Washington_State                                      motivating
## 4601           Washington_State                                         nearest
## 4602           Washington_State                                       neighbors
## 4603           Washington_State                                            page
## 4604           Washington_State                                           plots
## 4605           Washington_State                                        policies
## 4606           Washington_State                                            poor
## 4607           Washington_State                                          posted
## 4608           Washington_State                                      predictive
## 4609           Washington_State                                           press
## 4610           Washington_State                                       principal
## 4611           Washington_State                                      principles
## 4612           Washington_State                                         privacy
## 4613           Washington_State                                        projects
## 4614           Washington_State                                          random
## 4615           Washington_State                                         reading
## 4616           Washington_State                                            real
## 4617           Washington_State                                      reasonable
## 4618           Washington_State                                       reduction
## 4619           Washington_State                                       resources
## 4620           Washington_State                                        schedule
## 4621           Washington_State                                       scientist
## 4622           Washington_State                                        semester
## 4623           Washington_State                                             set
## 4624           Washington_State                                            sets
## 4625           Washington_State                                        singular
## 4626           Washington_State                                          social
## 4627           Washington_State                                        standard
## 4628           Washington_State                                       standards
## 4629           Washington_State                                     submissions
## 4630           Washington_State                                         summary
## 4631           Washington_State                                          system
## 4632           Washington_State                                         systems
## 4633           Washington_State                                            talk
## 4634           Washington_State                                           teams
## 4635           Washington_State                                      techniques
## 4636           Washington_State                                           times
## 4637           Washington_State                                          topics
## 4638           Washington_State                                           trees
## 4639           Washington_State                                            user
## 4640           Washington_State                                           visit
## 4641           Washington_State                                      washington
## 4642           Washington_State                                         weather
## 4643           Washington_State                                        wrappers
## 4644           Washington_State                                             wsu
## 4645           Washington_State                                www.eecs.wsu.edu
## 4646           William_and_Mary                                          0162tu
## 4647           William_and_Mary                                7cc0kabvzpnfvkyv
## 4648           William_and_Mary                                          access
## 4649           William_and_Mary                                   accommodation
## 4650           William_and_Mary                                        assigned
## 4651           William_and_Mary                                           based
## 4652           William_and_Mary                                           basic
## 4653           William_and_Mary                                        building
## 4654           William_and_Mary                                          choose
## 4655           William_and_Mary                                    conferencing
## 4656           William_and_Mary                                   convolutional
## 4657           William_and_Mary                                           covid
## 4658           William_and_Mary                               covidtracking.com
## 4659           William_and_Mary                                           cross
## 4660           William_and_Mary                                            csci
## 4661           William_and_Mary                                           davis
## 4662           William_and_Mary                                        delivery
## 4663           William_and_Mary                                         desktop
## 4664           William_and_Mary                                       determine
## 4665           William_and_Mary                                      difference
## 4666           William_and_Mary                                  dimensionality
## 4667           William_and_Mary                                              ds
## 4668           William_and_Mary                                         elastic
## 4669           William_and_Mary                                        emphasis
## 4670           William_and_Mary                                      encouraged
## 4671           William_and_Mary                                       exercises
## 4672           William_and_Mary                                            fold
## 4673           William_and_Mary                                         forests
## 4674           William_and_Mary                                  getlettergrade
## 4675           William_and_Mary                                            goto
## 4676           William_and_Mary                                         grading
## 4677           William_and_Mary                                       including
## 4678           William_and_Mary                                         instant
## 4679           William_and_Mary                                           intro
## 4680           William_and_Mary                                             lab
## 4681           William_and_Mary                                           lasso
## 4682           William_and_Mary                                         learned
## 4683           William_and_Mary                                         lecture
## 4684           William_and_Mary                                        lectures
## 4685           William_and_Mary                                          linear
## 4686           William_and_Mary                                           links
## 4687           William_and_Mary                                  mailto:twdavis
## 4688           William_and_Mary                                            mary
## 4689           William_and_Mary                                        material
## 4690           William_and_Mary                                       materials
## 4691           William_and_Mary                                           means
## 4692           William_and_Mary                                        meetings
## 4693           William_and_Mary                                        midnight
## 4694           William_and_Mary                                         missing
## 4695           William_and_Mary                                          models
## 4696           William_and_Mary                                      multilayer
## 4697           William_and_Mary                                             net
## 4698           William_and_Mary                                         network
## 4699           William_and_Mary                                        nooks.in
## 4700           William_and_Mary                                   notifications
## 4701           William_and_Mary                                         offices
## 4702           William_and_Mary                                        ordinary
## 4703           William_and_Mary                                        overview
## 4704           William_and_Mary                                   participation
## 4705           William_and_Mary                                             pca
## 4706           William_and_Mary                                      percentage
## 4707           William_and_Mary                                      perceptron
## 4708           William_and_Mary                                        physical
## 4709           William_and_Mary                                          posted
## 4710           William_and_Mary                                        practice
## 4711           William_and_Mary                                     preliminary
## 4712           William_and_Mary                                     programming
## 4713           William_and_Mary                                        projects
## 4714           William_and_Mary                                             pwd
## 4715           William_and_Mary                                       reduction
## 4716           William_and_Mary                                  regularization
## 4717           William_and_Mary                                        remotely
## 4718           William_and_Mary                                        required
## 4719           William_and_Mary                                         results
## 4720           William_and_Mary                                           ridge
## 4721           William_and_Mary                                             sas
## 4722           William_and_Mary                                          scikit
## 4723           William_and_Mary                                           score
## 4724           William_and_Mary                                        sections
## 4725           William_and_Mary                                        services
## 4726           William_and_Mary                                            sets
## 4727           William_and_Mary                                         sharing
## 4728           William_and_Mary                                         squares
## 4729           William_and_Mary                                           staff
## 4730           William_and_Mary                                      statistics
## 4731           William_and_Mary                                           steps
## 4732           William_and_Mary                                         student
## 4733           William_and_Mary                                     substantial
## 4734           William_and_Mary                                         summary
## 4735           William_and_Mary                                          sunday
## 4736           William_and_Mary                                        syllabus
## 4737           William_and_Mary                                        textbook
## 4738           William_and_Mary                                              ti
## 4739           William_and_Mary                                            titi
## 4740           William_and_Mary                                           trees
## 4741           William_and_Mary                                            tsne
## 4742           William_and_Mary                                         twdavis
## 4743           William_and_Mary                                   understanding
## 4744           William_and_Mary                                        validity
## 4745           William_and_Mary                                         version
## 4746           William_and_Mary                                  visualizations
## 4747           William_and_Mary                                         website
## 4748           William_and_Mary                                         william
## 4749           William_and_Mary                                              wm
## 4750           William_and_Mary                                    wm.github.io
## 4751           William_and_Mary                                           write
## 4752           William_and_Mary                                www.anaconda.com
## 4753           William_and_Mary                                      www.wm.edu
## 4754                        ASU                                            10th
## 4755                        ASU                                             2nd
## 4756                        ASU                                             8th
## 4757                        ASU                               academicintegrity
## 4758                        ASU                                        accepted
## 4759                        ASU                                      activities
## 4760                        ASU                                            acts
## 4761                        ASU                                         addenda
## 4762                        ASU                                         address
## 4763                        ASU                                       addressed
## 4764                        ASU                                        adjusted
## 4765                        ASU                                             age
## 4766                        ASU                                          agents
## 4767                        ASU                                      algorithms
## 4768                        ASU                                         aliases
## 4769                        ASU                                     allegations
## 4770                        ASU                                         alleged
## 4771                        ASU                                   announcements
## 4772                        ASU                                         appears
## 4773                        ASU                                         applies
## 4774                        ASU                                     appointment
## 4775                        ASU                                         arizona
## 4776                        ASU                                          arrive
## 4777                        ASU                                       assaulted
## 4778                        ASU                                        assigned
## 4779                        ASU                                         awarded
## 4780                        ASU                                           aware
## 4781                        ASU                                          axioms
## 4782                        ASU                                           basic
## 4783                        ASU                                       beginning
## 4784                        ASU                                        believes
## 4785                        ASU                                        benefits
## 4786                        ASU                                           books
## 4787                        ASU                                      borderline
## 4788                        ASU                                        building
## 4789                        ASU                                        calculus
## 4790                        ASU                                            card
## 4791                        ASU                                         cengage
## 4792                        ASU                                         central
## 4793                        ASU                                           chain
## 4794                        ASU                                    clas.asu.edu
## 4795                        ASU                                      classrooms
## 4796                        ASU                                            code
## 4797                        ASU                                           color
## 4798                        ASU                                    combinations
## 4799                        ASU                                        comments
## 4800                        ASU                                       committed
## 4801                        ASU                                       community
## 4802                        ASU                                       completed
## 4803                        ASU                                          comply
## 4804                        ASU                                        concerns
## 4805                        ASU                                      conditions
## 4806                        ASU                                    confidential
## 4807                        ASU                                  confidentially
## 4808                        ASU                                        constant
## 4809                        ASU                                         contact
## 4810                        ASU                                       contained
## 4811                        ASU                                      continuity
## 4812                        ASU                                         contour
## 4813                        ASU                                     contractors
## 4814                        ASU                                      coordinate
## 4815                        ASU                                            core
## 4816                        ASU                                        courtesy
## 4817                        ASU                                         covered
## 4818                        ASU                                        covering
## 4819                        ASU                                           curve
## 4820                        ASU                                          dating
## 4821                        ASU                                              de
## 4822                        ASU                                          dean’s
## 4823                        ASU                                      definition
## 4824                        ASU                                      deliberate
## 4825                        ASU                                          denied
## 4826                        ASU                                         density
## 4827                        ASU                                      department
## 4828                        ASU                                      derivative
## 4829                        ASU                                     derivatives
## 4830                        ASU                                     description
## 4831                        ASU                                      determined
## 4832                        ASU                                      determines
## 4833                        ASU                               differentiability
## 4834                        ASU                                     directional
## 4835                        ASU                                      disclaimer
## 4836                        ASU                                         discuss
## 4837                        ASU                                       dismissal
## 4838                        ASU                                disqualification
## 4839                        ASU                                      distancing
## 4840                        ASU                                        document
## 4841                        ASU                                             dot
## 4842                        ASU                                              dr
## 4843                        ASU                                          eating
## 4844                        ASU                                              ed
## 4845                        ASU                                       education
## 4846                        ASU                                      eikenberry
## 4847                        ASU                                      encouraged
## 4848                        ASU                                      encourages
## 4849                        ASU                                          engage
## 4850                        ASU                                          entire
## 4851                        ASU                                     environment
## 4852                        ASU                                    eoss.asu.edu
## 4853                        ASU                                        equation
## 4854                        ASU                                    establishing
## 4855                        ASU                                      evaluation
## 4856                        ASU                                           event
## 4857                        ASU                                    examinations
## 4858                        ASU                                           exams
## 4859                        ASU                                     exceptional
## 4860                        ASU                                       excessive
## 4861                        ASU                                        excluded
## 4862                        ASU                                     exponential
## 4863                        ASU                                       expressly
## 4864                        ASU                                         extreme
## 4865                        ASU                                            faqs
## 4866                        ASU                                         federal
## 4867                        ASU                                            feel
## 4868                        ASU                                           floor
## 4869                        ASU                                            food
## 4870                        ASU                                            form
## 4871                        ASU                                         formula
## 4872                        ASU                                           found
## 4873                        ASU                                            free
## 4874                        ASU                                          friday
## 4875                        ASU                                           games
## 4876                        ASU                                         genetic
## 4877                        ASU                                          grades
## 4878                        ASU                                      guaranteed
## 4879                        ASU                                          guests
## 4880                        ASU                                       guideline
## 4881                        ASU                                            hall
## 4882                        ASU                                            heat
## 4883                        ASU                                       homeworks
## 4884                        ASU                                         honesty
## 4885                        ASU                                        identity
## 4886                        ASU                                     immediately
## 4887                        ASU                                         imposed
## 4888                        ASU                                       incidents
## 4889                        ASU                                         include
## 4890                        ASU                                       inclusion
## 4891                        ASU                                      index.html
## 4892                        ASU                                      individual
## 4893                        ASU                                      initiating
## 4894                        ASU                                     instructors
## 4895                        ASU                                           intro
## 4896                        ASU                                           james
## 4897                        ASU                                           joint
## 4898                        ASU                                         jupyter
## 4899                        ASU                                             key
## 4900                        ASU                                    laboratories
## 4901                        ASU                                      laboratory
## 4902                        ASU                                         laptops
## 4903                        ASU                                            late
## 4904                        ASU                                             law
## 4905                        ASU                                            laws
## 4906                        ASU                                           light
## 4907                        ASU                                         limited
## 4908                        ASU                                            line
## 4909                        ASU                                          linear
## 4910                        ASU                                       listening
## 4911                        ASU                                         located
## 4912                        ASU                                       locations
## 4913                        ASU                                       logistics
## 4914                        ASU                                       lognormal
## 4915                        ASU                                            loss
## 4916                        ASU                                        majority
## 4917                        ASU                                        mandated
## 4918                        ASU                                             map
## 4919                        ASU                                           marko
## 4920                        ASU                                           masks
## 4921                        ASU                                       materials
## 4922                        ASU                                 math.la.asu.edu
## 4923                        ASU                                       mathtools
## 4924                        ASU                                        matthews
## 4925                        ASU                                        mckinney
## 4926                        ASU                                           media
## 4927                        ASU                                       messaging
## 4928                        ASU                                          method
## 4929                        ASU                                         midterm
## 4930                        ASU                                           minus
## 4931                        ASU                                          modern
## 4932                        ASU                                          monday
## 4933                        ASU                                        morgan’s
## 4934                        ASU                                        multiple
## 4935                        ASU                                        national
## 4936                        ASU                                        nbgrader
## 4937                        ASU                                       newspaper
## 4938                        ASU                                          newton
## 4939                        ASU                                         noisily
## 4940                        ASU                                          normal
## 4941                        ASU                                        notebook
## 4942                        ASU                                         notions
## 4943                        ASU                                       obligated
## 4944                        ASU                                      observance
## 4945                        ASU                                     observances
## 4946                        ASU                                         offices
## 4947                        ASU                                        official
## 4948                        ASU                                        optional
## 4949                        ASU                                     orientation
## 4950                        ASU                                          origin
## 4951                        ASU                                        outcomes
## 4952                        ASU                                        o’reilly
## 4953                        ASU                                          papers
## 4954                        ASU                                         partial
## 4955                        ASU                                            path
## 4956                        ASU                                         pearson
## 4957                        ASU                                       penalties
## 4958                        ASU                                         perform
## 4959                        ASU                                     performance
## 4960                        ASU                                       permitted
## 4961                        ASU                                    permutations
## 4962                        ASU                                        personal
## 4963                        ASU                                           phone
## 4964                        ASU                                        physical
## 4965                        ASU                                          player
## 4966                        ASU                                           plots
## 4967                        ASU                                         poisson
## 4968                        ASU                                          police
## 4969                        ASU                                           posed
## 4970                        ASU                                           poses
## 4971                        ASU                                        practice
## 4972                        ASU                                       practices
## 4973                        ASU                                   prerequisites
## 4974                        ASU                                        previous
## 4975                        ASU                                           prior
## 4976                        ASU                                       privately
## 4977                        ASU                                      privileges
## 4978                        ASU                                      procedures
## 4979                        ASU                                         product
## 4980                        ASU                                         program
## 4981                        ASU                                       prohibits
## 4982                        ASU                                      properties
## 4983                        ASU                                       protected
## 4984                        ASU                                        provided
## 4985                        ASU                                       providing
## 4986                        ASU                                 provost.asu.edu
## 4987                        ASU                                             psh
## 4988                        ASU                                       qualified
## 4989                        ASU                                            race
## 4990                        ASU                                       raphson’s
## 4991                        ASU                                         reached
## 4992                        ASU                                         reading
## 4993                        ASU                                       receiving
## 4994                        ASU                                          recent
## 4995                        ASU                                         records
## 4996                        ASU                                        referred
## 4997                        ASU                                         refusal
## 4998                        ASU                                      registered
## 4999                        ASU                                    registration
## 5000                        ASU                                        relevant
## 5001                        ASU                                        religion
## 5002                        ASU                                          report
## 5003                        ASU                                        reported
## 5004                        ASU                                        reporter
## 5005                        ASU                                        requests
## 5006                        ASU                                         require
## 5007                        ASU                                        requires
## 5008                        ASU                                          reside
## 5009                        ASU                                       residence
## 5010                        ASU                                            ring
## 5011                        ASU                                         ringing
## 5012                        ASU                                            ross
## 5013                        ASU                                          roster
## 5014                        ASU                                            rule
## 5015                        ASU                                             rvs
## 5016                        ASU                                          safety
## 5017                        ASU                                           scale
## 5018                        ASU                                          scales
## 5019                        ASU                                        schedule
## 5020                        ASU                                          school
## 5021                        ASU                                        sciences
## 5022                        ASU                                         section
## 5023                        ASU                                            seek
## 5024                        ASU                                        seikenbe
## 5025                        ASU                                        services
## 5026                        ASU                                        settings
## 5027                        ASU                                        sexually
## 5028                        ASU                sexualviolenceprevention.asu.edu
## 5029                        ASU                                         sheldon
## 5030                        ASU                                     simulations
## 5031                        ASU                                            soft
## 5032                        ASU                                        specific
## 5033                        ASU                                        standard
## 5034                        ASU                                     statistical
## 5035                        ASU                                         steffen
## 5036                        ASU                              steffen.eikenberry
## 5037                        ASU                                         stewart
## 5038                        ASU                                        strictly
## 5039                        ASU                                  studentaffairs
## 5040                        ASU                                         studios
## 5041                        ASU                                         summary
## 5042                        ASU                                          system
## 5043                        ASU                                          taking
## 5044                        ASU                                         talking
## 5045                        ASU                                         tangent
## 5046                        ASU                                       tardiness
## 5047                        ASU                                        teaching
## 5048                        ASU                                           tempe
## 5049                        ASU                                       tentative
## 5050                        ASU                                            test
## 5051                        ASU                                            text
## 5052                        ASU                                        textbook
## 5053                        ASU                                       textbooks
## 5054                        ASU                                       tolerated
## 5055                        ASU                                           total
## 5056                        ASU                                    transactions
## 5057                        ASU                                 transcendentals
## 5058                        ASU                                         treated
## 5059                        ASU                                             tty
## 5060                        ASU                                uncorrelatedness
## 5061                        ASU                                        underpin
## 5062                        ASU                                            urns
## 5063                        ASU                                          values
## 5064                        ASU                                        variance
## 5065                        ASU                                    verification
## 5066                        ASU                                         version
## 5067                        ASU                                        vertical
## 5068                        ASU                                         veteran
## 5069                        ASU                                       violation
## 5070                        ASU                                         violent
## 5071                        ASU                                           visit
## 5072                        ASU                                         wearing
## 5073                        ASU                                       weighting
## 5074                        ASU                                         welfare
## 5075                        ASU                                             wes
## 5076                        ASU                                      withdrawal
## 5077                        ASU                                        workshop
## 5078                        ASU                                            wxlr
## 5079                        ASU                                              xe
## 5080                        ASU                                            zoom
## 5081                 Boston_Uni                                            11am
## 5082                 Boston_Uni                                             2nd
## 5083                 Boston_Uni                                     acknowledge
## 5084                 Boston_Uni                                          adhere
## 5085                 Boston_Uni                                          adjust
## 5086                 Boston_Uni                                         allowed
## 5087                 Boston_Uni                                          answer
## 5088                 Boston_Uni                                        applying
## 5089                 Boston_Uni                                          arrive
## 5090                 Boston_Uni                                        arriving
## 5091                 Boston_Uni                                            arts
## 5092                 Boston_Uni                                         aspects
## 5093                 Boston_Uni                                        assigned
## 5094                 Boston_Uni                                      assistance
## 5095                 Boston_Uni                                          blocks
## 5096                 Boston_Uni                                           bonus
## 5097                 Boston_Uni                                           break
## 5098                 Boston_Uni                                          bu.edu
## 5099                 Boston_Uni                                            busy
## 5100                 Boston_Uni                                              ca
## 5101                 Boston_Uni                                        calculus
## 5102                 Boston_Uni                                        calendar
## 5103                 Boston_Uni                                       carefully
## 5104                 Boston_Uni                                         catered
## 5105                 Boston_Uni                                      centrality
## 5106                 Boston_Uni                                          chance
## 5107                 Boston_Uni                                         chances
## 5108                 Boston_Uni                                          change
## 5109                 Boston_Uni                                          choose
## 5110                 Boston_Uni                                          claims
## 5111                 Boston_Uni                                         classes
## 5112                 Boston_Uni                                      classmates
## 5113                 Boston_Uni                                      collecting
## 5114                 Boston_Uni                                      collection
## 5115                 Boston_Uni                                         college
## 5116                 Boston_Uni                                     combination
## 5117                 Boston_Uni                                          common
## 5118                 Boston_Uni                                   communicating
## 5119                 Boston_Uni                                   communication
## 5120                 Boston_Uni                                       community
## 5121                 Boston_Uni                                      compilatio
## 5122                 Boston_Uni                                   comprehensive
## 5123                 Boston_Uni                                    connectivity
## 5124                 Boston_Uni                                      considered
## 5125                 Boston_Uni                                        contents
## 5126                 Boston_Uni                                   conversations
## 5127                 Boston_Uni                                      coursework
## 5128                 Boston_Uni                                           cover
## 5129                 Boston_Uni                                      creativity
## 5130                 Boston_Uni                                         cs391e1
## 5131                 Boston_Uni                                           cs460
## 5132                 Boston_Uni                                           cs506
## 5133                 Boston_Uni                                           cs542
## 5134                 Boston_Uni                                           cs565
## 5135                 Boston_Uni                                      cumulative
## 5136                 Boston_Uni                                       databases
## 5137                 Boston_Uni                                        datasets
## 5138                 Boston_Uni                                        deadline
## 5139                 Boston_Uni                                           dealt
## 5140                 Boston_Uni                                         descent
## 5141                 Boston_Uni                                     description
## 5142                 Boston_Uni                                    descriptions
## 5143                 Boston_Uni                                       detection
## 5144                 Boston_Uni                                     dimensional
## 5145                 Boston_Uni                                  dimensionality
## 5146                 Boston_Uni                                         discuss
## 5147                 Boston_Uni                                     discussions
## 5148                 Boston_Uni                                      disruptive
## 5149                 Boston_Uni                                    distribution
## 5150                 Boston_Uni                                        document
## 5151                 Boston_Uni                                        dominate
## 5152                 Boston_Uni                                            dora
## 5153                 Boston_Uni                                           doubt
## 5154                 Boston_Uni                                            drop
## 5155                 Boston_Uni                                             e.g
## 5156                 Boston_Uni                                              e1
## 5157                 Boston_Uni                                              e2
## 5158                 Boston_Uni                                              e3
## 5159                 Boston_Uni                                         edition
## 5160                 Boston_Uni                                           edori
## 5161                 Boston_Uni                                     efficiently
## 5162                 Boston_Uni                                          eighty
## 5163                 Boston_Uni                                             ema
## 5164                 Boston_Uni                                          emails
## 5165                 Boston_Uni                                       encourage
## 5166                 Boston_Uni                                          entire
## 5167                 Boston_Uni                                           entry
## 5168                 Boston_Uni                                           erdos
## 5169                 Boston_Uni                                           error
## 5170                 Boston_Uni                                        exercise
## 5171                 Boston_Uni                                       extensive
## 5172                 Boston_Uni                                            fall
## 5173                 Boston_Uni                                        fall2019
## 5174                 Boston_Uni                                            fast
## 5175                 Boston_Uni                                          faster
## 5176                 Boston_Uni                                          fellow
## 5177                 Boston_Uni                                         fellows
## 5178                 Boston_Uni                                            fill
## 5179                 Boston_Uni                                         finding
## 5180                 Boston_Uni                                          finish
## 5181                 Boston_Uni                                           floor
## 5182                 Boston_Uni                                         flowing
## 5183                 Boston_Uni                                       forbidden
## 5184                 Boston_Uni                                             fun
## 5185                 Boston_Uni                                          github
## 5186                 Boston_Uni                                          google
## 5187                 Boston_Uni                                          graded
## 5188                 Boston_Uni                                         grading
## 5189                 Boston_Uni                                         granted
## 5190                 Boston_Uni                                            grus
## 5191                 Boston_Uni                                            hand
## 5192                 Boston_Uni                                        handling
## 5193                 Boston_Uni                                            hard
## 5194                 Boston_Uni                                          hastie
## 5195                 Boston_Uni                                           heavy
## 5196                 Boston_Uni                                          highly
## 5197                 Boston_Uni                                             hom
## 5198                 Boston_Uni                                            hour
## 5199                 Boston_Uni                                        identify
## 5200                 Boston_Uni                                 implementations
## 5201                 Boston_Uni                                      importance
## 5202                 Boston_Uni                                         include
## 5203                 Boston_Uni                                     incompletes
## 5204                 Boston_Uni                                        indexing
## 5205                 Boston_Uni                                      instructor
## 5206                 Boston_Uni                                        intended
## 5207                 Boston_Uni                                     interactive
## 5208                 Boston_Uni                                    interpreting
## 5209                 Boston_Uni                                      invaluable
## 5210                 Boston_Uni                                       involving
## 5211                 Boston_Uni                                            isbn
## 5212                 Boston_Uni                                           james
## 5213                 Boston_Uni                                            joel
## 5214                 Boston_Uni                                             kcb
## 5215                 Boston_Uni                                        language
## 5216                 Boston_Uni                                        leskovec
## 5217                 Boston_Uni                                             lin
## 5218                 Boston_Uni                                            list
## 5219                 Boston_Uni                                          listen
## 5220                 Boston_Uni                                          m6xn33
## 5221                 Boston_Uni                                              ma
## 5222                 Boston_Uni                                      management
## 5223                 Boston_Uni                                         massive
## 5224                 Boston_Uni                                    mathematical
## 5225                 Boston_Uni                                        mckinney
## 5226                 Boston_Uni                                          mcs288
## 5227                 Boston_Uni                                        measures
## 5228                 Boston_Uni                                          medium
## 5229                 Boston_Uni                                       messaging
## 5230                 Boston_Uni                                         methods
## 5231                 Boston_Uni                                          middle
## 5232                 Boston_Uni                                         minutes
## 5233                 Boston_Uni                                            miss
## 5234                 Boston_Uni                                           multi
## 5235                 Boston_Uni                                    multivariate
## 5236                 Boston_Uni                                          neatly
## 5237                 Boston_Uni                                         network
## 5238                 Boston_Uni                                        networks
## 5239                 Boston_Uni                                            node
## 5240                 Boston_Uni                                            note
## 5241                 Boston_Uni                                        november
## 5242                 Boston_Uni                                        official
## 5243                 Boston_Uni                                     opportunity
## 5244                 Boston_Uni                                          orally
## 5245                 Boston_Uni                                        pagerank
## 5246                 Boston_Uni                                    participants
## 5247                 Boston_Uni                                         penalty
## 5248                 Boston_Uni                                          period
## 5249                 Boston_Uni                                     permissible
## 5250                 Boston_Uni                                      piazza.com
## 5251                 Boston_Uni                                            plan
## 5252                 Boston_Uni                                         planned
## 5253                 Boston_Uni                                           plans
## 5254                 Boston_Uni                                         portion
## 5255                 Boston_Uni                                         precise
## 5256                 Boston_Uni                                      prediction
## 5257                 Boston_Uni                                      preferable
## 5258                 Boston_Uni                                       preferred
## 5259                 Boston_Uni                                     preparation
## 5260                 Boston_Uni                                   prerequisites
## 5261                 Boston_Uni                                      principles
## 5262                 Boston_Uni                                     probability
## 5263                 Boston_Uni                                            prof
## 5264                 Boston_Uni                                          proofs
## 5265                 Boston_Uni                                         provide
## 5266                 Boston_Uni                                      pseudocode
## 5267                 Boston_Uni                                       rajaraman
## 5268                 Boston_Uni                                         ranking
## 5269                 Boston_Uni                                            real
## 5270                 Boston_Uni                                       reduction
## 5271                 Boston_Uni                                          regard
## 5272                 Boston_Uni                                     regressions
## 5273                 Boston_Uni                                     regulations
## 5274                 Boston_Uni                                         related
## 5275                 Boston_Uni                                      relational
## 5276                 Boston_Uni                                      requesting
## 5277                 Boston_Uni                                         require
## 5278                 Boston_Uni                                       requiring
## 5279                 Boston_Uni                                       resources
## 5280                 Boston_Uni                                      respective
## 5281                 Boston_Uni                                        response
## 5282                 Boston_Uni                                     responsible
## 5283                 Boston_Uni                                         results
## 5284                 Boston_Uni                                          review
## 5285                 Boston_Uni                                       reviewing
## 5286                 Boston_Uni                                           ridge
## 5287                 Boston_Uni                                           route
## 5288                 Boston_Uni                                           scale
## 5289                 Boston_Uni                                         scanned
## 5290                 Boston_Uni                                        schedule
## 5291                 Boston_Uni                                       scheduled
## 5292                 Boston_Uni                                         schemes
## 5293                 Boston_Uni                                        sciences
## 5294                 Boston_Uni                                           score
## 5295                 Boston_Uni                                         scratch
## 5296                 Boston_Uni                                        semester
## 5297                 Boston_Uni                                            send
## 5298                 Boston_Uni                                       september
## 5299                 Boston_Uni                                          serves
## 5300                 Boston_Uni                                        sessions
## 5301                 Boston_Uni                                             set
## 5302                 Boston_Uni                                             shy
## 5303                 Boston_Uni                                     simulations
## 5304                 Boston_Uni                                          skills
## 5305                 Boston_Uni                                         skipped
## 5306                 Boston_Uni                                          social
## 5307                 Boston_Uni                                           solve
## 5308                 Boston_Uni                                         sources
## 5309                 Boston_Uni                                        specific
## 5310                 Boston_Uni                                    specifically
## 5311                 Boston_Uni                                             sql
## 5312                 Boston_Uni                                         squares
## 5313                 Boston_Uni                                       standards
## 5314                 Boston_Uni                                           start
## 5315                 Boston_Uni                                        starting
## 5316                 Boston_Uni                                     statistical
## 5317                 Boston_Uni                                      statistics
## 5318                 Boston_Uni                                      strategies
## 5319                 Boston_Uni                                        strictly
## 5320                 Boston_Uni                                       structure
## 5321                 Boston_Uni                                         student
## 5322                 Boston_Uni                                         subject
## 5323                 Boston_Uni                                     submissions
## 5324                 Boston_Uni                                     substantial
## 5325                 Boston_Uni                                     suggestions
## 5326                 Boston_Uni                                    supplemental
## 5327                 Boston_Uni                                             svd
## 5328                 Boston_Uni                                             svm
## 5329                 Boston_Uni                                        syllabus
## 5330                 Boston_Uni                                          system
## 5331                 Boston_Uni                                             tba
## 5332                 Boston_Uni                                       technical
## 5333                 Boston_Uni                                      techniques
## 5334                 Boston_Uni                                       textbooks
## 5335                 Boston_Uni                                        thursday
## 5336                 Boston_Uni                                      tibshirani
## 5337                 Boston_Uni                                           times
## 5338                 Boston_Uni                                            tips
## 5339                 Boston_Uni                                            tool
## 5340                 Boston_Uni                                           tools
## 5341                 Boston_Uni                                          travel
## 5342                 Boston_Uni                                            tues
## 5343                 Boston_Uni                                         typeset
## 5344                 Boston_Uni                                       typically
## 5345                 Boston_Uni                                          ullman
## 5346                 Boston_Uni                                      unfamiliar
## 5347                 Boston_Uni                                       violation
## 5348                 Boston_Uni                                      violations
## 5349                 Boston_Uni                                   visualization
## 5350                 Boston_Uni                                     visualizing
## 5351                 Boston_Uni                                             wed
## 5352                 Boston_Uni                                            week
## 5353                 Boston_Uni                                             wes
## 5354                 Boston_Uni                                      whatsoever
## 5355                 Boston_Uni                                          witten
## 5356                 Boston_Uni                                           words
## 5357                 Boston_Uni                                           world
## 5358                 Boston_Uni                              www.gradescope.com
## 5359                 Boston_Uni                                             xin
## 5360                 Boston_Uni                                            yida
## 5361                 Boston_Uni                                            yxin
## 5362                      Brown                                         acquire
## 5363                      Brown                                     acquisition
## 5364                      Brown                                           admin
## 5365                      Brown                                      advantages
## 5366                      Brown                                          andras
## 5367                      Brown                                     application
## 5368                      Brown                                         applies
## 5369                      Brown                                           apply
## 5370                      Brown                                         aspects
## 5371                      Brown                                        aurélien
## 5372                      Brown                                           basis
## 5373                      Brown                                            bias
## 5374                      Brown                                           brown
## 5375                      Brown                                        building
## 5376                      Brown                                        calendar
## 5377                      Brown                                     categorical
## 5378                      Brown                                             cit
## 5379                      Brown                                       classical
## 5380                      Brown                                           clean
## 5381                      Brown                                        cleaning
## 5382                      Brown                                      clustering
## 5383                      Brown                                        complete
## 5384                      Brown                                   computational
## 5385                      Brown                                  considerations
## 5386                      Brown                                         context
## 5387                      Brown                                        criteria
## 5388                      Brown                                           cross
## 5389                      Brown                                        datasets
## 5390                      Brown                                           dates
## 5391                      Brown                                        decision
## 5392                      Brown                                      deployment
## 5393                      Brown                                     description
## 5394                      Brown                                       developed
## 5395                      Brown                                        develops
## 5396                      Brown                                  dimensionality
## 5397                      Brown                                   disadvantages
## 5398                      Brown                                       ecosystem
## 5399                      Brown                                     effectively
## 5400                      Brown                                      emphasized
## 5401                      Brown                                        ensemble
## 5402                      Brown                                          entail
## 5403                      Brown                                          equips
## 5404                      Brown                                         ethical
## 5405                      Brown                                        evaluate
## 5406                      Brown                                       evaluated
## 5407                      Brown                                            exam
## 5408                      Brown                                           exams
## 5409                      Brown                                       exercises
## 5410                      Brown                                    expectations
## 5411                      Brown                                         explore
## 5412                      Brown                                            fall
## 5413                      Brown                                        features
## 5414                      Brown                                        findings
## 5415                      Brown                                     fundamental
## 5416                      Brown                                           goals
## 5417                      Brown                                           géron
## 5418                      Brown                                        handbook
## 5419                      Brown                                        handling
## 5420                      Brown                                            hard
## 5421                      Brown                                           hyper
## 5422                      Brown                                           ideas
## 5423                      Brown                                       implement
## 5424                      Brown                                         include
## 5425                      Brown                                        included
## 5426                      Brown                                       including
## 5427                      Brown                                     information
## 5428                      Brown                                         initial
## 5429                      Brown                                      initiative
## 5430                      Brown                                       interpret
## 5431                      Brown                                   interpretable
## 5432                      Brown                                  interpretation
## 5433                      Brown                                           intro
## 5434                      Brown                                            jake
## 5435                      Brown                                            lead
## 5436                      Brown                                        machines
## 5437                      Brown                                      matplotlib
## 5438                      Brown                                            meet
## 5439                      Brown                                           meets
## 5440                      Brown                                         methods
## 5441                      Brown                                           model
## 5442                      Brown                                        modeling
## 5443                      Brown                                      monitoring
## 5444                      Brown                                           notes
## 5445                      Brown                                           numpy
## 5446                      Brown                                        packages
## 5447                      Brown                                          pandas
## 5448                      Brown                                       parameter
## 5449                      Brown                                   participation
## 5450                      Brown                                     performance
## 5451                      Brown                                          plotly
## 5452                      Brown                                    practitioner
## 5453                      Brown                                        produced
## 5454                      Brown                                        projects
## 5455                      Brown                                        proposal
## 5456                      Brown                                        question
## 5457                      Brown                                       rationale
## 5458                      Brown                                     recommended
## 5459                      Brown                                       reduction
## 5460                      Brown                                         related
## 5461                      Brown                                        released
## 5462                      Brown                                        relevant
## 5463                      Brown                                      researcher
## 5464                      Brown                                       revisited
## 5465                      Brown                                        schedule
## 5466                      Brown                                       secondary
## 5467                      Brown                                          skills
## 5468                      Brown                                            soft
## 5469                      Brown                                        software
## 5470                      Brown                                         support
## 5471                      Brown                                     surrounding
## 5472                      Brown                                        syllabus
## 5473                      Brown                                      tensorflow
## 5474                      Brown                                         testing
## 5475                      Brown                                            time
## 5476                      Brown                                           title
## 5477                      Brown                                        tradeoff
## 5478                      Brown                                        training
## 5479                      Brown                                           trees
## 5480                      Brown                                             tth
## 5481                      Brown                                          tuning
## 5482                      Brown                                      university
## 5483                      Brown                                    unsupervised
## 5484                      Brown                                      vanderplas
## 5485                      Brown                                        variance
## 5486                      Brown                                         variety
## 5487                      Brown                                          vector
## 5488                      Brown                                   visualization
## 5489                      Brown                                        visually
## 5490                      Brown                                          weekly
## 5491                      Brown                                           weeks
## 5492                      Brown                                            wide
## 5493                      Brown                                         written
## 5494                      Brown                                            zsom
## 5495                       CUNY                                        absences
## 5496                       CUNY                                        accuracy
## 5497                       CUNY                                        accurate
## 5498                       CUNY                                      activities
## 5499                       CUNY                                         address
## 5500                       CUNY                                      addressing
## 5501                       CUNY                                        adoemail
## 5502                       CUNY                                       algebraic
## 5503                       CUNY                                        anaconda
## 5504                       CUNY                                       analyzing
## 5505                       CUNY                                         applied
## 5506                       CUNY                                           apply
## 5507                       CUNY                                         arising
## 5508                       CUNY                                            arts
## 5509                       CUNY                                          assess
## 5510                       CUNY                                          assume
## 5511                       CUNY                                       attention
## 5512                       CUNY                                          backup
## 5513                       CUNY                                          basics
## 5514                       CUNY                                          begins
## 5515                       CUNY                                            bias
## 5516                       CUNY                                          biases
## 5517                       CUNY                                            book
## 5518                       CUNY                                        bulletin
## 5519                       CUNY                                              ca
## 5520                       CUNY                                         careers
## 5521                       CUNY                                       catherine
## 5522                       CUNY                                              ce
## 5523                       CUNY                                        centered
## 5524                       CUNY                                         centers
## 5525                       CUNY                                       challenge
## 5526                       CUNY                                            code
## 5527                       CUNY                                     communicate
## 5528                       CUNY                                    competencies
## 5529                       CUNY                                      complexity
## 5530                       CUNY                                   comprehension
## 5531                       CUNY                                     computation
## 5532                       CUNY                                 contextualizing
## 5533                       CUNY                                       copyright
## 5534                       CUNY                                         corpora
## 5535                       CUNY                                      counteract
## 5536                       CUNY                                        counting
## 5537                       CUNY                                      coursework
## 5538                       CUNY                                        creation
## 5539                       CUNY                                             csc
## 5540                       CUNY                                         dataset
## 5541                       CUNY                                        datasets
## 5542                       CUNY                                  deconstructing
## 5543                       CUNY                                     demonstrate
## 5544                       CUNY                                       dependent
## 5545                       CUNY                                         digital
## 5546                       CUNY                                      discussion
## 5547                       CUNY                                     discussions
## 5548                       CUNY                                     distributed
## 5549                       CUNY                                   distributions
## 5550                       CUNY                                     effectively
## 5551                       CUNY                                          effort
## 5552                       CUNY                                      emphasizes
## 5553                       CUNY                                          enable
## 5554                       CUNY                                          engage
## 5555                       CUNY                                      estimation
## 5556                       CUNY                                        evaluate
## 5557                       CUNY                                            exam
## 5558                       CUNY                                         examine
## 5559                       CUNY                                       examining
## 5560                       CUNY                                         excused
## 5561                       CUNY                                        existing
## 5562                       CUNY                                     experiences
## 5563                       CUNY                                 experimentation
## 5564                       CUNY                                     exploratory
## 5565                       CUNY                                         explore
## 5566                       CUNY                                       expressed
## 5567                       CUNY                                      expression
## 5568                       CUNY                                         factors
## 5569                       CUNY                                         fcalado
## 5570                       CUNY                       feminism.mitpress.mit.edu
## 5571                       CUNY                                          fields
## 5572                       CUNY                                         finally
## 5573                       CUNY                                        findings
## 5574                       CUNY                                       firsthand
## 5575                       CUNY                                           focus
## 5576                       CUNY                                            form
## 5577                       CUNY                                        formulas
## 5578                       CUNY                                     foundations
## 5579                       CUNY                                            free
## 5580                       CUNY                                     fundamental
## 5581                       CUNY                                          gender
## 5582                       CUNY                             gradcenter.cuny.edu
## 5583                       CUNY                                          graded
## 5584                       CUNY                                       graphical
## 5585                       CUNY                                          graphs
## 5586                       CUNY                                         grounds
## 5587                       CUNY                                          handle
## 5588                       CUNY                                      historical
## 5589                       CUNY                                       homeworks
## 5590                       CUNY                                           human
## 5591                       CUNY                                      identities
## 5592                       CUNY                                      importance
## 5593                       CUNY                                       inference
## 5594                       CUNY                                      inferences
## 5595                       CUNY                                     inferential
## 5596                       CUNY                                     infiltrates
## 5597                       CUNY                                        informed
## 5598                       CUNY                                      installing
## 5599                       CUNY                                    instructions
## 5600                       CUNY                                  interpretation
## 5601                       CUNY                                       introduce
## 5602                       CUNY                                      introduces
## 5603                       CUNY                                     introducing
## 5604                       CUNY                                         justice
## 5605                       CUNY                                       katherine
## 5606                       CUNY                                         learned
## 5607                       CUNY                                        learning
## 5608                       CUNY                                       listening
## 5609                       CUNY                                        literary
## 5610                       CUNY                                        majoring
## 5611                       CUNY                                    marginalized
## 5612                       CUNY                                            math
## 5613                       CUNY                                      matplotlib
## 5614                       CUNY                                           meant
## 5615                       CUNY                                          method
## 5616                       CUNY                                         midterm
## 5617                       CUNY                                         modules
## 5618                       CUNY                                            move
## 5619                       CUNY                                        movement
## 5620                       CUNY                                         natural
## 5621                       CUNY                                       necessity
## 5622                       CUNY                                        networks
## 5623                       CUNY                                            nltk
## 5624                       CUNY                                       numerical
## 5625                       CUNY                                           numpy
## 5626                       CUNY                                          online
## 5627                       CUNY                                        opinions
## 5628                       CUNY                                            oral
## 5629                       CUNY                                        outcomes
## 5630                       CUNY                                          pandas
## 5631                       CUNY                                   participating
## 5632                       CUNY                                        pathways
## 5633                       CUNY                                          paying
## 5634                       CUNY                                       phenomena
## 5635                       CUNY                                          posing
## 5636                       CUNY                                          posted
## 5637                       CUNY                                       practical
## 5638                       CUNY                                     preliminary
## 5639                       CUNY                                        prepared
## 5640                       CUNY                                        prepares
## 5641                       CUNY                                   prerequisites
## 5642                       CUNY                                            pre­
## 5643                       CUNY                                      procedures
## 5644                       CUNY                                         process
## 5645                       CUNY                                       processes
## 5646                       CUNY                                    professional
## 5647                       CUNY                                    programmatic
## 5648                       CUNY                                         project
## 5649                       CUNY                                         promote
## 5650                       CUNY                                         prompts
## 5651                       CUNY                                         provide
## 5652                       CUNY                                   qualitatively
## 5653                       CUNY                                  quantitatively
## 5654                       CUNY                                        question
## 5655                       CUNY                                            race
## 5656                       CUNY                                           reach
## 5657                       CUNY                                         reading
## 5658                       CUNY                                        readings
## 5659                       CUNY                                  reasonableness
## 5660                       CUNY                                       reasoning
## 5661                       CUNY                                       reinforce
## 5662                       CUNY                                       represent
## 5663                       CUNY                                 representations
## 5664                       CUNY                                     requirement
## 5665                       CUNY                                            role
## 5666                       CUNY                                           rules
## 5667                       CUNY                                       satisfies
## 5668                       CUNY                                        sciences
## 5669                       CUNY                                       sexuality
## 5670                       CUNY                                         shaping
## 5671                       CUNY                                           solve
## 5672                       CUNY                                         spatial
## 5673                       CUNY                                          speaks
## 5674                       CUNY                                        standard
## 5675                       CUNY                                       standards
## 5676                       CUNY                                      statistics
## 5677                       CUNY                                      structures
## 5678                       CUNY                                         student
## 5679                       CUNY                                           study
## 5680                       CUNY                                        studying
## 5681                       CUNY                                          stymie
## 5682                       CUNY                                        subjects
## 5683                       CUNY                                        suitable
## 5684                       CUNY                                        syllabus
## 5685                       CUNY                                         systems
## 5686                       CUNY                                          tables
## 5687                       CUNY                                        teaching
## 5688                       CUNY                                      techniques
## 5689                       CUNY                                           texts
## 5690                       CUNY                                           tools
## 5691                       CUNY                                         trouble
## 5692                       CUNY                                      understand
## 5693                       CUNY                                         variety
## 5694                       CUNY                                   visualization
## 5695                       CUNY                                         website
## 5696                       CUNY                                            week
## 5697                       CUNY                                      www.bit.ly
## 5698                       CUNY                                            zoom
## 5699                    Cornell                                            171s
## 5700                    Cornell                                             2nd
## 5701                    Cornell                                            2sam
## 5702                    Cornell                                            2spm
## 5703                    Cornell                                            35pm
## 5704                    Cornell                                            3spm
## 5705                    Cornell                                             8th
## 5706                    Cornell                                           abide
## 5707                    Cornell                                         ability
## 5708                    Cornell                                          access
## 5709                    Cornell                                   accessibility
## 5710                    Cornell                                      accessible
## 5711                    Cornell                                     accommodate
## 5712                    Cornell                                         achieve
## 5713                    Cornell                                           adapt
## 5714                    Cornell                                          adding
## 5715                    Cornell                                         address
## 5716                    Cornell                                      admissions
## 5717                    Cornell                                         advance
## 5718                    Cornell                                       affecting
## 5719                    Cornell                                             aid
## 5720                    Cornell                                              al
## 5721                    Cornell                                           align
## 5722                    Cornell                                          amazon
## 5723                    Cornell                                         analyze
## 5724                    Cornell                                        answered
## 5725                    Cornell                                      appearance
## 5726                    Cornell                                        approved
## 5727                    Cornell                                       arguments
## 5728                    Cornell                                      assessment
## 5729                    Cornell                                     assessments
## 5730                    Cornell                                    associations
## 5731                    Cornell                                         athlete
## 5732                    Cornell                                       athletics
## 5733                    Cornell                                      attempting
## 5734                    Cornell                                       automated
## 5735                    Cornell                                         barring
## 5736                    Cornell                                           basic
## 5737                    Cornell                                          belong
## 5738                    Cornell                                        benjamin
## 5739                    Cornell                                             bit
## 5740                    Cornell                                           books
## 5741                    Cornell                                           build
## 5742                    Cornell                                           built
## 5743                    Cornell                                      calculated
## 5744                    Cornell                                     calculation
## 5745                    Cornell                                            caps
## 5746                    Cornell                                        category
## 5747                    Cornell                                       cetinkaya
## 5748                    Cornell                                          chance
## 5749                    Cornell                                         chatgpt
## 5750                    Cornell                                           cheat
## 5751                    Cornell                                            cite
## 5752                    Cornell                                           cited
## 5753                    Cornell                                       classroom
## 5754                    Cornell                                          closer
## 5755                    Cornell                                     collaborate
## 5756                    Cornell                                   collaboration
## 5757                    Cornell                                         college
## 5758                    Cornell                                         comment
## 5759                    Cornell                                          commit
## 5760                    Cornell                                       committed
## 5761                    Cornell                                          common
## 5762                    Cornell                                   communication
## 5763                    Cornell                                       community
## 5764                    Cornell                                         complex
## 5765                    Cornell                                      components
## 5766                    Cornell                                   comprehension
## 5767                    Cornell                                     computation
## 5768                    Cornell                                       computing
## 5769                    Cornell                                      contribute
## 5770                    Cornell                                         control
## 5771                    Cornell                                         copilot
## 5772                    Cornell                                         copying
## 5773                    Cornell                                         correct
## 5774                    Cornell                                      correspond
## 5775                    Cornell                                      counseling
## 5776                    Cornell                           counseling:psychiatry
## 5777                    Cornell                                         courses
## 5778                    Cornell                                          create
## 5779                    Cornell                                         credits
## 5780                    Cornell                                     dacasupport
## 5781                    Cornell                                           dates
## 5782                    Cornell                                       dedicated
## 5783                    Cornell                                        deducted
## 5784                    Cornell                                     description
## 5785                    Cornell                                      determined
## 5786                    Cornell                                         develop
## 5787                    Cornell                                       difficult
## 5788                    Cornell                                         digital
## 5789                    Cornell                                    disabilities
## 5790                    Cornell                                      discovered
## 5791                    Cornell                                     discussions
## 5792                    Cornell                                         dispute
## 5793                    Cornell                                 dos.cornell.edu
## 5794                    Cornell                                            earn
## 5795                    Cornell                                       education
## 5796                    Cornell                                       effective
## 5797                    Cornell                                     effectively
## 5798                    Cornell                                          effort
## 5799                    Cornell                                        emphasis
## 5800                    Cornell                                       encourage
## 5801                    Cornell                                      encouraged
## 5802                    Cornell                                          engage
## 5803                    Cornell                                     engineering
## 5804                    Cornell                                         equally
## 5805                    Cornell                                       equitable
## 5806                    Cornell                                      equivalent
## 5807                    Cornell                                           error
## 5808                    Cornell                                         ethical
## 5809                    Cornell                                       ethically
## 5810                    Cornell                                         evening
## 5811                    Cornell                                        examples
## 5812                    Cornell                                      experience
## 5813                    Cornell                                     exploratory
## 5814                    Cornell                                      extensions
## 5815                    Cornell                                          facing
## 5816                    Cornell                                            fail
## 5817                    Cornell                                          failed
## 5818                    Cornell                                           faith
## 5819                    Cornell                                        february
## 5820                    Cornell                                        feedback
## 5821                    Cornell                                            file
## 5822                    Cornell                                       financial
## 5823                    Cornell                                             fit
## 5824                    Cornell                                          follow
## 5825                    Cornell                                       forwarded
## 5826                    Cornell                                           found
## 5827                    Cornell                                            gain
## 5828                    Cornell                                           gates
## 5829                    Cornell                                        generate
## 5830                    Cornell                                            goal
## 5831                    Cornell                                           goals
## 5832                    Cornell                                       grolemund
## 5833                    Cornell                                         growing
## 5834                    Cornell                                            hall
## 5835                    Cornell                                          hardin
## 5836                    Cornell                                         harness
## 5837                    Cornell                              health.cornell.edu
## 5838                    Cornell                                         hearing
## 5839                    Cornell                                         helpers
## 5840                    Cornell                                       highlight
## 5841                    Cornell                                            home
## 5842                    Cornell                                             i.e
## 5843                    Cornell                                       implement
## 5844                    Cornell                                 implementations
## 5845                    Cornell                                       inclusion
## 5846                    Cornell                                    individually
## 5847                    Cornell                                         inf0295
## 5848                    Cornell                                     information
## 5849                    Cornell                                     institution
## 5850                    Cornell                                        intended
## 5851                    Cornell                                    introductory
## 5852                    Cornell                                         is:ssam
## 5853                    Cornell                                           issue
## 5854                    Cornell                                           kinds
## 5855                    Cornell                                       languages
## 5856                    Cornell                                           learn
## 5857                    Cornell                                        learners
## 5858                    Cornell                                            left
## 5859                    Cornell                                      legitimate
## 5860                    Cornell                                            live
## 5861                    Cornell                                       logistics
## 5862                    Cornell                                          losing
## 5863                    Cornell                                           major
## 5864                    Cornell                                        majority
## 5865                    Cornell                                          manner
## 5866                    Cornell                                          marked
## 5867                    Cornell                                            math
## 5868                    Cornell                                         maximum
## 5869                    Cornell                                            meet
## 5870                    Cornell                                         meeting
## 5871                    Cornell                                           meets
## 5872                    Cornell                                          mental
## 5873                    Cornell                                      mistakenly
## 5874                    Cornell                                          modern
## 5875                    Cornell                                         munging
## 5876                    Cornell                                           notes
## 5877                    Cornell                                        o'reilly
## 5878                    Cornell                                        obtained
## 5879                    Cornell                                         offered
## 5880                    Cornell                                       openlntro
## 5881                    Cornell                                        outlined
## 5882                    Cornell                                        packaged
## 5883                    Cornell                                            page
## 5884                    Cornell                                     participate
## 5885                    Cornell                                        partners
## 5886                    Cornell                                           paste
## 5887                    Cornell                                             pdf
## 5888                    Cornell                                         penalty
## 5889                    Cornell                                          period
## 5890                    Cornell                                       permanent
## 5891                    Cornell                                        personal
## 5892                    Cornell                                      plagiarism
## 5893                    Cornell                                        policies
## 5894                    Cornell                                         portion
## 5895                    Cornell                                        possibly
## 5896                    Cornell                                           posts
## 5897                    Cornell                                     potentially
## 5898                    Cornell                                        powerful
## 5899                    Cornell                                       pragmatic
## 5900                    Cornell                                     preparation
## 5901                    Cornell                                   prerequisites
## 5902                    Cornell                                        prevents
## 5903                    Cornell                                      principles
## 5904                    Cornell                                       professor
## 5905                    Cornell                                        promotes
## 5906                    Cornell                                        proposed
## 5907                    Cornell                                   psychological
## 5908                    Cornell                                          public
## 5909                    Cornell                                            push
## 5910                    Cornell                                         reading
## 5911                    Cornell                                        readings
## 5912                    Cornell                                            real
## 5913                    Cornell                                          reason
## 5914                    Cornell                                         reasons
## 5915                    Cornell                                         receive
## 5916                    Cornell                                       recognize
## 5917                    Cornell                                        recycled
## 5918                    Cornell                                       reference
## 5919                    Cornell                                   relationships
## 5920                    Cornell                                         relying
## 5921                    Cornell                                          repeat
## 5922                    Cornell                                          report
## 5923                    Cornell                                        reported
## 5924                    Cornell                                      repository
## 5925                    Cornell                                        resource
## 5926                    Cornell                                       respected
## 5927                    Cornell                                     responsibly
## 5928                    Cornell                                        returned
## 5929                    Cornell                                          reused
## 5930                    Cornell                                         reusing
## 5931                    Cornell                                          review
## 5932                    Cornell                                             run
## 5933                    Cornell                                          rundel
## 5934                    Cornell                                       scenarios
## 5935                    Cornell                                        schedule
## 5936                    Cornell                                 sds.cornell.edu
## 5937                    Cornell                                        sections
## 5938                    Cornell                                            send
## 5939                    Cornell                                         sharing
## 5940                    Cornell                                       situation
## 5941                    Cornell                                          slower
## 5942                    Cornell                                         soltoff
## 5943                    Cornell                                       soltoff's
## 5944                    Cornell                                         sources
## 5945                    Cornell                                    specifically
## 5946                    Cornell                                            sspm
## 5947                    Cornell                                   stackoverflow
## 5948                    Cornell                                       standards
## 5949                    Cornell                                          stated
## 5950                    Cornell                                          status
## 5951                    Cornell                                       structure
## 5952                    Cornell                                     substantive
## 5953                    Cornell                                    successfully
## 5954                    Cornell                                         summary
## 5955                    Cornell                                          sunday
## 5956                    Cornell                                    supplemented
## 5957                    Cornell                                         support
## 5958                    Cornell                                            task
## 5959                    Cornell                                           teams
## 5960                    Cornell                                      technology
## 5961                    Cornell                                         telling
## 5962                    Cornell                                       temporary
## 5963                    Cornell                                       textbooks
## 5964                    Cornell                                      thresholds
## 5965                    Cornell                                          timely
## 5966                    Cornell                                              tl
## 5967                    Cornell                                          topics
## 5968                    Cornell                                           total
## 5969                    Cornell                                           touch
## 5970                    Cornell                                         treated
## 5971                    Cornell                                           typed
## 5972                    Cornell                                   undergraduate
## 5973                    Cornell                                      understand
## 5974                    Cornell                               university_policy
## 5975                    Cornell                                          update
## 5976                    Cornell                                           usage
## 5977                    Cornell                                        valuable
## 5978                    Cornell                                       variables
## 5979                    Cornell                                         varsity
## 5980                    Cornell                                         version
## 5981                    Cornell                                      violations
## 5982                    Cornell                                  visualizations
## 5983                    Cornell                                          waiver
## 5984                    Cornell                                         website
## 5985                    Cornell                                         wickham
## 5986                    Cornell                                        workflow
## 5987                    Cornell                                       workflows
## 5988                    Cornell                                           world
## 5989                    Cornell                                       wrangling
## 5990                    Cornell                                         written
## 5991                     Drexel                               0,2817,2372163,00
## 5992                     Drexel                                             12s
## 5993                     Drexel                                            311s
## 5994                     Drexel                                    59adf720f0c8
## 5995                     Drexel                                    5cbf3a6169fd
## 5996                     Drexel                                    5d7ec2b335f8
## 5997                     Drexel                                             60s
## 5998                     Drexel                                     8wjvmyc01qy
## 5999                     Drexel                       9781449358655_sampler.pdf
## 6000                     Drexel                            ____________________
## 6001                     Drexel                                _an_introduction
## 6002                     Drexel                                              _r
## 6003                     Drexel                                             a.i
## 6004                     Drexel                         a_history_of_data_scien
## 6005                     Drexel                                              ab
## 6006                     Drexel                                          access
## 6007                     Drexel                                   accommodation
## 6008                     Drexel                                      accordance
## 6009                     Drexel                                             acm
## 6010                     Drexel                                           ad949
## 6011                     Drexel                                            adam
## 6012                     Drexel                                             add
## 6013                     Drexel                                      additional
## 6014                     Drexel                                         adhered
## 6015                     Drexel                                        advanced
## 6016                     Drexel                                             age
## 6017                     Drexel                                          agents
## 6018                     Drexel                                     algorithmic
## 6019                     Drexel                                         allison
## 6020                     Drexel                                       alongside
## 6021                     Drexel                                          amanda
## 6022                     Drexel                                   amazonaws.com
## 6023                     Drexel                                         amazons
## 6024                     Drexel                                            amit
## 6025                     Drexel                                   andchallenges
## 6026                     Drexel                                        anderson
## 6027                     Drexel                                          angwin
## 6028                     Drexel                                       annotated
## 6029                     Drexel                                     anticipated
## 6030                     Drexel                                          apache
## 6031                     Drexel                                             api
## 6032                     Drexel                                          appeal
## 6033                     Drexel                                          append
## 6034                     Drexel                                     application
## 6035                     Drexel                                           apply
## 6036                     Drexel                                        approach
## 6037                     Drexel                                        approval
## 6038                     Drexel                                            apps
## 6039                     Drexel                                       arguments
## 6040                     Drexel             arguments_for_and_against_open_data
## 6041                     Drexel                                        article2
## 6042                     Drexel                                       arxiv.org
## 6043                     Drexel                                      aschwanden
## 6044                     Drexel                                             asp
## 6045                     Drexel                                     association
## 6046                     Drexel                                       attribute
## 6047                     Drexel                                             avl
## 6048                     Drexel                                           avl’s
## 6049                     Drexel                            ba569633d51ebec6ec6e
## 6050                     Drexel                                             bad
## 6051                     Drexel                                            base
## 6052                     Drexel                                           basis
## 6053                     Drexel                                        berkeley
## 6054                     Drexel                                    bibliography
## 6055                     Drexel                                   bioethics.net
## 6056                     Drexel                                          bishop
## 6057                     Drexel                                 blog.applied.ai
## 6058                     Drexel                           blog.hartleybrody.com
## 6059                     Drexel                               blog.mixpanel.com
## 6060                     Drexel                               blogs.gartner.com
## 6061                     Drexel                                   blogs.wsj.com
## 6062                     Drexel                                           board
## 6063                     Drexel                                     bojlakkf3ey
## 6064                     Drexel                                    booksamplers
## 6065                     Drexel                                          bottom
## 6066                     Drexel                                           bound
## 6067                     Drexel                                    bqohgin_ieqv
## 6068                     Drexel                                           brent
## 6069                     Drexel                                      brentdykes
## 6070                     Drexel                                        bridging
## 6071                     Drexel                                         brinker
## 6072                     Drexel                                           broad
## 6073                     Drexel                                           bryan
## 6074                     Drexel                                          burrus
## 6075                     Drexel                                            cacm
## 6076                     Drexel                                    cacm.acm.org
## 6077                     Drexel                                            cain
## 6078                     Drexel                                      camouflage
## 6079                     Drexel                                           can’t
## 6080                     Drexel                                    capabilities
## 6081                     Drexel                                         careers
## 6082                     Drexel                                           carry
## 6083                     Drexel                                     categorical
## 6084                     Drexel                                           cathy
## 6085                     Drexel                                          caught
## 6086                     Drexel                           cdn.oreillystatic.com
## 6087                     Drexel                                              ce
## 6088                     Drexel                                         central
## 6089                     Drexel                                   certification
## 6090                     Drexel                                         certify
## 6091                     Drexel                                         chapter
## 6092                     Drexel                                        chapters
## 6093                     Drexel                                 characteristics
## 6094                     Drexel                               characterizations
## 6095                     Drexel                                           cheat
## 6096                     Drexel                                           check
## 6097                     Drexel                                           chief
## 6098                     Drexel                                 chiefmartec.com
## 6099                     Drexel                                        christie
## 6100                     Drexel                                             chu
## 6101                     Drexel                                   circumstances
## 6102                     Drexel                                        citation
## 6103                     Drexel                                          citing
## 6104                     Drexel                                          claire
## 6105                     Drexel                                           clamp
## 6106                     Drexel                                          clamps
## 6107                     Drexel                                        cleaning
## 6108                     Drexel                                         cleanup
## 6109                     Drexel                        cloud_computing_security
## 6110                     Drexel                                        cloudera
## 6111                     Drexel                                           color
## 6112                     Drexel                                    combinations
## 6113                     Drexel                                          commit
## 6114                     Drexel                                  communications
## 6115                     Drexel                             community_standards
## 6116                     Drexel                                       comparing
## 6117                     Drexel                                      comparison
## 6118                     Drexel                                      complaints
## 6119                     Drexel                                        complete
## 6120                     Drexel                                      completion
## 6121                     Drexel                                      compliance
## 6122                     Drexel                                      components
## 6123                     Drexel                      computer.howstuffworks.com
## 6124                     Drexel                                      conceptual
## 6125                     Drexel                                      concretely
## 6126                     Drexel                                         consist
## 6127                     Drexel                                      consulting
## 6128                     Drexel                                       contained
## 6129                     Drexel                                      contingent
## 6130                     Drexel                                        contract
## 6131                     Drexel                                         control
## 6132                     Drexel                                     controlling
## 6133                     Drexel                                      conversion
## 6134                     Drexel                                          conway
## 6135                     Drexel                                          cooper
## 6136                     Drexel                                            core
## 6137                     Drexel                                     correctness
## 6138                     Drexel                                            coss
## 6139                     Drexel                                      coursework
## 6140                     Drexel                                         covered
## 6141                     Drexel                                        creating
## 6142                     Drexel                                           cross
## 6143                     Drexel cross_industry_standard_process_for_data_mining
## 6144                     Drexel                                         current
## 6145                     Drexel                                      curricular
## 6146                     Drexel                                      curriculum
## 6147                     Drexel                                           cutts
## 6148                     Drexel                                        cvdazzle
## 6149                     Drexel                                    cvdazzle.com
## 6150                     Drexel                           d3mizzm2xvfitgf8he_ab
## 6151                     Drexel                                          daniel
## 6152                     Drexel                                    data_science
## 6153                     Drexel                                   data_security
## 6154                     Drexel                                  data_wrangling
## 6155                     Drexel                                        database
## 6156                     Drexel                        datascience.berkeley.edu
## 6157                     Drexel                           datascience.community
## 6158                     Drexel                                datascience.html
## 6159                     Drexel                             datascienceassn.org
## 6160                     Drexel                                     dataversity
## 6161                     Drexel                                       davenport
## 6162                     Drexel                                             day
## 6163                     Drexel                                       decisions
## 6164                     Drexel                                            deck
## 6165                     Drexel                                       deduction
## 6166                     Drexel                                      definition
## 6167                     Drexel                                        deloitte
## 6168                     Drexel                                          deluge
## 6169                     Drexel                                      department
## 6170                     Drexel                                       depending
## 6171                     Drexel                                       depiction
## 6172                     Drexel                                         derived
## 6173                     Drexel                                        describe
## 6174                     Drexel                                       describes
## 6175                     Drexel                                    descriptions
## 6176                     Drexel                                        designed
## 6177                     Drexel                                         designs
## 6178                     Drexel                                desource.uvu.edu
## 6179                     Drexel                                       detection
## 6180                     Drexel                                      determined
## 6181                     Drexel                                     development
## 6182                     Drexel                                          devlin
## 6183                     Drexel                                         diebold
## 6184                     Drexel                            diebold_big_data.pdf
## 6185                     Drexel                                     differences
## 6186                     Drexel                                    differential
## 6187                     Drexel                           differential_calculus
## 6188                     Drexel                                          digits
## 6189                     Drexel                                        director
## 6190                     Drexel                                    disabilities
## 6191                     Drexel                             disabilityresources
## 6192                     Drexel                                    discriminate
## 6193                     Drexel                               discriminate.html
## 6194                     Drexel                                     discussions
## 6195                     Drexel                                    dissatisfied
## 6196                     Drexel                                          divide
## 6197                     Drexel                                            docs
## 6198                     Drexel                                    download.php
## 6199                     Drexel                                              dr
## 6200                     Drexel                                            drew
## 6201                     Drexel                                  drewconway.com
## 6202                     Drexel                                          driven
## 6203                     Drexel                                            drop
## 6204                     Drexel                                        dropping
## 6205                     Drexel                                          duggan
## 6206                     Drexel                                             dup
## 6207                     Drexel                            dupress.deloitte.com
## 6208                     Drexel                                           dykes
## 6209                     Drexel                                     educational
## 6210                     Drexel                                     effectively
## 6211                     Drexel                                     efficiently
## 6212                     Drexel                                  electronically
## 6213                     Drexel                                  embarrassingly
## 6214                     Drexel                         embarrassingly_parallel
## 6215                     Drexel                                        emerging
## 6216                     Drexel                                              en
## 6217                     Drexel                                en.wikibooks.org
## 6218                     Drexel                                       encounter
## 6219                     Drexel                                          engine
## 6220                     Drexel                                       enriching
## 6221                     Drexel                                     environment
## 6222                     Drexel                                             era
## 6223                     Drexel                                            eric
## 6224                     Drexel                                           error
## 6225                     Drexel                                     established
## 6226                     Drexel                                       etymology
## 6227                     Drexel                                          europe
## 6228                     Drexel                                     evaluations
## 6229                     Drexel                                   everyone.html
## 6230                     Drexel                                           exams
## 6231                     Drexel                                        exemplar
## 6232                     Drexel                                    expectations
## 6233                     Drexel                                         expects
## 6234                     Drexel                                         explain
## 6235                     Drexel                                        explains
## 6236                     Drexel                                         express
## 6237                     Drexel                                     extenuating
## 6238                     Drexel                                            fail
## 6239                     Drexel                                       favorably
## 6240                     Drexel                                        fdiebold
## 6241                     Drexel                                         federal
## 6242                     Drexel                                           files
## 6243                     Drexel                                          filter
## 6244                     Drexel                                   filter_bubble
## 6245                     Drexel                                     fnk_zzamoss
## 6246                     Drexel                                            form
## 6247                     Drexel                                         formats
## 6248                     Drexel                                           forms
## 6249                     Drexel                                         forward
## 6250                     Drexel                                           fours
## 6251                     Drexel                                    fouryears.eu
## 6252                     Drexel                                      frameworks
## 6253                     Drexel                                         francis
## 6254                     Drexel                                        freshman
## 6255                     Drexel                                          friday
## 6256                     Drexel                                           fritz
## 6257                     Drexel                                       frontline
## 6258                     Drexel                                        fulltext
## 6259                     Drexel                                             fun
## 6260                     Drexel                                       gc9l5kujz
## 6261                     Drexel                                          gender
## 6262                     Drexel                                          george
## 6263                     Drexel                                             gil
## 6264                     Drexel                                        gilpress
## 6265                     Drexel                                             gis
## 6266                     Drexel                                           glenn
## 6267                     Drexel                                            goal
## 6268                     Drexel                                          golden
## 6269                     Drexel                                          goldin
## 6270                     Drexel                      google_personalized_search
## 6271                     Drexel                                         googles
## 6272                     Drexel                                        google’s
## 6273                     Drexel                                         grading
## 6274                     Drexel                                        graphics
## 6275                     Drexel                                        griffith
## 6276                     Drexel                                          grimes
## 6277                     Drexel                                    group_public
## 6278                     Drexel                                 groups.niso.org
## 6279                     Drexel                                        guardian
## 6280                     Drexel                                             guo
## 6281                     Drexel                                    handbook_pt1
## 6282                     Drexel                                        handling
## 6283                     Drexel                                          hannah
## 6284                     Drexel                                      harassment
## 6285                     Drexel                                          harder
## 6286                     Drexel                                          harris
## 6287                     Drexel                                         harvard
## 6288                     Drexel                                          harvey
## 6289                     Drexel                                         hbr.org
## 6290                     Drexel                                         headers
## 6291                     Drexel                                           heiko
## 6292                     Drexel                                            hell
## 6293                     Drexel                                         hoffman
## 6294                     Drexel                                         horling
## 6295                     Drexel                               howstuffworks.com
## 6296                     Drexel                                       howtogeek
## 6297                     Drexel                                             htg
## 6298                     Drexel                                             htm
## 6299                     Drexel                                             ibm
## 6300                     Drexel                                              id
## 6301                     Drexel                                        identify
## 6302                     Drexel                                     identifying
## 6303                     Drexel                                             ids
## 6304                     Drexel                                      illustrate
## 6305                     Drexel                                     illustrated
## 6306                     Drexel                                         in.html
## 6307                     Drexel                                         include
## 6308                     Drexel                                  incomplete.pdf
## 6309                     Drexel                                      increasing
## 6310                     Drexel                                    individually
## 6311                     Drexel                                     individuals
## 6312                     Drexel                                        industry
## 6313                     Drexel                                     informatics
## 6314                     Drexel                                 informationweek
## 6315                     Drexel                                       inmachine
## 6316                     Drexel                                          inside
## 6317                     Drexel                                        integral
## 6318                     Drexel                               integral_calculus
## 6319                     Drexel                                    intelligence
## 6320                     Drexel                                        intended
## 6321                     Drexel                                      intentions
## 6322                     Drexel                                     interactive
## 6323                     Drexel                               interdisciplinary
## 6324                     Drexel                                      internet’s
## 6325                     Drexel                                       interpret
## 6326                     Drexel                                     interpreted
## 6327                     Drexel                                        interval
## 6328                     Drexel                                       interview
## 6329                     Drexel                                           intro
## 6330                     Drexel                                      introduces
## 6331                     Drexel                                          intuit
## 6332                     Drexel                                        inverted
## 6333                     Drexel                                  inverted_index
## 6334                     Drexel                                         involve
## 6335                     Drexel                                              io
## 6336                     Drexel                                            isnt
## 6337                     Drexel                                           isn’t
## 6338                     Drexel                                          issued
## 6339                     Drexel                                            it’s
## 6340                     Drexel                                            jake
## 6341                     Drexel                                           james
## 6342                     Drexel                                             jan
## 6343                     Drexel                                         january
## 6344                     Drexel                                           jenny
## 6345                     Drexel                                          jeremy
## 6346                     Drexel                                           jnl47
## 6347                     Drexel                                        jonathan
## 6348                     Drexel                                            josh
## 6349                     Drexel                                           julia
## 6350                     Drexel                                          justin
## 6351                     Drexel                                      k7rmot2nwy
## 6352                     Drexel                                          kaggle
## 6353                     Drexel                                             kai
## 6354                     Drexel                                           kevin
## 6355                     Drexel                                     kjboeszcoqc
## 6356                     Drexel                                       klockwood
## 6357                     Drexel                               knowledgebird.com
## 6358                     Drexel                                        kobielus
## 6359                     Drexel                                      konstantin
## 6360                     Drexel                                         krishna
## 6361                     Drexel                                          kulick
## 6362                     Drexel                                     kyb8iza5aue
## 6363                     Drexel                                     kzfe4t0pwq8
## 6364                     Drexel                                          l05_06
## 6365                     Drexel                                         labeled
## 6366                     Drexel                                        language
## 6367                     Drexel                                            laws
## 6368                     Drexel                                           leada
## 6369                     Drexel                                         lecture
## 6370                     Drexel                                        lectures
## 6371                     Drexel                                             lee
## 6372                     Drexel                                         leipzig
## 6373                     Drexel                                          length
## 6374                     Drexel                                         lessons
## 6375                     Drexel                                          letter
## 6376                     Drexel                                         letters
## 6377                     Drexel                                           level
## 6378                     Drexel                                              li
## 6379                     Drexel                                       lifetimes
## 6380                     Drexel                                         listing
## 6381                     Drexel                                             llc
## 6382                     Drexel                                           local
## 6383                     Drexel                                            lohr
## 6384                     Drexel                                             lot
## 6385                     Drexel                                          lounge
## 6386                     Drexel                                           maeve
## 6387                     Drexel                                        magazine
## 6388                     Drexel                                            main
## 6389                     Drexel                                           makes
## 6390                     Drexel                                           malak
## 6391                     Drexel                           managementcontrolling
## 6392                     Drexel                                          manner
## 6393                     Drexel                                       manyroles
## 6394                     Drexel                                            mapr
## 6395                     Drexel                                          marder
## 6396                     Drexel                                         marital
## 6397                     Drexel                                            mark
## 6398                     Drexel                                       marketing
## 6399                     Drexel                                         markham
## 6400                     Drexel                                    mashable.com
## 6401                     Drexel                                       materials
## 6402                     Drexel                                    mathematical
## 6403                     Drexel                                        matrices
## 6404                     Drexel                                         matthew
## 6405                     Drexel                                          medium
## 6406                     Drexel                                      medium.com
## 6407                     Drexel                         medium.freecodecamp.org
## 6408                     Drexel                                         megahan
## 6409                     Drexel                                    metadata.pdf
## 6410                     Drexel                                          method
## 6411                     Drexel                                         miachel
## 6412                     Drexel                                         michael
## 6413                     Drexel                                       milestone
## 6414                     Drexel                                          miller
## 6415                     Drexel                                          mining
## 6416                     Drexel                                           minor
## 6417                     Drexel                                         mixture
## 6418                     Drexel                                          models
## 6419                     Drexel                                          modern
## 6420                     Drexel                                          mostof
## 6421                     Drexel                                        mult_pkg
## 6422                     Drexel                                          munroe
## 6423                     Drexel                                           names
## 6424                     Drexel                                           nancy
## 6425                     Drexel                                         natasha
## 6426                     Drexel                                        national
## 6427                     Drexel                                         natural
## 6428                     Drexel                          natural_user_interface
## 6429                     Drexel                                            news
## 6430                     Drexel                    nominal_ordinal_interval.htm
## 6431                     Drexel                                           nosql
## 6432                     Drexel                                        notation
## 6433                     Drexel                                          o'neil
## 6434                     Drexel                                         o_bound
## 6435                     Drexel                                      obligation
## 6436                     Drexel                                         observe
## 6437                     Drexel                                        obsolete
## 6438                     Drexel                                           offer
## 6439                     Drexel                                       open_data
## 6440                     Drexel                                        operates
## 6441                     Drexel                                     opportunity
## 6442                     Drexel                                      optimizing
## 6443                     Drexel                                         ordinal
## 6444                     Drexel                                         oreilly
## 6445                     Drexel                                   organizations
## 6446                     Drexel                                      originally
## 6447                     Drexel                                        outcomes
## 6448                     Drexel                                         outline
## 6449                     Drexel                                   overview.html
## 6450                     Drexel                                            page
## 6451                     Drexel                                        paper112
## 6452                     Drexel                                        parallel
## 6453                     Drexel                                    paraphrasing
## 6454                     Drexel                                             pbs
## 6455                     Drexel                                              pc
## 6456                     Drexel                                         perform
## 6457                     Drexel                                       performed
## 6458                     Drexel                                          person
## 6459                     Drexel                                        personal
## 6460                     Drexel                                     pewresearch
## 6461                     Drexel                                      phenomenon
## 6462                     Drexel                                          philip
## 6463                     Drexel                                      plagiarism
## 6464                     Drexel                                    plagiarizing
## 6465                     Drexel                                            play
## 6466                     Drexel                                   plzhqobowtqdp
## 6467                     Drexel              plzhqobowtqdpd3mizzm2xvfitgf8he_ab
## 6468                     Drexel                                             pmp
## 6469                     Drexel                                        politico
## 6470                     Drexel                                        practice
## 6471                     Drexel                                       practices
## 6472                     Drexel                                             pre
## 6473                     Drexel                                       pregnancy
## 6474                     Drexel                                     preparation
## 6475                     Drexel                                   prerequisites
## 6476                     Drexel                                        presence
## 6477                     Drexel                                   presentations
## 6478                     Drexel                                         preview
## 6479                     Drexel                                      procedures
## 6480                     Drexel                                         process
## 6481                     Drexel                                         product
## 6482                     Drexel                                       professor
## 6483                     Drexel                                          profit
## 6484                     Drexel                                         program
## 6485                     Drexel                                     prohibiting
## 6486                     Drexel                                       project’s
## 6487                     Drexel                                         promote
## 6488                     Drexel                                        proposal
## 6489                     Drexel                                        protects
## 6490                     Drexel                                         provide
## 6491                     Drexel                                       providing
## 6492                     Drexel                                       provost’s
## 6493                     Drexel                                        purposes
## 6494                     Drexel                                          python
## 6495                     Drexel                                     question599
## 6496                     Drexel                                           quist
## 6497                     Drexel                                           quote
## 6498                     Drexel                                          quoted
## 6499                     Drexel                                         quoting
## 6500                     Drexel                                            r2d3
## 6501                     Drexel                                            race
## 6502                     Drexel                                          rafael
## 6503                     Drexel                                          rainie
## 6504                     Drexel                                         randall
## 6505                     Drexel                                          random
## 6506                     Drexel                                   randomnumbers
## 6507                     Drexel                                           range
## 6508                     Drexel                                         raschka
## 6509                     Drexel                                          raster
## 6510                     Drexel                                       rationale
## 6511                     Drexel                                            rawn
## 6512                     Drexel                                        rawnshah
## 6513                     Drexel                                          rchang
## 6514                     Drexel                                            read
## 6515                     Drexel                                        realizes
## 6516                     Drexel                                         rebecca
## 6517                     Drexel                                     rebroadcast
## 6518                     Drexel                                         receive
## 6519                     Drexel                                  recommendation
## 6520                     Drexel                                        recorded
## 6521                     Drexel                                       recording
## 6522                     Drexel                                          reduce
## 6523                     Drexel                                           refer
## 6524                     Drexel                                      references
## 6525                     Drexel                                      reflection
## 6526                     Drexel                                        reflects
## 6527                     Drexel                                     regulations
## 6528                     Drexel                                      relational
## 6529                     Drexel                                   relationships
## 6530                     Drexel                                        religion
## 6531                     Drexel                                       remaining
## 6532                     Drexel                                          report
## 6533                     Drexel                                         reports
## 6534                     Drexel                                       represent
## 6535                     Drexel                                         request
## 6536                     Drexel                                      requesting
## 6537                     Drexel                                        requests
## 6538                     Drexel                                     requirement
## 6539                     Drexel                                    requirements
## 6540                     Drexel                                        requires
## 6541                     Drexel                                       requiring
## 6542                     Drexel                                     responsibly
## 6543                     Drexel                                     retaliation
## 6544                     Drexel                                          review
## 6545                     Drexel                                          robert
## 6546                     Drexel                                            role
## 6547                     Drexel                                     roumeliotis
## 6548                     Drexel                                              s3
## 6549                     Drexel                                          sample
## 6550                     Drexel                                         sampler
## 6551                     Drexel                                             sas
## 6552                     Drexel                                         satisfy
## 6553                     Drexel                                        saunders
## 6554                     Drexel                                          schutt
## 6555                     Drexel                             sciencee806ba55a81f
## 6556                     Drexel                                        sciences
## 6557                     Drexel                                       science’s
## 6558                     Drexel                                      scientific
## 6559                     Drexel                                       scientist
## 6560                     Drexel                                   scientist.pdf
## 6561                     Drexel                                           scola
## 6562                     Drexel                                    scrapesentry
## 6563                     Drexel                                   searchresults
## 6564                     Drexel                                       sebastian
## 6565                     Drexel                            sebastianraschka.com
## 6566                     Drexel                                             sec
## 6567                     Drexel                                           sedar
## 6568                     Drexel                                        semantic
## 6569                     Drexel                                          senior
## 6570                     Drexel                                        separate
## 6571                     Drexel                                        services
## 6572                     Drexel                                            seth
## 6573                     Drexel                                             sex
## 6574                     Drexel                                            shah
## 6575                     Drexel                                            sign
## 6576                     Drexel                                          signal
## 6577                     Drexel             signature__________________________
## 6578                     Drexel                                       silverman
## 6579                     Drexel                                          singer
## 6580                     Drexel                                         singhal
## 6581                     Drexel                                           slide
## 6582                     Drexel                                          social
## 6583                     Drexel                                  socialsciences
## 6584                     Drexel                                            span
## 6585                     Drexel                                           spark
## 6586                     Drexel                                          spring
## 6587                     Drexel                                      srivastava
## 6588                     Drexel                                           staff
## 6589                     Drexel                                            stat
## 6590                     Drexel                                          stated
## 6591                     Drexel                                       statement
## 6592                     Drexel                                      statements
## 6593                     Drexel                             statisticalmodeling
## 6594                     Drexel                                       stats.org
## 6595                     Drexel                                         steinja
## 6596                     Drexel                                       stephanie
## 6597                     Drexel                                           steve
## 6598                     Drexel                                    stikeleather
## 6599                     Drexel                                        stinking
## 6600                     Drexel                               storytelling.html
## 6601                     Drexel                                        straight
## 6602                     Drexel                                      strategies
## 6603                     Drexel                                        strictly
## 6604                     Drexel                                         strives
## 6605                     Drexel                                     studentlife
## 6606                     Drexel                                       student’s
## 6607                     Drexel                                           study
## 6608                     Drexel                                      submission
## 6609                     Drexel                                      successful
## 6610                     Drexel                                        sullexis
## 6611                     Drexel                                   summarization
## 6612                     Drexel                                         summary
## 6613                     Drexel                                         support
## 6614                     Drexel                                          survey
## 6615                     Drexel                                       swanstrom
## 6616                     Drexel                                    syllabus.pdf
## 6617                     Drexel                                     syntagmatic
## 6618                     Drexel                                           table
## 6619                     Drexel                                             tag
## 6620                     Drexel                                            talk
## 6621                     Drexel                                           talks
## 6622                     Drexel                                          tavish
## 6623                     Drexel                                        teaching
## 6624                     Drexel                                    technologist
## 6625                     Drexel                                       tentative
## 6626                     Drexel                                        textbook
## 6627                     Drexel                                           texts
## 6628                     Drexel                                   thanuntrained
## 6629                     Drexel                                          theory
## 6630                     Drexel                                      theory.pdf
## 6631                     Drexel                                        thinking
## 6632                     Drexel                                      thoughtful
## 6633                     Drexel                                         tianhui
## 6634                     Drexel                                            tidy
## 6635                     Drexel                 tim_berners_lee_on_the_next_web
## 6636                     Drexel                                            todd
## 6637                     Drexel                                      toinsights
## 6638                     Drexel                                             tom
## 6639                     Drexel                                            tony
## 6640                     Drexel                                 transformations
## 6641                     Drexel                                    transforming
## 6642                     Drexel                                       tretyakov
## 6643                     Drexel                      twitter_report_2013jan.pdf
## 6644                     Drexel                             twitterf0c13298aee6
## 6645                     Drexel                                          typing
## 6646                     Drexel                                             u.s
## 6647                     Drexel                                              uc
## 6648                     Drexel                                            ucla
## 6649                     Drexel                                      unforeseen
## 6650                     Drexel                              unforeseenproblems
## 6651                     Drexel                                       untrained
## 6652                     Drexel                                          update
## 6653                     Drexel                                         updates
## 6654                     Drexel                                         uploads
## 6655                     Drexel                                          upshot
## 6656                     Drexel                                            user
## 6657                     Drexel                                   useurope.html
## 6658                     Drexel                                usingexploratory
## 6659                     Drexel                                            utah
## 6660                     Drexel                                         v059i10
## 6661                     Drexel                                          v59i10
## 6662                     Drexel                                          valley
## 6663                     Drexel                                       variables
## 6664                     Drexel                                       variation
## 6665                     Drexel                                     variety.pdf
## 6666                     Drexel                                         vasilev
## 6667                     Drexel                                          vector
## 6668                     Drexel                                    verification
## 6669                     Drexel                                          versus
## 6670                     Drexel                                         veteran
## 6671                     Drexel                                           video
## 6672                     Drexel                                          vidhya
## 6673                     Drexel                                            view
## 6674                     Drexel                                           visit
## 6675                     Drexel                                   visualization
## 6676                     Drexel                                       voiceover
## 6677                     Drexel                                        waechter
## 6678                     Drexel                                     walkthrough
## 6679                     Drexel                               web_search_engine
## 6680                     Drexel                                          weight
## 6681                     Drexel                                        whatstat
## 6682                     Drexel                                          what’s
## 6683                     Drexel                           whiteboardwalkthrough
## 6684                     Drexel                                      whitepaper
## 6685                     Drexel                                            wide
## 6686                     Drexel                                       wikibooks
## 6687                     Drexel                                        williams
## 6688                     Drexel                                           wills
## 6689                     Drexel                                     withdrawing
## 6690                     Drexel                                       work.html
## 6691                     Drexel                                           world
## 6692                     Drexel                                         world's
## 6693                     Drexel                                          worlds
## 6694                     Drexel                                              wp
## 6695                     Drexel                                       wrangling
## 6696                     Drexel                         www.analyticsvidhya.com
## 6697                     Drexel                                www.ats.ucla.edu
## 6698                     Drexel                               www.bioethics.net
## 6699                     Drexel                          www.cbigconsulting.com
## 6700                     Drexel                                  www.cooper.com
## 6701                     Drexel                               www.dataschool.io
## 6702                     Drexel                             www.dataversity.net
## 6703                     Drexel                               www.gislounge.com
## 6704                     Drexel                          www.glennklockwood.com
## 6705                     Drexel                               www.howtogeek.com
## 6706                     Drexel                                 www.hugeinc.com
## 6707                     Drexel                         www.informationweek.com
## 6708                     Drexel                               www.jstatsoft.org
## 6709                     Drexel                                www.linkedin.com
## 6710                     Drexel                                     www.pbs.org
## 6711                     Drexel                                   www.pcmag.com
## 6712                     Drexel                             www.pewinternet.org
## 6713                     Drexel                                www.politico.com
## 6714                     Drexel                                        www.r2d3
## 6715                     Drexel                            www.scrapesentry.com
## 6716                     Drexel                               www.ssc.upenn.edu
## 6717                     Drexel                                   www.stats.org
## 6718                     Drexel                                     www.ted.com
## 6719                     Drexel                             www.theguardian.com
## 6720                     Drexel                                     www.wsj.com
## 6721                     Drexel                                            xkcd
## 6722                     Drexel                                        xkcd.com
## 6723                     Drexel                                             yee
## 6724                     Drexel                                             zia
## 6725                     Drexel                                            zink
## 6726               Georgia_Tech                                            45am
## 6727               Georgia_Tech                                             abu
## 6728               Georgia_Tech                                    acceleration
## 6729               Georgia_Tech                                      activities
## 6730               Georgia_Tech                                      additional
## 6731               Georgia_Tech                                     adversarial
## 6732               Georgia_Tech                                      algorithms
## 6733               Georgia_Tech                                        analysis
## 6734               Georgia_Tech                                       answering
## 6735               Georgia_Tech                                     appointment
## 6736               Georgia_Tech                                   approximation
## 6737               Georgia_Tech                                      attendance
## 6738               Georgia_Tech                                       attending
## 6739               Georgia_Tech                                          august
## 6740               Georgia_Tech                                            ball
## 6741               Georgia_Tech                                           basic
## 6742               Georgia_Tech                                          basics
## 6743               Georgia_Tech                                             bau
## 6744               Georgia_Tech                                             ben
## 6745               Georgia_Tech                                       bernstein
## 6746               Georgia_Tech                                       bertsekas
## 6747               Georgia_Tech                                           books
## 6748               Georgia_Tech                                         borhani
## 6749               Georgia_Tech                                            boyd
## 6750               Georgia_Tech                                       calafiore
## 6751               Georgia_Tech                                        capacity
## 6752               Georgia_Tech                                         central
## 6753               Georgia_Tech                                     comfortable
## 6754               Georgia_Tech                                        complete
## 6755               Georgia_Tech                                       computing
## 6756               Georgia_Tech                                      conditions
## 6757               Georgia_Tech                                       conducted
## 6758               Georgia_Tech                                            cone
## 6759               Georgia_Tech                                       conjugate
## 6760               Georgia_Tech                                        continue
## 6761               Georgia_Tech                                         control
## 6762               Georgia_Tech                                      convenient
## 6763               Georgia_Tech                                        cookbook
## 6764               Georgia_Tech                                      correction
## 6765               Georgia_Tech                                         courses
## 6766               Georgia_Tech                                          create
## 6767               Georgia_Tech                                         current
## 6768               Georgia_Tech                                       davenport
## 6769               Georgia_Tech                                  decompositions
## 6770               Georgia_Tech                                         deliver
## 6771               Georgia_Tech                                     description
## 6772               Georgia_Tech                                          design
## 6773               Georgia_Tech                                     destruction
## 6774               Georgia_Tech                                      distancing
## 6775               Georgia_Tech                                        domingos
## 6776               Georgia_Tech                                             dot
## 6777               Georgia_Tech                                        download
## 6778               Georgia_Tech                                      drunkard's
## 6779               Georgia_Tech                                         duality
## 6780               Georgia_Tech                                         durrett
## 6781               Georgia_Tech                                         dynamic
## 6782               Georgia_Tech                                      eigenvalue
## 6783               Georgia_Tech                                     eigenvalues
## 6784               Georgia_Tech                                    eigenvectors
## 6785               Georgia_Tech                                              el
## 6786               Georgia_Tech                                      elementary
## 6787               Georgia_Tech                                        elements
## 6788               Georgia_Tech                                       equations
## 6789               Georgia_Tech                                           error
## 6790               Georgia_Tech                                        estimate
## 6791               Georgia_Tech                                           event
## 6792               Georgia_Tech                                        examples
## 6793               Georgia_Tech                                        existing
## 6794               Georgia_Tech                                          expect
## 6795               Georgia_Tech                                        expected
## 6796               Georgia_Tech                                           extra
## 6797               Georgia_Tech                                       extremely
## 6798               Georgia_Tech                                         feature
## 6799               Georgia_Tech                                          filter
## 6800               Georgia_Tech                                         finally
## 6801               Georgia_Tech                                            flow
## 6802               Georgia_Tech                                        focusing
## 6803               Georgia_Tech                                          fooled
## 6804               Georgia_Tech                                     formulation
## 6805               Georgia_Tech                                           found
## 6806               Georgia_Tech                                        friedman
## 6807               Georgia_Tech                                        function
## 6808               Georgia_Tech                                            game
## 6809               Georgia_Tech                                          gatech
## 6810               Georgia_Tech                                      generative
## 6811               Georgia_Tech                                          ghaoui
## 6812               Georgia_Tech                                            gods
## 6813               Georgia_Tech                                         goliath
## 6814               Georgia_Tech                                       gradients
## 6815               Georgia_Tech                                          graphs
## 6816               Georgia_Tech                                          hastie
## 6817               Georgia_Tech                                           heavy
## 6818               Georgia_Tech                                             hom
## 6819               Georgia_Tech                                       homeworks
## 6820               Georgia_Tech                                            hope
## 6821               Georgia_Tech                                          hybrid
## 6822               Georgia_Tech                                       initially
## 6823               Georgia_Tech                                     instruction
## 6824               Georgia_Tech                                      instructor
## 6825               Georgia_Tech                                         integer
## 6826               Georgia_Tech                                   interpolation
## 6827               Georgia_Tech                                    introductory
## 6828               Georgia_Tech                                          ismail
## 6829               Georgia_Tech                                         johnson
## 6830               Georgia_Tech                                     katsaggelos
## 6831               Georgia_Tech                                             kkt
## 6832               Georgia_Tech                                        lagrange
## 6833               Georgia_Tech                                        language
## 6834               Georgia_Tech                                      leveraging
## 6835               Georgia_Tech                                             lin
## 6836               Georgia_Tech                                            list
## 6837               Georgia_Tech                                           lives
## 6838               Georgia_Tech                                        logistic
## 6839               Georgia_Tech                                      luenberger
## 6840               Georgia_Tech                                        machines
## 6841               Georgia_Tech                                          magdon
## 6842               Georgia_Tech                                            main
## 6843               Georgia_Tech                                            mark
## 6844               Georgia_Tech                                          master
## 6845               Georgia_Tech                                        material
## 6846               Georgia_Tech                                            math
## 6847               Georgia_Tech                                            mdav
## 6848               Georgia_Tech                                         meaning
## 6849               Georgia_Tech                                         meeting
## 6850               Georgia_Tech                                        meetings
## 6851               Georgia_Tech                                        mlodinow
## 6852               Georgia_Tech                                        modality
## 6853               Georgia_Tech                                            mode
## 6854               Georgia_Tech                                          models
## 6855               Georgia_Tech                                           modem
## 6856               Georgia_Tech                                          modern
## 6857               Georgia_Tech                                         mostafa
## 6858               Georgia_Tech                                      nemirovski
## 6859               Georgia_Tech                                      nesterov's
## 6860               Georgia_Tech                                          neural
## 6861               Georgia_Tech                                          newton
## 6862               Georgia_Tech                                        newton's
## 6863               Georgia_Tech                                         nocedal
## 6864               Georgia_Tech                                           noise
## 6865               Georgia_Tech                                            note
## 6866               Georgia_Tech                                           notes
## 6867               Georgia_Tech                                          notion
## 6868               Georgia_Tech                                         notions
## 6869               Georgia_Tech                                          o'neil
## 6870               Georgia_Tech                                        overview
## 6871               Georgia_Tech                                             pdf
## 6872               Georgia_Tech                                         pdffrom
## 6873               Georgia_Tech                                       portfolio
## 6874               Georgia_Tech                                          posing
## 6875               Georgia_Tech                                            post
## 6876               Georgia_Tech                                       potpourri
## 6877               Georgia_Tech                                           power
## 6878               Georgia_Tech                                   prerequisites
## 6879               Georgia_Tech                                   presentations
## 6880               Georgia_Tech                                          python
## 6881               Georgia_Tech                                           quasi
## 6882               Georgia_Tech                                          random
## 6883               Georgia_Tech                                  recommendation
## 6884               Georgia_Tech                                         refined
## 6885               Georgia_Tech                                   reinforcement
## 6886               Georgia_Tech                                         related
## 6887               Georgia_Tech                                      remarkable
## 6888               Georgia_Tech                                        remotely
## 6889               Georgia_Tech                                       represent
## 6890               Georgia_Tech                                        required
## 6891               Georgia_Tech                                      requisites
## 6892               Georgia_Tech                                         reserve
## 6893               Georgia_Tech                                        reserved
## 6894               Georgia_Tech                                            risk
## 6895               Georgia_Tech                                        rotating
## 6896               Georgia_Tech                                           rules
## 6897               Georgia_Tech                                        schedule
## 6898               Georgia_Tech                                        schneier
## 6899               Georgia_Tech                                       selection
## 6900               Georgia_Tech                                    semidefinite
## 6901               Georgia_Tech                                       september
## 6902               Georgia_Tech                                           short
## 6903               Georgia_Tech                                          signal
## 6904               Georgia_Tech                                          silver
## 6905               Georgia_Tech                                         simplex
## 6906               Georgia_Tech                                          skills
## 6907               Georgia_Tech                                          smooth
## 6908               Georgia_Tech                                          social
## 6909               Georgia_Tech                                       solutions
## 6910               Georgia_Tech                                           space
## 6911               Georgia_Tech                                     statistical
## 6912               Georgia_Tech                                      stochastic
## 6913               Georgia_Tech                                           story
## 6914               Georgia_Tech                                         student
## 6915               Georgia_Tech                                         support
## 6916               Georgia_Tech                                        syllabus
## 6917               Georgia_Tech                                          taking
## 6918               Georgia_Tech                                             tal
## 6919               Georgia_Tech                                           taleb
## 6920               Georgia_Tech                                          taught
## 6921               Georgia_Tech                                        teaching
## 6922               Georgia_Tech                                       technical
## 6923               Georgia_Tech                                            text
## 6924               Georgia_Tech                                           theme
## 6925               Georgia_Tech                                          theory
## 6926               Georgia_Tech                                       thursdays
## 6927               Georgia_Tech                                      tibshirani
## 6928               Georgia_Tech                                          topics
## 6929               Georgia_Tech                                        tracking
## 6930               Georgia_Tech                                       trefethen
## 6931               Georgia_Tech                                      tsitsiklis
## 6932               Georgia_Tech                                         tuesday
## 6933               Georgia_Tech                                        tuesdays
## 6934               Georgia_Tech                                   uncomfortable
## 6935               Georgia_Tech                                   unconstrained
## 6936               Georgia_Tech                                    vanderberghe
## 6937               Georgia_Tech                                         vectors
## 6938               Georgia_Tech                                            walk
## 6939               Georgia_Tech                                       wasserman
## 6940               Georgia_Tech                                           watch
## 6941               Georgia_Tech                                            watt
## 6942               Georgia_Tech                                         weapons
## 6943               Georgia_Tech                                           weeks
## 6944               Georgia_Tech                                          wright
## 6945                    Harvard                                      accessible
## 6946                    Harvard                                  accommodations
## 6947                    Harvard                                     acquisition
## 6948                    Harvard                                        actively
## 6949                    Harvard                                      activities
## 6950                    Harvard                                           added
## 6951                    Harvard                                        addition
## 6952                    Harvard                                      additional
## 6953                    Harvard                                          adhere
## 6954                    Harvard                                           admin
## 6955                    Harvard                                  administration
## 6956                    Harvard                                        advanced
## 6957                    Harvard                                         analyze
## 6958                    Harvard                                       analyzing
## 6959                    Harvard                                       anonymous
## 6960                    Harvard                                           apply
## 6961                    Harvard                                        approach
## 6962                    Harvard                                      approached
## 6963                    Harvard                                           array
## 6964                    Harvard                                        assigned
## 6965                    Harvard                                       assistant
## 6966                    Harvard                                      attendance
## 6967                    Harvard                                   automatically
## 6968                    Harvard                                          basics
## 6969                    Harvard                                             box
## 6970                    Harvard                                           bruce
## 6971                    Harvard                                     bruce_huang
## 6972                    Harvard                                        business
## 6973                    Harvard                                     calculation
## 6974                    Harvard                                           chang
## 6975                    Harvard                                          charts
## 6976                    Harvard                                            chat
## 6977                    Harvard                                          choose
## 6978                    Harvard                                             chu
## 6979                    Harvard                                   clarification
## 6980                    Harvard                                  clarifications
## 6981                    Harvard                                        cleaning
## 6982                    Harvard                                         clement
## 6983                    Harvard                                           cloud
## 6984                    Harvard                                 collaboratively
## 6985                    Harvard                                        comments
## 6986                    Harvard                                       committed
## 6987                    Harvard                                     communicate
## 6988                    Harvard                                       community
## 6989                    Harvard                                        complete
## 6990                    Harvard                                      completion
## 6991                    Harvard                                          comply
## 6992                    Harvard                                   comprehensive
## 6993                    Harvard                                      conference
## 6994                    Harvard                                   configuration
## 6995                    Harvard                                    connectivity
## 6996                    Harvard                                   consideration
## 6997                    Harvard                                     constructor
## 6998                    Harvard                                        controls
## 6999                    Harvard                                         correct
## 7000                    Harvard                                       correctly
## 7001                    Harvard                                          credit
## 7002                    Harvard                                         current
## 7003                    Harvard                                          cursor
## 7004                    Harvard                                        deadline
## 7005                    Harvard                                          degree
## 7006                    Harvard                                         demands
## 7007                    Harvard                                     demonstrate
## 7008                    Harvard                                     description
## 7009                    Harvard                                         details
## 7010                    Harvard                                      determined
## 7011                    Harvard                                      developing
## 7012                    Harvard                                     development
## 7013                    Harvard                                    disabilities
## 7014                    Harvard                                      discovered
## 7015                    Harvard                                      documented
## 7016                    Harvard                                        download
## 7017                    Harvard                                           draft
## 7018                    Harvard                                     emphasizing
## 7019                    Harvard                                   encapsulation
## 7020                    Harvard                                      encouraged
## 7021                    Harvard                                     environment
## 7022                    Harvard                                      equivalent
## 7023                    Harvard                                           error
## 7024                    Harvard                                          errors
## 7025                    Harvard                                        expected
## 7026                    Harvard                                         explain
## 7027                    Harvard                                         express
## 7028                    Harvard                                     expressions
## 7029                    Harvard                                           extra
## 7030                    Harvard                                      extraction
## 7031                    Harvard                                         faculty
## 7032                    Harvard                                 fas.harvard.edu
## 7033                    Harvard                                         fellows
## 7034                    Harvard                                           field
## 7035                    Harvard                                           files
## 7036                    Harvard                                         focuses
## 7037                    Harvard                                          follow
## 7038                    Harvard                                     foundations
## 7039                    Harvard                                            free
## 7040                    Harvard                                         fulfill
## 7041                    Harvard                                      generation
## 7042                    Harvard                                         grading
## 7043                    Harvard                                         granted
## 7044                    Harvard                                          graphs
## 7045                    Harvard                                       guarantee
## 7046                    Harvard                                           guide
## 7047                    Harvard                                            head
## 7048                    Harvard                                           huang
## 7049                    Harvard                                         include
## 7050                    Harvard                                        includes
## 7051                    Harvard                                       incorrect
## 7052                    Harvard                                          inform
## 7053                    Harvard                                        informal
## 7054                    Harvard                                     information
## 7055                    Harvard                                  infrastructure
## 7056                    Harvard                                     inheritance
## 7057                    Harvard                                         install
## 7058                    Harvard                                    installation
## 7059                    Harvard                                       intensive
## 7060                    Harvard                                          intent
## 7061                    Harvard                                        internet
## 7062                    Harvard                                          issues
## 7063                    Harvard                                             key
## 7064                    Harvard                                        kimberly
## 7065                    Harvard                                       knowledge
## 7066                    Harvard                                          laptop
## 7067                    Harvard                                         laptops
## 7068                    Harvard                                             lee
## 7069                    Harvard                                         license
## 7070                    Harvard                                          linked
## 7071                    Harvard                                           links
## 7072                    Harvard                                           linux
## 7073                    Harvard                                            list
## 7074                    Harvard                                           lower
## 7075                    Harvard                                           lucas
## 7076                    Harvard                                             mac
## 7077                    Harvard                                          manage
## 7078                    Harvard                                    manipulation
## 7079                    Harvard                                            maps
## 7080                    Harvard                                        master's
## 7081                    Harvard                                       materials
## 7082                    Harvard                                        meetings
## 7083                    Harvard                                           meets
## 7084                    Harvard                                         michael
## 7085                    Harvard                                       microsoft
## 7086                    Harvard                                          minute
## 7087                    Harvard                                          modify
## 7088                    Harvard                                            moon
## 7089                    Harvard                                        multiple
## 7090                    Harvard                                        notebook
## 7091                    Harvard                                          object
## 7092                    Harvard                                          obtain
## 7093                    Harvard                                          offers
## 7094                    Harvard                                              oo
## 7095                    Harvard                                       operating
## 7096                    Harvard                                        oriented
## 7097                    Harvard                                        original
## 7098                    Harvard                                        outcomes
## 7099                    Harvard                                     overwhelmed
## 7100                    Harvard                                          pandas
## 7101                    Harvard                                     participate
## 7102                    Harvard                                   participation
## 7103                    Harvard                                           peers
## 7104                    Harvard                                         penalty
## 7105                    Harvard                                         percent
## 7106                    Harvard                                         perform
## 7107                    Harvard                                            ph.d
## 7108                    Harvard                                          posted
## 7109                    Harvard                                        preclass
## 7110                    Harvard                                         prepare
## 7111                    Harvard                                   prerequisites
## 7112                    Harvard                                      principles
## 7113                    Harvard                                      proctoring
## 7114                    Harvard                                        products
## 7115                    Harvard                                    professional
## 7116                    Harvard                                     programmers
## 7117                    Harvard                                       providing
## 7118                    Harvard                                        question
## 7119                    Harvard                                          random
## 7120                    Harvard                                       recognize
## 7121                    Harvard                                       refresher
## 7122                    Harvard                                       regrading
## 7123                    Harvard                                      relational
## 7124                    Harvard                                       remaining
## 7125                    Harvard                                          remote
## 7126                    Harvard                                        requests
## 7127                    Harvard                                    requirements
## 7128                    Harvard                                       resources
## 7129                    Harvard                                     responsibly
## 7130                    Harvard                                    restrictions
## 7131                    Harvard                                            root
## 7132                    Harvard                                         running
## 7133                    Harvard                                          sample
## 7134                    Harvard                                         satisfy
## 7135                    Harvard                                       scheduled
## 7136                    Harvard                                      scientists
## 7137                    Harvard                                        semester
## 7138                    Harvard                                      separately
## 7139                    Harvard                                       situation
## 7140                    Harvard                                          skills
## 7141                    Harvard                                        software
## 7142                    Harvard                                           solve
## 7143                    Harvard                                           speak
## 7144                    Harvard                                  specifications
## 7145                    Harvard                                           spend
## 7146                    Harvard                                     statistical
## 7147                    Harvard                                       structure
## 7148                    Harvard                                           study
## 7149                    Harvard                                   subdiscipline
## 7150                    Harvard                                      submitting
## 7151                    Harvard                                      successful
## 7152                    Harvard                                      sufficient
## 7153                    Harvard                                          survey
## 7154                    Harvard                                         systems
## 7155                    Harvard                                            ta's
## 7156                    Harvard                                           takes
## 7157                    Harvard                                          taking
## 7158                    Harvard                                           tasks
## 7159                    Harvard                                             tbd
## 7160                    Harvard                                            text
## 7161                    Harvard                                        textbook
## 7162                    Harvard                                          theory
## 7163                    Harvard                                           tools
## 7164                    Harvard                                           topic
## 7165                    Harvard                                          topics
## 7166                    Harvard                                           touch
## 7167                    Harvard                                       transform
## 7168                    Harvard                                  transportation
## 7169                    Harvard                                           types
## 7170                    Harvard                                            typo
## 7171                    Harvard                                      understand
## 7172                    Harvard                                          upload
## 7173                    Harvard                    usingsources.fas.harvard.edu
## 7174                    Harvard                                         variety
## 7175                    Harvard                                          volume
## 7176                    Harvard                                             web
## 7177                    Harvard                                         website
## 7178                    Harvard                                          weekly
## 7179                    Harvard                                            wifi
## 7180                    Harvard                                         windows
## 7181                    Harvard                                       workbench
## 7182                    Harvard                                           world
## 7183                    Harvard                                           wrong
## 7184                        LSU                                             15z
## 7185                        LSU                                             1pm
## 7186                        LSU                                           1s0x0
## 7187                        LSU                                             20a
## 7188                        LSU                                            20be
## 7189                        LSU                                           20can
## 7190                        LSU                                          20code
## 7191                        LSU                                            20is
## 7192                        LSU                                           20pro
## 7193                        LSU                                   20programming
## 7194                        LSU                                    3d30.4094801
## 7195                        LSU                                             3m4
## 7196                        LSU                                             3rd
## 7197                        LSU                                              4d
## 7198                        LSU                                             4m5
## 7199                        LSU                                             8m2
## 7200                        LSU                           academicintegrity.php
## 7201                        LSU                                        accepted
## 7202                        LSU                                          access
## 7203                        LSU                                         account
## 7204                        LSU                                  accountability
## 7205                        LSU                                         achieve
## 7206                        LSU                                     acknowledge
## 7207                        LSU                                          active
## 7208                        LSU                                      activities
## 7209                        LSU                                        addition
## 7210                        LSU                                      additional
## 7211                        LSU                                      addreessed
## 7212                        LSU                                       addressed
## 7213                        LSU                                         adopted
## 7214                        LSU                                        advocacy
## 7215                        LSU                                          affect
## 7216                        LSU                                        affected
## 7217                        LSU                                           ahead
## 7218                        LSU                                        analyses
## 7219                        LSU                                           andor
## 7220                        LSU                                          answer
## 7221                        LSU                                     apologizing
## 7222                        LSU                                      approaches
## 7223                        LSU                                       assistant
## 7224                        LSU                                          assure
## 7225                        LSU                                         attacks
## 7226                        LSU                                          attend
## 7227                        LSU                                       attention
## 7228                        LSU                                           aware
## 7229                        LSU                                    biodiversity
## 7230                        LSU                                            biol
## 7231                        LSU                                        biol4800
## 7232                        LSU                                      biological
## 7233                        LSU                                       biologist
## 7234                        LSU                                           bring
## 7235                        LSU                                         burdles
## 7236                        LSU                                        changing
## 7237                        LSU                                         charges
## 7238                        LSU                                       citations
## 7239                        LSU                                         citizen
## 7240                        LSU                                  clarifications
## 7241                        LSU                                         classes
## 7242                        LSU                                      classmates
## 7243                        LSU                                         climate
## 7244                        LSU                                           clone
## 7245                        LSU                                         combine
## 7246                        LSU                                        combines
## 7247                        LSU                                         command
## 7248                        LSU                                   communicating
## 7249                        LSU                                   communication
## 7250                        LSU                                  communications
## 7251                        LSU                                            comp
## 7252                        LSU                                        complete
## 7253                        LSU                                     complicated
## 7254                        LSU                                       component
## 7255                        LSU                                     computation
## 7256                        LSU                                   computational
## 7257                        LSU                                       computing
## 7258                        LSU                                      considered
## 7259                        LSU                                     contributes
## 7260                        LSU                                         control
## 7261                        LSU                                        covering
## 7262                        LSU                                        critical
## 7263                        LSU                                      criticisms
## 7264                        LSU                                           cross
## 7265                        LSU                                           curve
## 7266                        LSU                                        daijiang
## 7267                        LSU                                        datasets
## 7268                        LSU                                            date
## 7269                        LSU                                        deadline
## 7270                        LSU                                         decades
## 7271                        LSU                                        december
## 7272                        LSU                                     demonstrate
## 7273                        LSU                                   demonstrating
## 7274                        LSU                                      department
## 7275                        LSU                                      derogatory
## 7276                        LSU                                          design
## 7277                        LSU                                     development
## 7278                        LSU                                     differences
## 7279                        LSU                                       differing
## 7280                        LSU                                      difficulty
## 7281                        LSU                                    disciplinary
## 7282                        LSU                                         discuss
## 7283                        LSU                                       discussed
## 7284                        LSU                                           dli30
## 7285                        LSU                                      dlilab.com
## 7286                        LSU                                          domain
## 7287                        LSU                                        download
## 7288                        LSU                                            drop
## 7289                        LSU                                          easier
## 7290                        LSU                                          easily
## 7291                        LSU                                          effort
## 7292                        LSU                                        elements
## 7293                        LSU                                         empathy
## 7294                        LSU                                en.wikipedia.org
## 7295                        LSU                                       encounter
## 7296                        LSU                                       encourage
## 7297                        LSU                                         enhance
## 7298                        LSU                                          entire
## 7299                        LSU                                   establishment
## 7300                        LSU                                       evaluated
## 7301                        LSU                                      evaluation
## 7302                        LSU                                       exercises
## 7303                        LSU                                    expectations
## 7304                        LSU                                      experience
## 7305                        LSU                                        explicit
## 7306                        LSU                                         explore
## 7307                        LSU                                         extract
## 7308                        LSU                                         faculty
## 7309                        LSU                                         failing
## 7310                        LSU                                        familiar
## 7311                        LSU                                         feature
## 7312                        LSU                                        feedback
## 7313                        LSU                                       feedbacks
## 7314                        LSU                                            feel
## 7315                        LSU                                           field
## 7316                        LSU                                         figures
## 7317                        LSU                                            fine
## 7318                        LSU                                        finished
## 7319                        LSU                                        focusing
## 7320                        LSU                                          format
## 7321                        LSU                                            free
## 7322                        LSU                                         fueling
## 7323                        LSU                                   functionality
## 7324                        LSU                                          gather
## 7325                        LSU                                          gender
## 7326                        LSU                                          giving
## 7327                        LSU                                            goal
## 7328                        LSU                                        googling
## 7329                        LSU                                      gracefully
## 7330                        LSU                                          grades
## 7331                        LSU                                        graduate
## 7332                        LSU                                      graduation
## 7333                        LSU                                        gramming
## 7334                        LSU                                         graphic
## 7335                        LSU                                              gs
## 7336                        LSU                                      guidelines
## 7337                        LSU                                           hands
## 7338                        LSU                                      harassment
## 7339                        LSU                                           honor
## 7340                        LSU                                          honors
## 7341                        LSU                                          hosted
## 7342                        LSU                                             i.e
## 7343                        LSU                                             ide
## 7344                        LSU                                         ideally
## 7345                        LSU                                           ideas
## 7346                        LSU                                        identify
## 7347                        LSU                                      identities
## 7348                        LSU                                         imagery
## 7349                        LSU                                   inappropriate
## 7350                        LSU                                       including
## 7351                        LSU                                       inclusive
## 7352                        LSU                                   independently
## 7353                        LSU                                      individual
## 7354                        LSU                                     individuals
## 7355                        LSU                                          inside
## 7356                        LSU                                       insulting
## 7357                        LSU                                      integrated
## 7358                        LSU                               interdisciplinary
## 7359                        LSU                                    intermediate
## 7360                        LSU                                        johnston
## 7361                        LSU                                             key
## 7362                        LSU                                        kindness
## 7363                        LSU                                       languages
## 7364                        LSU                                           learn
## 7365                        LSU                                         learned
## 7366                        LSU                                        lectures
## 7367                        LSU                                              li
## 7368                        LSU                                         library
## 7369                        LSU                                            line
## 7370                        LSU                                           linux
## 7371                        LSU                                        literate
## 7372                        LSU                            literate_programming
## 7373                        LSU                                      literature
## 7374                        LSU                                          living
## 7375                        LSU                                         located
## 7376                        LSU                                        location
## 7377                        LSU                                       locations
## 7378                        LSU                                            loss
## 7379                        LSU                                            lots
## 7380                        LSU                                       louisiana
## 7381                        LSU                                          lowest
## 7382                        LSU                                             lsb
## 7383                        LSU                                          lsb125
## 7384                        LSU                                           lsu's
## 7385                        LSU                                           macos
## 7386                        LSU                               mailto:disability
## 7387                        LSU                                    mailto:dli30
## 7388                        LSU                                        maintain
## 7389                        LSU                                        makrdown
## 7390                        LSU                                      management
## 7391                        LSU                                    manipulation
## 7392                        LSU                                            maps
## 7393                        LSU                                        markdown
## 7394                        LSU                                           means
## 7395                        LSU                                     measurement
## 7396                        LSU                                         meeting
## 7397                        LSU                                         minimum
## 7398                        LSU                                           minus
## 7399                        LSU                                        mistakes
## 7400                        LSU                                           mixed
## 7401                        LSU                                          models
## 7402                        LSU                                          moodle
## 7403                        LSU                                     nationality
## 7404                        LSU                                            note
## 7405                        LSU                                           notes
## 7406                        LSU                                         offense
## 7407                        LSU                                      ogenerated
## 7408                        LSU                                       operating
## 7409                        LSU                                        opinions
## 7410                        LSU                                   opportunities
## 7411                        LSU                                     opportunity
## 7412                        LSU                                       organized
## 7413                        LSU                                         outcome
## 7414                        LSU                                        overcome
## 7415                        LSU                                        overview
## 7416                        LSU                                            pace
## 7417                        LSU                                         package
## 7418                        LSU                                            page
## 7419                        LSU                                     participate
## 7420                        LSU                                         passing
## 7421                        LSU                                            past
## 7422                        LSU                                          people
## 7423                        LSU                                         percent
## 7424                        LSU                                         perform
## 7425                        LSU                                       permanent
## 7426                        LSU                                      permission
## 7427                        LSU                                          person
## 7428                        LSU                                    perspectives
## 7429                        LSU                                        physical
## 7430                        LSU                                       platforms
## 7431                        LSU                                       political
## 7432                        LSU                                        positive
## 7433                        LSU                                            post
## 7434                        LSU                                      previously
## 7435                        LSU                                       privately
## 7436                        LSU                                       probation
## 7437                        LSU                                       processes
## 7438                        LSU                                        products
## 7439                        LSU                                       profesoor
## 7440                        LSU                                    professional
## 7441                        LSU                                        programs
## 7442                        LSU                                      progresses
## 7443                        LSU                                     project.org
## 7444                        LSU                                        projects
## 7445                        LSU                                        pronouns
## 7446                        LSU                                         provide
## 7447                        LSU                                          public
## 7448                        LSU                                     publishable
## 7449                        LSU                                      publishing
## 7450                        LSU                                            push
## 7451                        LSU                                         quality
## 7452                        LSU                                            race
## 7453                        LSU                                         rapidly
## 7454                        LSU                                           reach
## 7455                        LSU                                            read
## 7456                        LSU                                     recommended
## 7457                        LSU                                         recover
## 7458                        LSU                                        referred
## 7459                        LSU                                     registering
## 7460                        LSU                                       regularly
## 7461                        LSU                                         related
## 7462                        LSU                                        relevant
## 7463                        LSU                                        religion
## 7464                        LSU                                          remote
## 7465                        LSU                                      repository
## 7466                        LSU                                      represents
## 7467                        LSU                                       reproduce
## 7468                        LSU                                        requests
## 7469                        LSU                                        required
## 7470                        LSU                                      requisites
## 7471                        LSU                                      requisties
## 7472                        LSU                                      respectful
## 7473                        LSU                                         respond
## 7474                        LSU                                            rise
## 7475                        LSU                                       rmarkdown
## 7476                        LSU                                             run
## 7477                        LSU                                         running
## 7478                        LSU                                           scale
## 7479                        LSU                                        schedule
## 7480                        LSU                                       scheduled
## 7481                        LSU                                        sciences
## 7482                        LSU                                       scientist
## 7483                        LSU                                           score
## 7484                        LSU                                          scores
## 7485                        LSU                                       searching
## 7486                        LSU                                         section
## 7487                        LSU                                        semester
## 7488                        LSU                                            send
## 7489                        LSU                                             set
## 7490                        LSU                                         setting
## 7491                        LSU                                       sexuality
## 7492                        LSU                                      sexualized
## 7493                        LSU                                           short
## 7494                        LSU                                          simple
## 7495                        LSU                                          skills
## 7496                        LSU                                          slides
## 7497                        LSU                                           solve
## 7498                        LSU                                          source
## 7499                        LSU                                         sources
## 7500                        LSU                                         special
## 7501                        LSU                                           staff
## 7502                        LSU                                       statement
## 7503                        LSU                                       statistic
## 7504                        LSU                                     statistical
## 7505                        LSU                                      statistics
## 7506                        LSU                                        strongly
## 7507                        LSU                                         subject
## 7508                        LSU                                          submit
## 7509                        LSU                                     suggestions
## 7510                        LSU                                        supports
## 7511                        LSU                                       suspected
## 7512                        LSU                                         systems
## 7513                        LSU                                          tables
## 7514                        LSU                                            talk
## 7515                        LSU                                       telephone
## 7516                        LSU                                       temporary
## 7517                        LSU                                           tests
## 7518                        LSU                                       textbooks
## 7519                        LSU                                        thursday
## 7520                        LSU                                           times
## 7521                        LSU                                           tools
## 7522                        LSU                                           topic
## 7523                        LSU                                           track
## 7524                        LSU                                    transferable
## 7525                        LSU                                        trolling
## 7526                        LSU                                              tu
## 7527                        LSU                                         tuesday
## 7528                        LSU                                    unacceptable
## 7529                        LSU                                   uncomfortable
## 7530                        LSU                                   undergraduate
## 7531                        LSU                                      understand
## 7532                        LSU                                      unsolvable
## 7533                        LSU                                         unusual
## 7534                        LSU                                         updates
## 7535                        LSU                                         version
## 7536                        LSU                                        versions
## 7537                        LSU                                          victim
## 7538                        LSU                                      viewpoints
## 7539                        LSU                                       violating
## 7540                        LSU                                   visualization
## 7541                        LSU                                       visualize
## 7542                        LSU                                         volumes
## 7543                        LSU                                            wait
## 7544                        LSU                                         warming
## 7545                        LSU                                          wealth
## 7546                        LSU                                             web
## 7547                        LSU                                         website
## 7548                        LSU                                        websites
## 7549                        LSU                                            week
## 7550                        LSU                                       welcoming
## 7551                        LSU                                            wiki
## 7552                        LSU                                         windows
## 7553                        LSU                                       workflows
## 7554                        LSU                                           world
## 7555                        LSU                                           worth
## 7556                        LSU                                  www.google.com
## 7557                        LSU                                           www.r
## 7558                        LSU                                 www.rstudio.com
## 7559                        LSU                                            zoom
## 7560                        MIT                                           2,500
## 7561                        MIT                                             2nd
## 7562                        MIT                                          6.00sc
## 7563                        MIT                                        accepted
## 7564                        MIT                                   accessibility
## 7565                        MIT                                      activities
## 7566                        MIT                                           ahead
## 7567                        MIT                                           aimed
## 7568                        MIT                                     application
## 7569                        MIT                                          assign
## 7570                        MIT                                           avoid
## 7571                        MIT                                          backup
## 7572                        MIT                                           based
## 7573                        MIT                                       beginning
## 7574                        MIT                                           books
## 7575                        MIT                                             buy
## 7576                        MIT                                        calendar
## 7577                        MIT                                           carlo
## 7578                        MIT                                          chance
## 7579                        MIT                                           check
## 7580                        MIT                                          choice
## 7581                        MIT                                         closely
## 7582                        MIT                                      clustering
## 7583                        MIT                                         commons
## 7584                        MIT                                         compete
## 7585                        MIT                                      completion
## 7586                        MIT                                      components
## 7587                        MIT                                   computational
## 7588                        MIT                                        computed
## 7589                        MIT                                      conditions
## 7590                        MIT                                      confidence
## 7591                        MIT                                            cont
## 7592                        MIT                                            copy
## 7593                        MIT                                       correctly
## 7594                        MIT                                         courses
## 7595                        MIT                                        creative
## 7596                        MIT                                           dates
## 7597                        MIT                                        deadline
## 7598                        MIT                                          degree
## 7599                        MIT                                          detail
## 7600                        MIT                                        discrete
## 7601                        MIT                                          double
## 7602                        MIT                                              ed
## 7603                        MIT                                       education
## 7604                        MIT                                       educators
## 7605                        MIT                                      electrical
## 7606                        MIT                                       emergency
## 7607                        MIT                                      encouraged
## 7608                        MIT                                     engineering
## 7609                        MIT                                           error
## 7610                        MIT                                           excel
## 7611                        MIT                                        expected
## 7612                        MIT                                      experience
## 7613                        MIT                                       extension
## 7614                        MIT                                      extensions
## 7615                        MIT                                            fall
## 7616                        MIT                                         fashion
## 7617                        MIT                                             foy
## 7618                        MIT                                          freely
## 7619                        MIT                                          global
## 7620                        MIT                                          google
## 7621                        MIT                                          graded
## 7622                        MIT                                         grading
## 7623                        MIT                                           grant
## 7624                        MIT                                           graph
## 7625                        MIT                                          guttag
## 7626                        MIT                                            hard
## 7627                        MIT                                             i.e
## 7628                        MIT                                       including
## 7629                        MIT                                            info
## 7630                        MIT                                     information
## 7631                        MIT                                       institute
## 7632                        MIT                                      instructor
## 7633                        MIT                                        internet
## 7634                        MIT                                       intervals
## 7635                        MIT                                         involve
## 7636                        MIT                                            isbn
## 7637                        MIT                                            john
## 7638                        MIT                                     justifiably
## 7639                        MIT                                             key
## 7640                        MIT                                       knowledge
## 7641                        MIT                                        language
## 7642                        MIT                                           learn
## 7643                        MIT                                        learners
## 7644                        MIT                                         license
## 7645                        MIT                                         machine
## 7646                        MIT                                       mandatory
## 7647                        MIT                                   massachusetts
## 7648                        MIT                                        maximize
## 7649                        MIT                                         maximum
## 7650                        MIT                                         meeting
## 7651                        MIT                                            menu
## 7652                        MIT                                         midterm
## 7653                        MIT                                           minor
## 7654                        MIT                                          models
## 7655                        MIT                                           monte
## 7656                        MIT                                     necessarily
## 7657                        MIT                                           notes
## 7658                        MIT                                           offer
## 7659                        MIT                                          option
## 7660                        MIT                                        parallel
## 7661                        MIT                                       parallell
## 7662                        MIT                                         percent
## 7663                        MIT                                     percentages
## 7664                        MIT                                      permission
## 7665                        MIT                                            pile
## 7666                        MIT                                            plan
## 7667                        MIT                                         portion
## 7668                        MIT                                        position
## 7669                        MIT                                   prerequisites
## 7670                        MIT                                         preview
## 7671                        MIT                                           print
## 7672                        MIT                                        projects
## 7673                        MIT                                           proud
## 7674                        MIT                                            quiz
## 7675                        MIT                                          random
## 7676                        MIT                                         receive
## 7677                        MIT                                       regularly
## 7678                        MIT                                       remaining
## 7679                        MIT                                        required
## 7680                        MIT                                    requirements
## 7681                        MIT                                        research
## 7682                        MIT                                            roll
## 7683                        MIT                                         roughly
## 7684                        MIT                                             run
## 7685                        MIT                                        sampling
## 7686                        MIT                                       satisfied
## 7687                        MIT                                       satisfies
## 7688                        MIT                                             ses
## 7689                        MIT                                         sharing
## 7690                        MIT                                     significant
## 7691                        MIT                                      simulation
## 7692                        MIT                                           staff
## 7693                        MIT                                        standard
## 7694                        MIT                                        starting
## 7695                        MIT                                          starts
## 7696                        MIT                                      stochastic
## 7697                        MIT                                        strategy
## 7698                        MIT                                        strongly
## 7699                        MIT                                         subject
## 7700                        MIT                                        subjects
## 7701                        MIT                                      submission
## 7702                        MIT                                     submissions
## 7703                        MIT                                          submit
## 7704                        MIT                                         suggest
## 7705                        MIT                                       surprises
## 7706                        MIT                                        syllabus
## 7707                        MIT                                      technology
## 7708                        MIT                                           terms
## 7709                        MIT                                       theoretic
## 7710                        MIT                                            time
## 7711                        MIT                                           times
## 7712                        MIT                                           track
## 7713                        MIT                                   undergraduate
## 7714                        MIT                                        uploaded
## 7715                        MIT                                            urge
## 7716                        MIT                                           walks
## 7717                        MIT                                          weight
## 7718                        MIT                                           world
## 7719                        MIT                                           worth
## 7720                        MIT                                            wrap
## 7721            Montgomery_Coll                                            117a
## 7722            Montgomery_Coll                                         ability
## 7723            Montgomery_Coll                                          accept
## 7724            Montgomery_Coll                                        accepted
## 7725            Montgomery_Coll                           access.blackboard.com
## 7726            Montgomery_Coll                                   accommodation
## 7727            Montgomery_Coll                                         account
## 7728            Montgomery_Coll                                     acknowledge
## 7729            Montgomery_Coll                                      additional
## 7730            Montgomery_Coll                                  administrative
## 7731            Montgomery_Coll                                          agreed
## 7732            Montgomery_Coll                                           alert
## 7733            Montgomery_Coll                                        analytic
## 7734            Montgomery_Coll                                       analyzing
## 7735            Montgomery_Coll                                         applied
## 7736            Montgomery_Coll                                           apply
## 7737            Montgomery_Coll                             archive.ics.uci.edu
## 7738            Montgomery_Coll                                          arises
## 7739            Montgomery_Coll                                    arrangements
## 7740            Montgomery_Coll                                            aspx
## 7741            Montgomery_Coll                                        assemble
## 7742            Montgomery_Coll                                          assist
## 7743            Montgomery_Coll                                        auditing
## 7744            Montgomery_Coll                                            bank
## 7745            Montgomery_Coll                                            barr
## 7746            Montgomery_Coll                                    blackboard’s
## 7747            Montgomery_Coll                                          bottom
## 7748            Montgomery_Coll                                 breakdowncourse
## 7749            Montgomery_Coll                                           bring
## 7750            Montgomery_Coll                                        bringing
## 7751            Montgomery_Coll                                         browser
## 7752            Montgomery_Coll                                            bsad
## 7753            Montgomery_Coll                                          campus
## 7754            Montgomery_Coll                                       cancelled
## 7755            Montgomery_Coll                                        capacity
## 7756            Montgomery_Coll                                         catalog
## 7757            Montgomery_Coll                                           cb122
## 7758            Montgomery_Coll                                      centinkaya
## 7759            Montgomery_Coll                                          change
## 7760            Montgomery_Coll                                 characteristics
## 7761            Montgomery_Coll                                            chat
## 7762            Montgomery_Coll                                           check
## 7763            Montgomery_Coll                                        choosing
## 7764            Montgomery_Coll                                   circumstances
## 7765            Montgomery_Coll                                       classroom
## 7766            Montgomery_Coll                                           clean
## 7767            Montgomery_Coll                                          coding
## 7768            Montgomery_Coll                                      collecting
## 7769            Montgomery_Coll                                     collegewide
## 7770            Montgomery_Coll                                       college’s
## 7771            Montgomery_Coll                                          common
## 7772            Montgomery_Coll                                        commonly
## 7773            Montgomery_Coll                                   communication
## 7774            Montgomery_Coll                                  communications
## 7775            Montgomery_Coll                                        complete
## 7776            Montgomery_Coll                                      completion
## 7777            Montgomery_Coll                                       computing
## 7778            Montgomery_Coll                                        conducts
## 7779            Montgomery_Coll                                         consent
## 7780            Montgomery_Coll                                        consumer
## 7781            Montgomery_Coll                                            copy
## 7782            Montgomery_Coll                                          corner
## 7783            Montgomery_Coll                                  correspondence
## 7784            Montgomery_Coll                                      coursework
## 7785            Montgomery_Coll                                          create
## 7786            Montgomery_Coll                                        creating
## 7787            Montgomery_Coll                                         credits
## 7788            Montgomery_Coll                                             crn
## 7789            Montgomery_Coll                                    customizable
## 7790            Montgomery_Coll                              data.worldbank.org
## 7791            Montgomery_Coll                                         dataset
## 7792            Montgomery_Coll                                            date
## 7793            Montgomery_Coll                                           dates
## 7794            Montgomery_Coll                                        deadline
## 7795            Montgomery_Coll                                         delayed
## 7796            Montgomery_Coll                                          delays
## 7797            Montgomery_Coll                                      dependents
## 7798            Montgomery_Coll                                        describe
## 7799            Montgomery_Coll                                     description
## 7800            Montgomery_Coll                                            diez
## 7801            Montgomery_Coll                                      discretion
## 7802            Montgomery_Coll                                         discuss
## 7803            Montgomery_Coll                                        distance
## 7804            Montgomery_Coll                                        doctor’s
## 7805            Montgomery_Coll                                   documentation
## 7806            Montgomery_Coll                                        downtime
## 7807            Montgomery_Coll                                            drop
## 7808            Montgomery_Coll                                             dss
## 7809            Montgomery_Coll                                     educational
## 7810            Montgomery_Coll                                      electronic
## 7811            Montgomery_Coll                                        elements
## 7812            Montgomery_Coll                                          emails
## 7813            Montgomery_Coll                                      equivalent
## 7814            Montgomery_Coll                                      evacuation
## 7815            Montgomery_Coll                                     evacuations
## 7816            Montgomery_Coll                                      evaluation
## 7817            Montgomery_Coll                                           event
## 7818            Montgomery_Coll                                           excel
## 7819            Montgomery_Coll                                          expect
## 7820            Montgomery_Coll                                     exploratory
## 7821            Montgomery_Coll                                        explorer
## 7822            Montgomery_Coll                                      extensions
## 7823            Montgomery_Coll                                     extenuating
## 7824            Montgomery_Coll                                           extra
## 7825            Montgomery_Coll                                        feedback
## 7826            Montgomery_Coll                                         finally
## 7827            Montgomery_Coll                                        findings
## 7828            Montgomery_Coll                                         firefox
## 7829            Montgomery_Coll                                          format
## 7830            Montgomery_Coll                                           found
## 7831            Montgomery_Coll                                     fundamental
## 7832            Montgomery_Coll                                         funeral
## 7833            Montgomery_Coll                                      government
## 7834            Montgomery_Coll                                          graded
## 7835            Montgomery_Coll                                         grading
## 7836            Montgomery_Coll                                       guarantee
## 7837            Montgomery_Coll                                      guidelines
## 7838            Montgomery_Coll                                           happy
## 7839            Montgomery_Coll                                         history
## 7840            Montgomery_Coll                                            home
## 7841            Montgomery_Coll                                            icon
## 7842            Montgomery_Coll                                              id
## 7843            Montgomery_Coll                                         illness
## 7844            Montgomery_Coll                                          impact
## 7845            Montgomery_Coll                                     implemented
## 7846            Montgomery_Coll                                         include
## 7847            Montgomery_Coll                                       index.php
## 7848            Montgomery_Coll                                      indicating
## 7849            Montgomery_Coll                                     inferential
## 7850            Montgomery_Coll                                          inside
## 7851            Montgomery_Coll                                      integrated
## 7852            Montgomery_Coll                                     interactive
## 7853            Montgomery_Coll                                          irvine
## 7854            Montgomery_Coll                                            jeff
## 7855            Montgomery_Coll                                         jeffrey
## 7856            Montgomery_Coll                                          larger
## 7857            Montgomery_Coll                                         learned
## 7858            Montgomery_Coll                                            leek
## 7859            Montgomery_Coll                                            left
## 7860            Montgomery_Coll                                          letter
## 7861            Montgomery_Coll                                            lies
## 7862            Montgomery_Coll                                           links
## 7863            Montgomery_Coll                                             log
## 7864            Montgomery_Coll                                             mac
## 7865            Montgomery_Coll                                     maintenance
## 7866            Montgomery_Coll                                        managing
## 7867            Montgomery_Coll                                     mathematics
## 7868            Montgomery_Coll                                      mcsyllabus
## 7869            Montgomery_Coll                                           means
## 7870            Montgomery_Coll                                            meet
## 7871            Montgomery_Coll                                        military
## 7872            Montgomery_Coll                                            miss
## 7873            Montgomery_Coll                                          missed
## 7874            Montgomery_Coll                                              ml
## 7875            Montgomery_Coll                                        modeling
## 7876            Montgomery_Coll                                          modify
## 7877            Montgomery_Coll                                         morning
## 7878            Montgomery_Coll                                        multiple
## 7879            Montgomery_Coll                                            mymc
## 7880            Montgomery_Coll                                          nature
## 7881            Montgomery_Coll                                         network
## 7882            Montgomery_Coll                                      objectives
## 7883            Montgomery_Coll                                       obtaining
## 7884            Montgomery_Coll                                         offices
## 7885            Montgomery_Coll                                        official
## 7886            Montgomery_Coll                                        openings
## 7887            Montgomery_Coll                                       openintro
## 7888            Montgomery_Coll                                        optional
## 7889            Montgomery_Coll                                        outcomes
## 7890            Montgomery_Coll                                         package
## 7891            Montgomery_Coll                                       penalized
## 7892            Montgomery_Coll                                       personnel
## 7893            Montgomery_Coll                                         pertain
## 7894            Montgomery_Coll                                           phone
## 7895            Montgomery_Coll                                     photographs
## 7896            Montgomery_Coll                                          plain2
## 7897            Montgomery_Coll                                         posting
## 7898            Montgomery_Coll                                       practices
## 7899            Montgomery_Coll                                     preparation
## 7900            Montgomery_Coll                                         prepare
## 7901            Montgomery_Coll                                   prerequisites
## 7902            Montgomery_Coll                                     proficiency
## 7903            Montgomery_Coll                                     programming
## 7904            Montgomery_Coll                                           reach
## 7905            Montgomery_Coll                                            read
## 7906            Montgomery_Coll                                       recognize
## 7907            Montgomery_Coll                                       recommend
## 7908            Montgomery_Coll                                        recorded
## 7909            Montgomery_Coll                                          refund
## 7910            Montgomery_Coll                                        register
## 7911            Montgomery_Coll                                     registering
## 7912            Montgomery_Coll                                     regulations
## 7913            Montgomery_Coll                                            rely
## 7914            Montgomery_Coll                                      repository
## 7915            Montgomery_Coll                                  representative
## 7916            Montgomery_Coll                                        reserves
## 7917            Montgomery_Coll                                         respect
## 7918            Montgomery_Coll                                  responsibility
## 7919            Montgomery_Coll                                         retakes
## 7920            Montgomery_Coll                                        returned
## 7921            Montgomery_Coll                                           rules
## 7922            Montgomery_Coll                                          rundel
## 7923            Montgomery_Coll                                           sa172
## 7924            Montgomery_Coll                                       scheduled
## 7925            Montgomery_Coll                                          screen
## 7926            Montgomery_Coll                                         session
## 7927            Montgomery_Coll                                            sets
## 7928            Montgomery_Coll                                         sharing
## 7929            Montgomery_Coll                                            site
## 7930            Montgomery_Coll                                          skills
## 7931            Montgomery_Coll                                         sources
## 7932            Montgomery_Coll                                              ss
## 7933            Montgomery_Coll                                           st233
## 7934            Montgomery_Coll                                           staff
## 7935            Montgomery_Coll                                       standards
## 7936            Montgomery_Coll                                         stanton
## 7937            Montgomery_Coll                                         started
## 7938            Montgomery_Coll                                       statement
## 7939            Montgomery_Coll                                     statistical
## 7940            Montgomery_Coll                                         staying
## 7941            Montgomery_Coll                                           steps
## 7942            Montgomery_Coll                                           style
## 7943            Montgomery_Coll                                     submissions
## 7944            Montgomery_Coll                                          submit
## 7945            Montgomery_Coll                                         success
## 7946            Montgomery_Coll                                      successful
## 7947            Montgomery_Coll                                          sunday
## 7948            Montgomery_Coll                                        supplies
## 7949            Montgomery_Coll                                      technology
## 7950            Montgomery_Coll                                        textbook
## 7951            Montgomery_Coll                                       textbooks
## 7952            Montgomery_Coll                                          ticket
## 7953            Montgomery_Coll                                           times
## 7954            Montgomery_Coll                                           title
## 7955            Montgomery_Coll                                         tobacco
## 7956            Montgomery_Coll                                             top
## 7957            Montgomery_Coll                                              tp
## 7958            Montgomery_Coll                                              uc
## 7959            Montgomery_Coll                                          unable
## 7960            Montgomery_Coll                                      understand
## 7961            Montgomery_Coll                                           upper
## 7962            Montgomery_Coll                                        utilized
## 7963            Montgomery_Coll                                        veterans
## 7964            Montgomery_Coll                                       voluntary
## 7965            Montgomery_Coll                                          week’s
## 7966            Montgomery_Coll                                         windows
## 7967            Montgomery_Coll                                      withdrawal
## 7968            Montgomery_Coll                                           world
## 7969            Montgomery_Coll                                           worth
## 7970            Montgomery_Coll                                         written
## 7971            Montgomery_Coll                                    www.data.gov
## 7972            Montgomery_Coll                                  www.kaggle.com
## 7973                   NYU_DS4E                                        abstract
## 7974                   NYU_DS4E                                     abstraction
## 7975                   NYU_DS4E                                  accomplishment
## 7976                   NYU_DS4E                                      accumulate
## 7977                   NYU_DS4E                                      acquainted
## 7978                   NYU_DS4E                                          acting
## 7979                   NYU_DS4E                                           added
## 7980                   NYU_DS4E                                          adding
## 7981                   NYU_DS4E                                        addition
## 7982                   NYU_DS4E                                      additional
## 7983                   NYU_DS4E                                           adopt
## 7984                   NYU_DS4E                                        advanced
## 7985                   NYU_DS4E                                          advice
## 7986                   NYU_DS4E                                         advised
## 7987                   NYU_DS4E                                             age
## 7988                   NYU_DS4E                                         algebra
## 7989                   NYU_DS4E                                     algorithmic
## 7990                   NYU_DS4E                                      algorithms
## 7991                   NYU_DS4E                                         amazing
## 7992                   NYU_DS4E                                andrea.jonesrooy
## 7993                   NYU_DS4E                                         annoyed
## 7994                   NYU_DS4E                                           apply
## 7995                   NYU_DS4E                                        applying
## 7996                   NYU_DS4E                                       arguments
## 7997                   NYU_DS4E                                      artificial
## 7998                   NYU_DS4E                                          assess
## 7999                   NYU_DS4E                                        assigned
## 8000                   NYU_DS4E                                      assistance
## 8001                   NYU_DS4E                                             awe
## 8002                   NYU_DS4E                                        backbone
## 8003                   NYU_DS4E                                             bar
## 8004                   NYU_DS4E                                            bars
## 8005                   NYU_DS4E                                           based
## 8006                   NYU_DS4E                                          basics
## 8007                   NYU_DS4E                                           begin
## 8008                   NYU_DS4E                                          blocks
## 8009                   NYU_DS4E                                            book
## 8010                   NYU_DS4E                                           break
## 8011                   NYU_DS4E                                          buffer
## 8012                   NYU_DS4E                                       buzzwords
## 8013                   NYU_DS4E                                        calculus
## 8014                   NYU_DS4E                                        calendar
## 8015                   NYU_DS4E                                          career
## 8016                   NYU_DS4E                                      categories
## 8017                   NYU_DS4E                                          change
## 8018                   NYU_DS4E                                        chapters
## 8019                   NYU_DS4E                                          charts
## 8020                   NYU_DS4E                                           chief
## 8021                   NYU_DS4E                                         classes
## 8022                   NYU_DS4E                                         classic
## 8023                   NYU_DS4E                                     classifiers
## 8024                   NYU_DS4E                                        classify
## 8025                   NYU_DS4E                                       classroom
## 8026                   NYU_DS4E                                            code
## 8027                   NYU_DS4E                                         columns
## 8028                   NYU_DS4E                                          common
## 8029                   NYU_DS4E                                        commonly
## 8030                   NYU_DS4E                                     communicate
## 8031                   NYU_DS4E                                       computing
## 8032                   NYU_DS4E                                   conceptualize
## 8033                   NYU_DS4E                                      conclusion
## 8034                   NYU_DS4E                                      conducting
## 8035                   NYU_DS4E                                       confusion
## 8036                   NYU_DS4E                                         connect
## 8037                   NYU_DS4E                                        consumer
## 8038                   NYU_DS4E                                      contacting
## 8039                   NYU_DS4E                                            cool
## 8040                   NYU_DS4E                                            core
## 8041                   NYU_DS4E                                           count
## 8042                   NYU_DS4E                                         courses
## 8043                   NYU_DS4E                                        creating
## 8044                   NYU_DS4E                                        critical
## 8045                   NYU_DS4E                                      cumulative
## 8046                   NYU_DS4E                                         daniels
## 8047                   NYU_DS4E                                         dataset
## 8048                   NYU_DS4E                                          dating
## 8049                   NYU_DS4E                                         debates
## 8050                   NYU_DS4E                                       decisions
## 8051                   NYU_DS4E                                      dedication
## 8052                   NYU_DS4E                                            deep
## 8053                   NYU_DS4E                                          deeper
## 8054                   NYU_DS4E                                          define
## 8055                   NYU_DS4E                                          deluge
## 8056                   NYU_DS4E                                     demonstrate
## 8057                   NYU_DS4E                                        describe
## 8058                   NYU_DS4E                                          design
## 8059                   NYU_DS4E                                        designed
## 8060                   NYU_DS4E                                          detail
## 8061                   NYU_DS4E                                     development
## 8062                   NYU_DS4E                                     diagnostics
## 8063                   NYU_DS4E                                        discover
## 8064                   NYU_DS4E                                     discoveries
## 8065                   NYU_DS4E                                       discovery
## 8066                   NYU_DS4E                                      discussion
## 8067                   NYU_DS4E                                     distinguish
## 8068                   NYU_DS4E                                    distribution
## 8069                   NYU_DS4E                                   distributions
## 8070                   NYU_DS4E                                   documentation
## 8071                   NYU_DS4E                                      documented
## 8072                   NYU_DS4E                                            drop
## 8073                   NYU_DS4E                                            earn
## 8074                   NYU_DS4E                                          easily
## 8075                   NYU_DS4E                                         effects
## 8076                   NYU_DS4E                                        electron
## 8077                   NYU_DS4E                                       emergency
## 8078                   NYU_DS4E                                         empower
## 8079                   NYU_DS4E                                       empowered
## 8080                   NYU_DS4E                                       encourage
## 8081                   NYU_DS4E                                           equal
## 8082                   NYU_DS4E                                         ethical
## 8083                   NYU_DS4E                                       evaluator
## 8084                   NYU_DS4E                                        examples
## 8085                   NYU_DS4E                                       exception
## 8086                   NYU_DS4E                                      exceptions
## 8087                   NYU_DS4E                                         excited
## 8088                   NYU_DS4E                                        exciting
## 8089                   NYU_DS4E                                         excused
## 8090                   NYU_DS4E                                       exercises
## 8091                   NYU_DS4E                                    expectations
## 8092                   NYU_DS4E                                         explore
## 8093                   NYU_DS4E                                     expressions
## 8094                   NYU_DS4E                                        extended
## 8095                   NYU_DS4E                                        external
## 8096                   NYU_DS4E                                           extra
## 8097                   NYU_DS4E                                            eyes
## 8098                   NYU_DS4E                                         factors
## 8099                   NYU_DS4E                                          family
## 8100                   NYU_DS4E                                            feed
## 8101                   NYU_DS4E                                          figure
## 8102                   NYU_DS4E                                       filtering
## 8103                   NYU_DS4E                                         finding
## 8104                   NYU_DS4E                                          finish
## 8105                   NYU_DS4E                                          forced
## 8106                   NYU_DS4E                                            form
## 8107                   NYU_DS4E                                       formation
## 8108                   NYU_DS4E                                           found
## 8109                   NYU_DS4E                                    foundational
## 8110                   NYU_DS4E                                      frequently
## 8111                   NYU_DS4E                                         fridays
## 8112                   NYU_DS4E                                     frustration
## 8113                   NYU_DS4E                                     fundamental
## 8114                   NYU_DS4E                                          future
## 8115                   NYU_DS4E                                          gather
## 8116                   NYU_DS4E                                      generating
## 8117                   NYU_DS4E                                          github
## 8118                   NYU_DS4E                                         grading
## 8119                   NYU_DS4E                                           grail
## 8120                   NYU_DS4E                                           guide
## 8121                   NYU_DS4E                                         halfway
## 8122                   NYU_DS4E                                            hand
## 8123                   NYU_DS4E                                          handle
## 8124                   NYU_DS4E                                       happiness
## 8125                   NYU_DS4E                                           happy
## 8126                   NYU_DS4E                                         harmful
## 8127                   NYU_DS4E                                         haven’t
## 8128                   NYU_DS4E                                            hold
## 8129                   NYU_DS4E                                           holes
## 8130                   NYU_DS4E                                            holy
## 8131                   NYU_DS4E                                            home
## 8132                   NYU_DS4E                                         honesty
## 8133                   NYU_DS4E                                     icalization
## 8134                   NYU_DS4E                                             ics
## 8135                   NYU_DS4E                                         illness
## 8136                   NYU_DS4E                                           imply
## 8137                   NYU_DS4E                                      importance
## 8138                   NYU_DS4E                                     incorporate
## 8139                   NYU_DS4E                                       induction
## 8140                   NYU_DS4E                                      inevitable
## 8141                   NYU_DS4E                                     inferential
## 8142                   NYU_DS4E                                             ing
## 8143                   NYU_DS4E                                          inputs
## 8144                   NYU_DS4E                                       inspiring
## 8145                   NYU_DS4E                                    intelligence
## 8146                   NYU_DS4E                                  interpretation
## 8147                   NYU_DS4E                                    interpreting
## 8148                   NYU_DS4E                                       interview
## 8149                   NYU_DS4E                                           intro
## 8150                   NYU_DS4E                                      investment
## 8151                   NYU_DS4E                                          jargon
## 8152                   NYU_DS4E                                             job
## 8153                   NYU_DS4E                                            join
## 8154                   NYU_DS4E                                           jones
## 8155                   NYU_DS4E                                             joy
## 8156                   NYU_DS4E                                            jump
## 8157                   NYU_DS4E                                         laptops
## 8158                   NYU_DS4E                                             led
## 8159                   NYU_DS4E                                          length
## 8160                   NYU_DS4E                                          letter
## 8161                   NYU_DS4E                                        lifelong
## 8162                   NYU_DS4E                                           light
## 8163                   NYU_DS4E                                            line
## 8164                   NYU_DS4E                                          linear
## 8165                   NYU_DS4E                                           lines
## 8166                   NYU_DS4E                                          living
## 8167                   NYU_DS4E                                            lots
## 8168                   NYU_DS4E                                           makes
## 8169                   NYU_DS4E                                   manipulations
## 8170                   NYU_DS4E                                            mark
## 8171                   NYU_DS4E                                         mastery
## 8172                   NYU_DS4E                                        material
## 8173                   NYU_DS4E                                         matthew
## 8174                   NYU_DS4E                                      meaningful
## 8175                   NYU_DS4E                                    meaningfully
## 8176                   NYU_DS4E                                           meets
## 8177                   NYU_DS4E                                          method
## 8178                   NYU_DS4E                                   methodologies
## 8179                   NYU_DS4E                                       minimally
## 8180                   NYU_DS4E                                       modeler’s
## 8181                   NYU_DS4E                                          monday
## 8182                   NYU_DS4E                                        mosescsd
## 8183                   NYU_DS4E                                            news
## 8184                   NYU_DS4E                                           nifty
## 8185                   NYU_DS4E                                           notes
## 8186                   NYU_DS4E                                             nyu
## 8187                   NYU_DS4E                                      obfuscates
## 8188                   NYU_DS4E                                       objective
## 8189                   NYU_DS4E                                     observation
## 8190                   NYU_DS4E                                        obsolete
## 8191                   NYU_DS4E                                    occasionally
## 8192                   NYU_DS4E                                           offer
## 8193                   NYU_DS4E                                         ongoing
## 8194                   NYU_DS4E                                          onward
## 8195                   NYU_DS4E                                      organizing
## 8196                   NYU_DS4E                                        original
## 8197                   NYU_DS4E                                        outcomes
## 8198                   NYU_DS4E                                         outlets
## 8199                   NYU_DS4E                                          output
## 8200                   NYU_DS4E                                         outputs
## 8201                   NYU_DS4E                                        overlaid
## 8202                   NYU_DS4E                                            page
## 8203                   NYU_DS4E                                            pair
## 8204                   NYU_DS4E                                     parentheses
## 8205                   NYU_DS4E                                         passive
## 8206                   NYU_DS4E                                            past
## 8207                   NYU_DS4E                                        patterns
## 8208                   NYU_DS4E                                         periods
## 8209                   NYU_DS4E                                   philosophical
## 8210                   NYU_DS4E                                          phrase
## 8211                   NYU_DS4E                                            pick
## 8212                   NYU_DS4E                                         picture
## 8213                   NYU_DS4E                                            ping
## 8214                   NYU_DS4E                                        pitfalls
## 8215                   NYU_DS4E                                         portion
## 8216                   NYU_DS4E                                            post
## 8217                   NYU_DS4E                                           power
## 8218                   NYU_DS4E                                            prac
## 8219                   NYU_DS4E                                     practically
## 8220                   NYU_DS4E                                       practices
## 8221                   NYU_DS4E                                         predict
## 8222                   NYU_DS4E                                          prefer
## 8223                   NYU_DS4E                                         prepare
## 8224                   NYU_DS4E                                        prepared
## 8225                   NYU_DS4E                                        presence
## 8226                   NYU_DS4E                                     president’s
## 8227                   NYU_DS4E                                           prior
## 8228                   NYU_DS4E                                         process
## 8229                   NYU_DS4E                                        producer
## 8230                   NYU_DS4E                                         product
## 8231                   NYU_DS4E                                     professions
## 8232                   NYU_DS4E                                       professor
## 8233                   NYU_DS4E                                        profound
## 8234                   NYU_DS4E                                      programmer
## 8235                   NYU_DS4E                                       prolonged
## 8236                   NYU_DS4E                                         promise
## 8237                   NYU_DS4E                                          public
## 8238                   NYU_DS4E                                        publicly
## 8239                   NYU_DS4E                                       published
## 8240                   NYU_DS4E                                         pulling
## 8241                   NYU_DS4E                                         pursuit
## 8242                   NYU_DS4E                                         quality
## 8243                   NYU_DS4E                                         quickly
## 8244                   NYU_DS4E                                          rabbit
## 8245                   NYU_DS4E                                             rad
## 8246                   NYU_DS4E                                           range
## 8247                   NYU_DS4E                                          ranges
## 8248                   NYU_DS4E                                           reach
## 8249                   NYU_DS4E                                          reader
## 8250                   NYU_DS4E                                           ready
## 8251                   NYU_DS4E                                       reasoning
## 8252                   NYU_DS4E                                         reasons
## 8253                   NYU_DS4E                                       reference
## 8254                   NYU_DS4E                                       refresher
## 8255                   NYU_DS4E                                        relevant
## 8256                   NYU_DS4E                                     remembering
## 8257                   NYU_DS4E                                         replied
## 8258                   NYU_DS4E                                           reply
## 8259                   NYU_DS4E                                      requesting
## 8260                   NYU_DS4E                                        required
## 8261                   NYU_DS4E                                    requirements
## 8262                   NYU_DS4E                                        resolved
## 8263                   NYU_DS4E                                          return
## 8264                   NYU_DS4E                                          reward
## 8265                   NYU_DS4E                                        rigorous
## 8266                   NYU_DS4E                                           roots
## 8267                   NYU_DS4E                                            rooy
## 8268                   NYU_DS4E                                          sample
## 8269                   NYU_DS4E                                      satisfying
## 8270                   NYU_DS4E                                           scale
## 8271                   NYU_DS4E                                            scat
## 8272                   NYU_DS4E                                    scatterplots
## 8273                   NYU_DS4E                                          school
## 8274                   NYU_DS4E                                         seaborn
## 8275                   NYU_DS4E                                             set
## 8276                   NYU_DS4E                                            sets
## 8277                   NYU_DS4E                                           shape
## 8278                   NYU_DS4E                                           short
## 8279                   NYU_DS4E                                     simulations
## 8280                   NYU_DS4E                                            site
## 8281                   NYU_DS4E                                       situation
## 8282                   NYU_DS4E                                         skilled
## 8283                   NYU_DS4E                                          slides
## 8284                   NYU_DS4E                                            snow
## 8285                   NYU_DS4E                                          social
## 8286                   NYU_DS4E                                       solutions
## 8287                   NYU_DS4E                                            sort
## 8288                   NYU_DS4E                                        specific
## 8289                   NYU_DS4E                                          spring
## 8290                   NYU_DS4E                                           stage
## 8291                   NYU_DS4E                                            stay
## 8292                   NYU_DS4E                                            step
## 8293                   NYU_DS4E                                           steps
## 8294                   NYU_DS4E                                          stored
## 8295                   NYU_DS4E                                           study
## 8296                   NYU_DS4E                                         success
## 8297                   NYU_DS4E                                      sufficient
## 8298                   NYU_DS4E                                       summarize
## 8299                   NYU_DS4E                                         summary
## 8300                   NYU_DS4E                                          syntax
## 8301                   NYU_DS4E                                         talking
## 8302                   NYU_DS4E                                        teaching
## 8303                   NYU_DS4E                                            tend
## 8304                   NYU_DS4E                                        terplots
## 8305                   NYU_DS4E                                      terrifying
## 8306                   NYU_DS4E                                           tests
## 8307                   NYU_DS4E                                        textbook
## 8308                   NYU_DS4E                                     theoretical
## 8309                   NYU_DS4E                                        theories
## 8310                   NYU_DS4E                                      thresholds
## 8311                   NYU_DS4E                                            tice
## 8312                   NYU_DS4E                                            tips
## 8313                   NYU_DS4E                                        to:think
## 8314                   NYU_DS4E                                            tool
## 8315                   NYU_DS4E                                           tools
## 8316                   NYU_DS4E                                         totally
## 8317                   NYU_DS4E                                       tradeoffs
## 8318                   NYU_DS4E                                        training
## 8319                   NYU_DS4E                                       transform
## 8320                   NYU_DS4E                                     transparent
## 8321                   NYU_DS4E                                      treatments
## 8322                   NYU_DS4E                                   understanding
## 8323                   NYU_DS4E                                       unexcused
## 8324                   NYU_DS4E                                        unknowns
## 8325                   NYU_DS4E                                      usefulness
## 8326                   NYU_DS4E                                           usual
## 8327                   NYU_DS4E                                       variables
## 8328                   NYU_DS4E                                         version
## 8329                   NYU_DS4E                                         viewing
## 8330                   NYU_DS4E                                     visualizing
## 8331                   NYU_DS4E                                      vocabulary
## 8332                   NYU_DS4E                                          warned
## 8333                   NYU_DS4E                                      wednesdays
## 8334                   NYU_DS4E                                          what’s
## 8335                   NYU_DS4E                                            wide
## 8336                   NYU_DS4E                                       wonderful
## 8337                   NYU_DS4E                                           worth
## 8338                   NYU_DS4E                                            wrap
## 8339                   NYU_DS4E                                       youtube’s
## 8340                NYU_IntroDS                                   abnormalities
## 8341                NYU_IntroDS                                      accumulate
## 8342                NYU_IntroDS                                          active
## 8343                NYU_IntroDS                                           added
## 8344                NYU_IntroDS                                         address
## 8345                NYU_IntroDS                                         advised
## 8346                NYU_IntroDS                                     algorithmic
## 8347                NYU_IntroDS                                      algorithms
## 8348                NYU_IntroDS                                        analytic
## 8349                NYU_IntroDS                                       answering
## 8350                NYU_IntroDS                                      anticipate
## 8351                NYU_IntroDS                                     application
## 8352                NYU_IntroDS                                        approach
## 8353                NYU_IntroDS                                             art
## 8354                NYU_IntroDS                                      assessment
## 8355                NYU_IntroDS                                      assistance
## 8356                NYU_IntroDS                                      assistants
## 8357                NYU_IntroDS                                          assure
## 8358                NYU_IntroDS                                         authors
## 8359                NYU_IntroDS                                           avoid
## 8360                NYU_IntroDS                                       avoidance
## 8361                NYU_IntroDS                                           based
## 8362                NYU_IntroDS                                           basic
## 8363                NYU_IntroDS                                           basis
## 8364                NYU_IntroDS                                          biased
## 8365                NYU_IntroDS                                           books
## 8366                NYU_IntroDS                                      bookstores
## 8367                NYU_IntroDS                                           bring
## 8368                NYU_IntroDS                                        business
## 8369                NYU_IntroDS                                     calculating
## 8370                NYU_IntroDS                                     calculation
## 8371                NYU_IntroDS                                             cas
## 8372                NYU_IntroDS                                           catch
## 8373                NYU_IntroDS                                     categorical
## 8374                NYU_IntroDS                                         chapter
## 8375                NYU_IntroDS                                        chapters
## 8376                NYU_IntroDS                                  classification
## 8377                NYU_IntroDS                                        clusters
## 8378                NYU_IntroDS                                        cohesive
## 8379                NYU_IntroDS                                         college
## 8380                NYU_IntroDS                                       comparing
## 8381                NYU_IntroDS                                       computing
## 8382                NYU_IntroDS                                            cons
## 8383                NYU_IntroDS                                      considered
## 8384                NYU_IntroDS                                        consists
## 8385                NYU_IntroDS                                         contact
## 8386                NYU_IntroDS                                    contemporary
## 8387                NYU_IntroDS                                         context
## 8388                NYU_IntroDS                                         copying
## 8389                NYU_IntroDS                                            core
## 8390                NYU_IntroDS                                      correspond
## 8391                NYU_IntroDS                                         covered
## 8392                NYU_IntroDS                                        covering
## 8393                NYU_IntroDS                                          covers
## 8394                NYU_IntroDS                                           cross
## 8395                NYU_IntroDS                                       dependent
## 8396                NYU_IntroDS                                     description
## 8397                NYU_IntroDS                                          design
## 8398                NYU_IntroDS                                        designed
## 8399                NYU_IntroDS                                         details
## 8400                NYU_IntroDS                                      determined
## 8401                NYU_IntroDS                                         develop
## 8402                NYU_IntroDS                                      disclosure
## 8403                NYU_IntroDS                                              ds
## 8404                NYU_IntroDS                                          earned
## 8405                NYU_IntroDS                                        embedded
## 8406                NYU_IntroDS                                        ensemble
## 8407                NYU_IntroDS                                           essay
## 8408                NYU_IntroDS                                          ethics
## 8409                NYU_IntroDS                                        evidence
## 8410                NYU_IntroDS                                        expected
## 8411                NYU_IntroDS                                      experiment
## 8412                NYU_IntroDS                                         explain
## 8413                NYU_IntroDS                                     exploratory
## 8414                NYU_IntroDS                                            fall
## 8415                NYU_IntroDS                                         fawcett
## 8416                NYU_IntroDS                                         feature
## 8417                NYU_IntroDS                                        features
## 8418                NYU_IntroDS                                     federalists
## 8419                NYU_IntroDS                                       finalized
## 8420                NYU_IntroDS                                         finding
## 8421                NYU_IntroDS                                         fitting
## 8422                NYU_IntroDS                                           fixed
## 8423                NYU_IntroDS                                         forests
## 8424                NYU_IntroDS                                      geographic
## 8425                NYU_IntroDS                                          grades
## 8426                NYU_IntroDS                                            hand
## 8427                NYU_IntroDS                                        holidays
## 8428                NYU_IntroDS                                             idf
## 8429                NYU_IntroDS                                          impact
## 8430                NYU_IntroDS                                       implement
## 8431                NYU_IntroDS                                         improve
## 8432                NYU_IntroDS                                        incident
## 8433                NYU_IntroDS                                       including
## 8434                NYU_IntroDS                                     incorporate
## 8435                NYU_IntroDS                                   incorporating
## 8436                NYU_IntroDS                                       inference
## 8437                NYU_IntroDS                                          inform
## 8438                NYU_IntroDS                                     information
## 8439                NYU_IntroDS                                        initials
## 8440                NYU_IntroDS                                       instances
## 8441                NYU_IntroDS                                  interpretation
## 8442                NYU_IntroDS                                    introductory
## 8443                NYU_IntroDS                                            jazz
## 8444                NYU_IntroDS                                        language
## 8445                NYU_IntroDS                                         leakage
## 8446                NYU_IntroDS                                        learning
## 8447                NYU_IntroDS                                          length
## 8448                NYU_IntroDS                                       libraries
## 8449                NYU_IntroDS                                            lift
## 8450                NYU_IntroDS                                            line
## 8451                NYU_IntroDS                                          manual
## 8452                NYU_IntroDS                                        mckinney
## 8453                NYU_IntroDS                                           means
## 8454                NYU_IntroDS                                        meetings
## 8455                NYU_IntroDS                                          mining
## 8456                NYU_IntroDS                                         missing
## 8457                NYU_IntroDS                                        modeling
## 8458                NYU_IntroDS                                        mosescsd
## 8459                NYU_IntroDS                                       musicians
## 8460                NYU_IntroDS                                       neighbors
## 8461                NYU_IntroDS                                             net
## 8462                NYU_IntroDS                                        networks
## 8463                NYU_IntroDS                                         nyu.edu
## 8464                NYU_IntroDS                                      objectives
## 8465                NYU_IntroDS                                      occurrence
## 8466                NYU_IntroDS                                    optimization
## 8467                NYU_IntroDS                                        outliers
## 8468                NYU_IntroDS                                     overfitting
## 8469                NYU_IntroDS                                        overview
## 8470                NYU_IntroDS                                            page
## 8471                NYU_IntroDS                                          papers
## 8472                NYU_IntroDS                                         pattern
## 8473                NYU_IntroDS                                         perform
## 8474                NYU_IntroDS                                     performance
## 8475                NYU_IntroDS                                      predictive
## 8476                NYU_IntroDS                                         prepare
## 8477                NYU_IntroDS                                         privacy
## 8478                NYU_IntroDS                                   probabilities
## 8479                NYU_IntroDS                                      processing
## 8480                NYU_IntroDS                                      programmed
## 8481                NYU_IntroDS                                     programming
## 8482                NYU_IntroDS                                        projects
## 8483                NYU_IntroDS                                          proper
## 8484                NYU_IntroDS                                            pros
## 8485                NYU_IntroDS                                         provide
## 8486                NYU_IntroDS                                         provost
## 8487                NYU_IntroDS                                        puzzling
## 8488                NYU_IntroDS                                          random
## 8489                NYU_IntroDS                                           range
## 8490                NYU_IntroDS                                           reach
## 8491                NYU_IntroDS                                       redundant
## 8492                NYU_IntroDS                                  regularization
## 8493                NYU_IntroDS                                          relate
## 8494                NYU_IntroDS                                         related
## 8495                NYU_IntroDS                                        relevant
## 8496                NYU_IntroDS                                          repeat
## 8497                NYU_IntroDS                                 representations
## 8498                NYU_IntroDS                                    representing
## 8499                NYU_IntroDS                                      requesting
## 8500                NYU_IntroDS                                        research
## 8501                NYU_IntroDS                                            rich
## 8502                NYU_IntroDS                                             roc
## 8503                NYU_IntroDS                                           rules
## 8504                NYU_IntroDS                                         running
## 8505                NYU_IntroDS                                         sampled
## 8506                NYU_IntroDS                                           scale
## 8507                NYU_IntroDS                                      scientific
## 8508                NYU_IntroDS                                         section
## 8509                NYU_IntroDS                                       selection
## 8510                NYU_IntroDS                                        sequence
## 8511                NYU_IntroDS                                             set
## 8512                NYU_IntroDS                                      similarity
## 8513                NYU_IntroDS                                        software
## 8514                NYU_IntroDS                                           solve
## 8515                NYU_IntroDS                                         solving
## 8516                NYU_IntroDS                                       specifics
## 8517                NYU_IntroDS                                           stand
## 8518                NYU_IntroDS                                       student’s
## 8519                NYU_IntroDS                                           study
## 8520                NYU_IntroDS                                     submissions
## 8521                NYU_IntroDS                                       submitted
## 8522                NYU_IntroDS                                    successfully
## 8523                NYU_IntroDS                                      sufficient
## 8524                NYU_IntroDS                                     surrounding
## 8525                NYU_IntroDS                                      suspension
## 8526                NYU_IntroDS                                        syllabus
## 8527                NYU_IntroDS                                        teaching
## 8528                NYU_IntroDS                                    technologies
## 8529                NYU_IntroDS                                            text
## 8530                NYU_IntroDS                                              tf
## 8531                NYU_IntroDS                                        thinking
## 8532                NYU_IntroDS                                            time
## 8533                NYU_IntroDS                                           tools
## 8534                NYU_IntroDS                                           topic
## 8535                NYU_IntroDS                                          topics
## 8536                NYU_IntroDS                                           total
## 8537                NYU_IntroDS                                 transformations
## 8538                NYU_IntroDS                                            tree
## 8539                NYU_IntroDS                                            type
## 8540                NYU_IntroDS                                              ua
## 8541                NYU_IntroDS                                   understanding
## 8542                NYU_IntroDS                                     visualizing
## 8543                NYU_IntroDS                                         website
## 8544                NYU_IntroDS                                             wes
## 8545                NYU_IntroDS                                           wrote
## 8546                NYU_IntroDS                                 www.nyu.edu.csd
## 8547                  Princeton                                   1k4un50wqqsq1
## 8548                  Princeton                                             2nd
## 8549                  Princeton                                      absolutely
## 8550                  Princeton                                        accepted
## 8551                  Princeton                                        additive
## 8552                  Princeton                                       adversary
## 8553                  Princeton                                              al
## 8554                  Princeton                                         allowed
## 8555                  Princeton                                             als
## 8556                  Princeton                                      amazon.com
## 8557                  Princeton                                   amazonaws.com
## 8558                  Princeton                                           anova
## 8559                  Princeton                                       anova.pdf
## 8560                  Princeton                                        appendix
## 8561                  Princeton                                   applicability
## 8562                  Princeton                                    appointments
## 8563                  Princeton                                          approx
## 8564                  Princeton                                   approximately
## 8565                  Princeton                                        arranged
## 8566                  Princeton                                           asset
## 8567                  Princeton                                      assistants
## 8568                  Princeton                                          autism
## 8569                  Princeton                                      autism.csv
## 8570                  Princeton                                           basic
## 8571                  Princeton                                           basis
## 8572                  Princeton                                           bayes
## 8573                  Princeton                                         bingyan
## 8574                  Princeton                                        bingyanw
## 8575                  Princeton                                        biweekly
## 8576                  Princeton                                           books
## 8577                  Princeton                                          boston
## 8578                  Princeton                              boston.housing.dat
## 8579                  Princeton                                       buehlmann
## 8580                  Princeton                                        building
## 8581                  Princeton                                            burn
## 8582                  Princeton                                        burn.dat
## 8583                  Princeton                                    burn.des.txt
## 8584                  Princeton                                       cambridge
## 8585                  Princeton                                          canvas
## 8586                  Princeton                            canvas.princeton.edu
## 8587                  Princeton                                         capital
## 8588                  Princeton                                         carries
## 8589                  Princeton                                        chapters
## 8590                  Princeton                                          choice
## 8591                  Princeton                                             cid
## 8592                  Princeton                                  classification
## 8593                  Princeton                                         cluster
## 8594                  Princeton                                      clustering
## 8595                  Princeton                                        clusters
## 8596                  Princeton                                             cnn
## 8597                  Princeton                                            code
## 8598                  Princeton                                        commands
## 8599                  Princeton                                   communication
## 8600                  Princeton                                       community
## 8601                  Princeton                                      completion
## 8602                  Princeton                                         concave
## 8603                  Princeton                                      conceptual
## 8604                  Princeton                                     convinience
## 8605                  Princeton                                         copying
## 8606                  Princeton                                            core
## 8607                  Princeton                                         covered
## 8608                  Princeton                                          covers
## 8609                  Princeton                                          cran.r
## 8610                  Princeton                                            crid
## 8611                  Princeton                                           cross
## 8612                  Princeton                                             csv
## 8613                  Princeton                                       databases
## 8614                  Princeton                                     datascience
## 8615                  Princeton                                           dates
## 8616                  Princeton                                          dchild
## 8617                  Princeton                                              de
## 8618                  Princeton                                         density
## 8619                  Princeton                                           depth
## 8620                  Princeton                                     description
## 8621                  Princeton                                       detection
## 8622                  Princeton                                        discrete
## 8623                  Princeton                                    discriminant
## 8624                  Princeton                                        dividend
## 8625                  Princeton                                             doc
## 8626                  Princeton                                    downloaddata
## 8627                  Princeton                                              dp
## 8628                  Princeton                                            econ
## 8629                  Princeton                                     econometric
## 8630                  Princeton                                              ed
## 8631                  Princeton                                        elements
## 8632                  Princeton                                     engineering
## 8633                  Princeton                                        ensemble
## 8634                  Princeton                                           equal
## 8635                  Princeton                                       essential
## 8636                  Princeton                                      estimation
## 8637                  Princeton                                           event
## 8638                  Princeton                                      expansions
## 8639                  Princeton                                       expressed
## 8640                  Princeton                                      expression
## 8641                  Princeton                                 expressions.csv
## 8642                  Princeton                                      extensions
## 8643                  Princeton                                         factors
## 8644                  Princeton                                           false
## 8645                  Princeton                                        familiar
## 8646                  Princeton                                         feature
## 8647                  Princeton                                           files
## 8648                  Princeton                       files.fred.stlouisfed.org
## 8649                  Princeton                                          folded
## 8650                  Princeton                                       forbidden
## 8651                  Princeton                                      foundation
## 8652                  Princeton                                           fred2
## 8653                  Princeton                                            free
## 8654                  Princeton                                        gaussian
## 8655                  Princeton                                            geer
## 8656                  Princeton                                            gene
## 8657                  Princeton                                      generative
## 8658                  Princeton                                           genes
## 8659                  Princeton                                            glim
## 8660                  Princeton                                        glim.pdf
## 8661                  Princeton                                         glimpse
## 8662                  Princeton                                         grading
## 8663                  Princeton                                            half
## 8664                  Princeton                                          handed
## 8665                  Princeton                                        homepage
## 8666                  Princeton                                       homework2
## 8667                  Princeton                                           house
## 8668                  Princeton                                         housing
## 8669                  Princeton                                     illustrated
## 8670                  Princeton                                           image
## 8671                  Princeton                                       indicator
## 8672                  Princeton                                       inference
## 8673                  Princeton                                     information
## 8674                  Princeton                                          inputs
## 8675                  Princeton                                     instruction
## 8676                  Princeton                                      instructor
## 8677                  Princeton                                          intend
## 8678                  Princeton                                       intro.pdf
## 8679                  Princeton                                          issues
## 8680                  Princeton                                            item
## 8681                  Princeton                                           james
## 8682                  Princeton                                           jqfan
## 8683                  Princeton                                        keywords
## 8684                  Princeton                                             l_1
## 8685                  Princeton                                             l_o
## 8686                  Princeton                                            lab1
## 8687                  Princeton                                            lab6
## 8688                  Princeton                                            lab7
## 8689                  Princeton                                            lab8
## 8690                  Princeton                                           labor
## 8691                  Princeton                                 labor.suppl.dat
## 8692                  Princeton                                          laptop
## 8693                  Princeton                                           lasso
## 8694                  Princeton                                            late
## 8695                  Princeton                                          latent
## 8696                  Princeton                                        lectures
## 8697                  Princeton                                     limitations
## 8698                  Princeton                                            list
## 8699                  Princeton                                       locations
## 8700                  Princeton                                            mail
## 8701                  Princeton                                 mailto:bingyanw
## 8702                  Princeton                                    mailto:jqfan
## 8703                  Princeton                                   mailto:xz8451
## 8704                  Princeton                                    manipulation
## 8705                  Princeton                                         manuals
## 8706                  Princeton                                           march
## 8707                  Princeton                                        material
## 8708                  Princeton                                    mathematical
## 8709                  Princeton                                       mccracken
## 8710                  Princeton                                              md
## 8711                  Princeton                                        meanings
## 8712                  Princeton                                          mining
## 8713                  Princeton                                        modeling
## 8714                  Princeton                                          modern
## 8715                  Princeton                                          monday
## 8716                  Princeton                                      monographs
## 8717                  Princeton                                         monthly
## 8718                  Princeton                                              mw
## 8719                  Princeton                                           naive
## 8720                  Princeton                                         nearest
## 8721                  Princeton                                        neighbor
## 8722                  Princeton                                        networks
## 8723                  Princeton                               neuroblastoma.csv
## 8724                  Princeton                                          notes2
## 8725                  Princeton                                          online
## 8726                  Princeton                                      operations
## 8727                  Princeton                                             orf
## 8728                  Princeton                                         package
## 8729                  Princeton                                      parameters
## 8730                  Princeton                                         patient
## 8731                  Princeton                                        patients
## 8732                  Princeton                                             pce
## 8733                  Princeton                                         penalty
## 8734                  Princeton                                        personal
## 8735                  Princeton                                           phone
## 8736                  Princeton                                    pictures.zip
## 8737                  Princeton                                        playlist
## 8738                  Princeton                    plou2xlyxmslk9qqfztxeybphvru
## 8739                  Princeton                                         precept
## 8740                  Princeton                                      preprocess
## 8741                  Princeton                                    preprocessed
## 8742                  Princeton                                           price
## 8743                  Princeton                                         pricing
## 8744                  Princeton                                       primarily
## 8745                  Princeton                                           prize
## 8746                  Princeton                                     probability
## 8747                  Princeton                                         produce
## 8748                  Princeton                                       projected
## 8749                  Princeton                                        provided
## 8750                  Princeton                                             qid
## 8751                  Princeton                                           quasi
## 8752                  Princeton                                            rank
## 8753                  Princeton                                         ranking
## 8754                  Princeton                                            real
## 8755                  Princeton                                       reference
## 8756                  Princeton                                        refitted
## 8757                  Princeton                                     regularized
## 8758                  Princeton                                         related
## 8759                  Princeton                                     reproducing
## 8760                  Princeton                                        research
## 8761                  Princeton                                           ridge
## 8762                  Princeton                                            rise
## 8763                  Princeton                                             rnn
## 8764                  Princeton                                         rstudio
## 8765                  Princeton                                     rstudio.com
## 8766                  Princeton                                              s3
## 8767                  Princeton                                        schedule
## 8768                  Princeton                                       schedules
## 8769                  Princeton                                        screeing
## 8770                  Princeton                                        semester
## 8771                  Princeton                                           smith
## 8772                  Princeton                                           sp500
## 8773                  Princeton                                        sparsier
## 8774                  Princeton                                        sparsity
## 8775                  Princeton                                         sprefix
## 8776                  Princeton                                          spring
## 8777                  Princeton                                      structured
## 8778                  Princeton                                         student
## 8779                  Princeton                                       submitted
## 8780                  Princeton                                          subset
## 8781                  Princeton                                         support
## 8782                  Princeton                                        survival
## 8783                  Princeton                                        syllabus
## 8784                  Princeton                              tableofcontent.pdf
## 8785                  Princeton                                          tables
## 8786                  Princeton                                          taught
## 8787                  Princeton                                            team
## 8788                  Princeton                                       tentative
## 8789                  Princeton                                            test
## 8790                  Princeton                                   test.data.csv
## 8791                  Princeton                                         testing
## 8792                  Princeton                                        thinking
## 8793                  Princeton                                        thursday
## 8794                  Princeton                                            time
## 8795                  Princeton                                             top
## 8796                  Princeton                                  train.data.csv
## 8797                  Princeton                                  transformation
## 8798                  Princeton                                     transformed
## 8799                  Princeton                                 transformed.csv
## 8800                  Princeton                                           trees
## 8801                  Princeton                                           trqap
## 8802                  Princeton                                            tube
## 8803                  Princeton                                         tuesday
## 8804                  Princeton                                      ultimately
## 8805                  Princeton                                      university
## 8806                  Princeton                                      update.pdf
## 8807                  Princeton                                      validation
## 8808                  Princeton                                             van
## 8809                  Princeton                                       variables
## 8810                  Princeton                                         variety
## 8811                  Princeton                                          vector
## 8812                  Princeton                                        venables
## 8813                  Princeton                                        verbatim
## 8814                  Princeton                                           video
## 8815                  Princeton                                       viewpoint
## 8816                  Princeton                                      volatility
## 8817                  Princeton                                            wang
## 8818                  Princeton                                          weight
## 8819                  Princeton                                          witten
## 8820                  Princeton                                           world
## 8821                  Princeton                                  www.amazon.com
## 8822                  Princeton                                  www.kaggle.com
## 8823                  Princeton                                  www.multpl.com
## 8824                  Princeton                                           www.r
## 8825                  Princeton                               www.routledge.com
## 8826                  Princeton                                 www.youtube.com
## 8827                  Princeton                                         xiaonan
## 8828                  Princeton                                          xz8451
## 8829                  Princeton                                           yield
## 8830                  Princeton                                          yields
## 8831                  Princeton                                             zhu
## 8832                    Rutgers                                             21c
## 8833                    Rutgers                                         39khfrj
## 8834                    Rutgers                                          access
## 8835                    Rutgers                                      actionable
## 8836                    Rutgers                                              ad
## 8837                    Rutgers                                        addition
## 8838                    Rutgers                                       admission
## 8839                    Rutgers                                      aggregated
## 8840                    Rutgers                                            aims
## 8841                    Rutgers                                         algebra
## 8842                    Rutgers                                       analyzing
## 8843                    Rutgers                                       anonymity
## 8844                    Rutgers                                           apply
## 8845                    Rutgers                                           argue
## 8846                    Rutgers                                            arts
## 8847                    Rutgers                                          assess
## 8848                    Rutgers                                              ba
## 8849                    Rutgers                                         barrier
## 8850                    Rutgers                                          basics
## 8851                    Rutgers                                          bit.ly
## 8852                    Rutgers                                              bs
## 8853                    Rutgers                                         centers
## 8854                    Rutgers                                           chair
## 8855                    Rutgers                                             cla
## 8856                    Rutgers                                        comments
## 8857                    Rutgers                                          common
## 8858                    Rutgers                                     communicate
## 8859                    Rutgers                                         compete
## 8860                    Rutgers                                     competition
## 8861                    Rutgers                                      complaints
## 8862                    Rutgers                                        complete
## 8863                    Rutgers                                      completion
## 8864                    Rutgers                                        concrete
## 8865                    Rutgers                                         connect
## 8866                    Rutgers                                    consequences
## 8867                    Rutgers                                   consequential
## 8868                    Rutgers                                         contact
## 8869                    Rutgers                                        contacts
## 8870                    Rutgers                                    contemporary
## 8871                    Rutgers                                    convincingly
## 8872                    Rutgers                                       copyright
## 8873                    Rutgers                                         courses
## 8874                    Rutgers                                           court
## 8875                    Rutgers                                           cover
## 8876                    Rutgers                                        covering
## 8877                    Rutgers                                          credit
## 8878                    Rutgers                                         credits
## 8879                    Rutgers                                      critically
## 8880                    Rutgers                                          danger
## 8881                    Rutgers                                        datasets
## 8882                    Rutgers                                         degrees
## 8883                    Rutgers                                    departmental
## 8884                    Rutgers                                     departments
## 8885                    Rutgers                                     description
## 8886                    Rutgers                                         details
## 8887                    Rutgers                                          direct
## 8888                    Rutgers                                        director
## 8889                    Rutgers                                    disabilities
## 8890                    Rutgers                                         discuss
## 8891                    Rutgers                                        division
## 8892                    Rutgers                                        downside
## 8893                    Rutgers                                       effective
## 8894                    Rutgers                                       efficient
## 8895                    Rutgers                                       electives
## 8896                    Rutgers                                        elements
## 8897                    Rutgers                                        emergent
## 8898                    Rutgers                                      encouraged
## 8899                    Rutgers                                     environment
## 8900                    Rutgers                                        evaluate
## 8901                    Rutgers                                         examine
## 8902                    Rutgers                                        examples
## 8903                    Rutgers                                           exams
## 8904                    Rutgers                                      exhaustive
## 8905                    Rutgers                                        expected
## 8906                    Rutgers                                      experience
## 8907                    Rutgers                                         explore
## 8908                    Rutgers                                       extremely
## 8909                    Rutgers                                           false
## 8910                    Rutgers                                        feedback
## 8911                    Rutgers                                         finding
## 8912                    Rutgers                                        findings
## 8913                    Rutgers                                           focus
## 8914                    Rutgers                                          fooled
## 8915                    Rutgers                                            form
## 8916                    Rutgers                                          formal
## 8917                    Rutgers                                        formulas
## 8918                    Rutgers                                       formulate
## 8919                    Rutgers                                           found
## 8920                    Rutgers                                     foundations
## 8921                    Rutgers                                   frelinghuysen
## 8922                    Rutgers                                     fulfillment
## 8923                    Rutgers                                            gain
## 8924                    Rutgers                                            goal
## 8925                    Rutgers                                        graduate
## 8926                    Rutgers                                        granting
## 8927                    Rutgers                                           hands
## 8928                    Rutgers                                         healthy
## 8929                    Rutgers                                          hiring
## 8930                    Rutgers                                             hoc
## 8931                    Rutgers                                       homeworks
## 8932                    Rutgers                                          honors
## 8933                    Rutgers                                          impact
## 8934                    Rutgers                                    increasingly
## 8935                    Rutgers                                     individuals
## 8936                    Rutgers                                      inferences
## 8937                    Rutgers                                      institutes
## 8938                    Rutgers                                     institution
## 8939                    Rutgers                                       integrity
## 8940                    Rutgers                                    intermediate
## 8941                    Rutgers                                   international
## 8942                    Rutgers                                           intro
## 8943                    Rutgers                                    introductory
## 8944                    Rutgers                                           issue
## 8945                    Rutgers                                          issues
## 8946                    Rutgers                                             itr
## 8947                    Rutgers                                          kremer
## 8948                    Rutgers                                        language
## 8949                    Rutgers                                           links
## 8950                    Rutgers                                           login
## 8951                    Rutgers                                          majors
## 8952                    Rutgers                                          manner
## 8953                    Rutgers                                             map
## 8954                    Rutgers                                      marketable
## 8955                    Rutgers                                          master
## 8956                    Rutgers                                         masters
## 8957                    Rutgers                                            math
## 8958                    Rutgers                                    mathematical
## 8959                    Rutgers                                      meaningful
## 8960                    Rutgers                                        memorize
## 8961                    Rutgers                                     methodology
## 8962                    Rutgers                                         midterm
## 8963                    Rutgers                                           minor
## 8964                    Rutgers                                          minors
## 8965                    Rutgers                                         mymajor
## 8966                    Rutgers                                       myrutgers
## 8967                    Rutgers                                     nagarakatte
## 8968                    Rutgers                                       navigator
## 8969                    Rutgers                                            news
## 8970                    Rutgers                                              nj
## 8971                    Rutgers                                      objectives
## 8972                    Rutgers                                          online
## 8973                    Rutgers                                     opportunity
## 8974                    Rutgers                                          organi
## 8975                    Rutgers                                       ownership
## 8976                    Rutgers                                        patterns
## 8977                    Rutgers                                 personalization
## 8978                    Rutgers                                    persuasively
## 8979                    Rutgers                                           piece
## 8980                    Rutgers                                      piscataway
## 8981                    Rutgers                                         planner
## 8982                    Rutgers                                      preferably
## 8983                    Rutgers                                    prerequisite
## 8984                    Rutgers                                   presentations
## 8985                    Rutgers                                         privacy
## 8986                    Rutgers                                     probability
## 8987                    Rutgers                                       processes
## 8988                    Rutgers                                    professional
## 8989                    Rutgers                                         profile
## 8990                    Rutgers                                      programing
## 8991                    Rutgers                                     programming
## 8992                    Rutgers                                     prospective
## 8993                    Rutgers                                              qq
## 8994                    Rutgers                                              qr
## 8995                    Rutgers                                    quantitative
## 8996                    Rutgers                                           quick
## 8997                    Rutgers                                      quicklinks
## 8998                    Rutgers                                          random
## 8999                    Rutgers                                          reason
## 9000                    Rutgers                                       reasoning
## 9001                    Rutgers                                    relationship
## 9002                    Rutgers                                            rely
## 9003                    Rutgers                                          report
## 9004                    Rutgers                                        research
## 9005                    Rutgers                                        reserved
## 9006                    Rutgers                                         results
## 9007                    Rutgers                                          rights
## 9008                    Rutgers                                          rushed
## 9009                    Rutgers                                         santosh
## 9010                    Rutgers                                          school
## 9011                    Rutgers                                          scienc
## 9012                    Rutgers                                           score
## 9013                    Rutgers                                          search
## 9014                    Rutgers                                           sense
## 9015                    Rutgers                                        services
## 9016                    Rutgers                                             set
## 9017                    Rutgers                                     significant
## 9018                    Rutgers                                          simple
## 9019                    Rutgers                                            site
## 9020                    Rutgers                                           sites
## 9021                    Rutgers                                      skepticism
## 9022                    Rutgers                                           skill
## 9023                    Rutgers                                          social
## 9024                    Rutgers                                        software
## 9025                    Rutgers                                       solutions
## 9026                    Rutgers                                         solving
## 9027                    Rutgers                                           speci
## 9028                    Rutgers                                         special
## 9029                    Rutgers                                          spring
## 9030                    Rutgers                                            stri
## 9031                    Rutgers                                         student
## 9032                    Rutgers                                     suggestions
## 9033                    Rutgers                                        synopses
## 9034                    Rutgers                                          system
## 9035                    Rutgers                                            talk
## 9036                    Rutgers                                          taught
## 9037                    Rutgers                                    technologies
## 9038                    Rutgers                                      technology
## 9039                    Rutgers                                          titles
## 9040                    Rutgers                                           tools
## 9041                    Rutgers                                             top
## 9042                    Rutgers                                          tracks
## 9043                    Rutgers                                     traditional
## 9044                    Rutgers                                            type
## 9045                    Rutgers                                         typical
## 9046                    Rutgers                                          ulrich
## 9047                    Rutgers                                      undergradu
## 9048                    Rutgers                                          unique
## 9049                    Rutgers                                          upside
## 9050                    Rutgers                                           video
## 9051                    Rutgers                                            view
## 9052                    Rutgers                                       visualize
## 9053                 UCBerkeley                                          access
## 9054                 UCBerkeley                                        advanced
## 9055                 UCBerkeley                                             aim
## 9056                 UCBerkeley                                        anaconda
## 9057                 UCBerkeley                                         analyze
## 9058                 UCBerkeley                                         arising
## 9059                 UCBerkeley                                          assume
## 9060                 UCBerkeley                                       automatic
## 9061                 UCBerkeley                                           based
## 9062                 UCBerkeley                                    berkeley.edu
## 9063                 UCBerkeley                                       calendars
## 9064                 UCBerkeley                                          called
## 9065                 UCBerkeley                                        charting
## 9066                 UCBerkeley                                          charts
## 9067                 UCBerkeley                                          client
## 9068                 UCBerkeley                                     collections
## 9069                 UCBerkeley                                        combines
## 9070                 UCBerkeley                                         commons
## 9071                 UCBerkeley                                      complicate
## 9072                 UCBerkeley                                        computer
## 9073                 UCBerkeley                                        concepts
## 9074                 UCBerkeley                                      conjuction
## 9075                 UCBerkeley                                     conjunction
## 9076                 UCBerkeley                                         contact
## 9077                 UCBerkeley                                         context
## 9078                 UCBerkeley                                         correct
## 9079                 UCBerkeley                                     correctness
## 9080                 UCBerkeley                                         courses
## 9081                 UCBerkeley                                         created
## 9082                 UCBerkeley                                        creation
## 9083                 UCBerkeley                                        creative
## 9084                 UCBerkeley                                        critical
## 9085                 UCBerkeley                                      curriculum
## 9086                 UCBerkeley                                       customize
## 9087                 UCBerkeley                                       dataframe
## 9088                 UCBerkeley                                        datasets
## 9089                 UCBerkeley                                          delves
## 9090                 UCBerkeley                                   demonstration
## 9091                 UCBerkeley                                       depending
## 9092                 UCBerkeley                                        deployed
## 9093                 UCBerkeley                                      deployment
## 9094                 UCBerkeley                                          design
## 9095                 UCBerkeley                                        division
## 9096                 UCBerkeley                                        document
## 9097                 UCBerkeley                                   documentation
## 9098                 UCBerkeley                                              ds
## 9099                 UCBerkeley                                        economic
## 9100                 UCBerkeley                                            edge
## 9101                 UCBerkeley                                            edit
## 9102                 UCBerkeley                                       encourage
## 9103                 UCBerkeley                                        examples
## 9104                 UCBerkeley                                         execute
## 9105                 UCBerkeley                                      explicitly
## 9106                 UCBerkeley                                           files
## 9107                 UCBerkeley                                          folium
## 9108                 UCBerkeley                                          format
## 9109                 UCBerkeley                                       generates
## 9110                 UCBerkeley                                    geographical
## 9111                 UCBerkeley                                         geojson
## 9112                 UCBerkeley                                           goals
## 9113                 UCBerkeley                                         grading
## 9114                 UCBerkeley                                           guide
## 9115                 UCBerkeley                                           hands
## 9116                 UCBerkeley                                    hierarchical
## 9117                 UCBerkeley                                     implemented
## 9118                 UCBerkeley                                       inference
## 9119                 UCBerkeley                                     information
## 9120                 UCBerkeley                                   instructional
## 9121                 UCBerkeley                                     interactive
## 9122                 UCBerkeley                                       interface
## 9123                 UCBerkeley                                    introductory
## 9124                 UCBerkeley                                          issues
## 9125                 UCBerkeley                                      jupyterhub
## 9126                 UCBerkeley                                      kubernetes
## 9127                 UCBerkeley                                         license
## 9128                 UCBerkeley                                           loads
## 9129                 UCBerkeley                                        machines
## 9130                 UCBerkeley                                         mapping
## 9131                 UCBerkeley                                            maps
## 9132                 UCBerkeley                                           match
## 9133                 UCBerkeley                                         missing
## 9134                 UCBerkeley                                        networks
## 9135                 UCBerkeley                                         novices
## 9136                 UCBerkeley                                           numpy
## 9137                 UCBerkeley                                         offered
## 9138                 UCBerkeley                                        offering
## 9139                 UCBerkeley                                       offerings
## 9140                 UCBerkeley                                            okpy
## 9141                 UCBerkeley                                          output
## 9142                 UCBerkeley                                          parent
## 9143                 UCBerkeley                                     partnership
## 9144                 UCBerkeley                                     pedagogical
## 9145                 UCBerkeley                                    perspectives
## 9146                 UCBerkeley                                        prepared
## 9147                 UCBerkeley                                         privacy
## 9148                 UCBerkeley                                         private
## 9149                 UCBerkeley                                     programming
## 9150                 UCBerkeley                                         project
## 9151                 UCBerkeley                                        projects
## 9152                 UCBerkeley                                         provide
## 9153                 UCBerkeley                                        purposes
## 9154                 UCBerkeley                                          python
## 9155                 UCBerkeley                                        readings
## 9156                 UCBerkeley                                       relevance
## 9157                 UCBerkeley                                      repository
## 9158                 UCBerkeley                                         request
## 9159                 UCBerkeley                                      respective
## 9160                 UCBerkeley                                             row
## 9161                 UCBerkeley                                          series
## 9162                 UCBerkeley                                          server
## 9163                 UCBerkeley                                             set
## 9164                 UCBerkeley                                            sets
## 9165                 UCBerkeley                                         setting
## 9166                 UCBerkeley                                         similar
## 9167                 UCBerkeley                                        simplify
## 9168                 UCBerkeley                                            site
## 9169                 UCBerkeley                                          skills
## 9170                 UCBerkeley                                         slicing
## 9171                 UCBerkeley                                         society
## 9172                 UCBerkeley                                      standalone
## 9173                 UCBerkeley                                     statistical
## 9174                 UCBerkeley                                     surrounding
## 9175                 UCBerkeley                                          system
## 9176                 UCBerkeley                                          tables
## 9177                 UCBerkeley                                         teaches
## 9178                 UCBerkeley                                            time
## 9179                 UCBerkeley                                      transition
## 9180                 UCBerkeley                                            type
## 9181                 UCBerkeley                                      understand
## 9182                 UCBerkeley                                      validation
## 9183                 UCBerkeley                                          values
## 9184                 UCBerkeley                                          videos
## 9185                 UCSanDiego                                            10pm
## 9186                 UCSanDiego                                            10th
## 9187                 UCSanDiego                                            58pm
## 9188                 UCSanDiego                                             5th
## 9189                 UCSanDiego                                         abiding
## 9190                 UCSanDiego                                       abilities
## 9191                 UCSanDiego                                      absolutely
## 9192                 UCSanDiego                                   accommodation
## 9193                 UCSanDiego                                          action
## 9194                 UCSanDiego                                         adapted
## 9195                 UCSanDiego                                             add
## 9196                 UCSanDiego                                      additional
## 9197                 UCSanDiego                                        adhikari
## 9198                 UCSanDiego                                        advanced
## 9199                 UCSanDiego                                          advice
## 9200                 UCSanDiego                                             afa
## 9201                 UCSanDiego                                  aforementioned
## 9202                 UCSanDiego                                       afterward
## 9203                 UCSanDiego                                           agree
## 9204                 UCSanDiego                                            aims
## 9205                 UCSanDiego                                           alert
## 9206                 UCSanDiego                                         algebra
## 9207                 UCSanDiego                                        allocate
## 9208                 UCSanDiego                                        allotted
## 9209                 UCSanDiego                                         amazing
## 9210                 UCSanDiego                                          amount
## 9211                 UCSanDiego                                         analyze
## 9212                 UCSanDiego                                             ani
## 9213                 UCSanDiego                                     anonymously
## 9214                 UCSanDiego                                        answered
## 9215                 UCSanDiego                                         applied
## 9216                 UCSanDiego                                        applying
## 9217                 UCSanDiego                                    arrangements
## 9218                 UCSanDiego                                            asap
## 9219                 UCSanDiego                                        assessed
## 9220                 UCSanDiego                                       assigment
## 9221                 UCSanDiego                                          assign
## 9222                 UCSanDiego                                        assigned
## 9223                 UCSanDiego                                       assigning
## 9224                 UCSanDiego                                         assumed
## 9225                 UCSanDiego                                       attention
## 9226                 UCSanDiego                                     attribution
## 9227                 UCSanDiego                                   authorization
## 9228                 UCSanDiego                                       automated
## 9229                 UCSanDiego                                   automatically
## 9230                 UCSanDiego                                         avoided
## 9231                 UCSanDiego                                           aware
## 9232                 UCSanDiego                                            baby
## 9233                 UCSanDiego                                      background
## 9234                 UCSanDiego                                     backgrounds
## 9235                 UCSanDiego                                           based
## 9236                 UCSanDiego                                           basic
## 9237                 UCSanDiego                                         benefit
## 9238                 UCSanDiego                                            book
## 9239                 UCSanDiego                                        bookmark
## 9240                 UCSanDiego                                           books
## 9241                 UCSanDiego                                             bpd
## 9242                 UCSanDiego                                           brain
## 9243                 UCSanDiego                                           bring
## 9244                 UCSanDiego                                          builds
## 9245                 UCSanDiego                                            busy
## 9246                 UCSanDiego                                     calculation
## 9247                 UCSanDiego                                        calendar
## 9248                 UCSanDiego                                            call
## 9249                 UCSanDiego                                          career
## 9250                 UCSanDiego                                     challenging
## 9251                 UCSanDiego                                         chances
## 9252                 UCSanDiego                                         chatgpt
## 9253                 UCSanDiego                                          choose
## 9254                 UCSanDiego                                         chronic
## 9255                 UCSanDiego                                             cit
## 9256                 UCSanDiego                                       classwork
## 9257                 UCSanDiego                                   collaborating
## 9258                 UCSanDiego                                        commands
## 9259                 UCSanDiego                                       committed
## 9260                 UCSanDiego                                      completion
## 9261                 UCSanDiego                                       component
## 9262                 UCSanDiego                                   computational
## 9263                 UCSanDiego                                        computed
## 9264                 UCSanDiego                                        concerns
## 9265                 UCSanDiego                                     conclusions
## 9266                 UCSanDiego                                       condition
## 9267                 UCSanDiego                                        conflict
## 9268                 UCSanDiego                                        confused
## 9269                 UCSanDiego                                      connection
## 9270                 UCSanDiego                                         control
## 9271                 UCSanDiego                                         copilot
## 9272                 UCSanDiego                                            core
## 9273                 UCSanDiego                                            cost
## 9274                 UCSanDiego                                         courage
## 9275                 UCSanDiego                                         courses
## 9276                 UCSanDiego                                      coursework
## 9277                 UCSanDiego                                         created
## 9278                 UCSanDiego                                        criteria
## 9279                 UCSanDiego                                      cumulative
## 9280                 UCSanDiego                                datahub.ucsd.edu
## 9281                 UCSanDiego                                         dataset
## 9282                 UCSanDiego                                            dean
## 9283                 UCSanDiego                                          decide
## 9284                 UCSanDiego                                         degrees
## 9285                 UCSanDiego                                          denero
## 9286                 UCSanDiego                                           depth
## 9287                 UCSanDiego                                          detect
## 9288                 UCSanDiego                                        devalues
## 9289                 UCSanDiego                                         develop
## 9290                 UCSanDiego                                       developed
## 9291                 UCSanDiego                                              di
## 9292                 UCSanDiego                                       dicussion
## 9293                 UCSanDiego                                           diego
## 9294                 UCSanDiego                                      difference
## 9295                 UCSanDiego                                       disabling
## 9296                 UCSanDiego                                     disciplines
## 9297                 UCSanDiego                                      discretion
## 9298                 UCSanDiego                                     discussions
## 9299                 UCSanDiego                                         dismiss
## 9300                 UCSanDiego                                         diverse
## 9301                 UCSanDiego                                      documented
## 9302                 UCSanDiego                                          double
## 9303                 UCSanDiego                                           doubt
## 9304                 UCSanDiego                                     downloading
## 9305                 UCSanDiego                                            draw
## 9306                 UCSanDiego                                         dropped
## 9307                 UCSanDiego                                           drops
## 9308                 UCSanDiego                                            earn
## 9309                 UCSanDiego                                          earned
## 9310                 UCSanDiego                                        eldridge
## 9311                 UCSanDiego                                        eligible
## 9312                 UCSanDiego                                          else's
## 9313                 UCSanDiego                                       emphasize
## 9314                 UCSanDiego                                          enroll
## 9315                 UCSanDiego                                        entering
## 9316                 UCSanDiego                                         equally
## 9317                 UCSanDiego                                          equals
## 9318                 UCSanDiego                                        equipped
## 9319                 UCSanDiego                                           event
## 9320                 UCSanDiego                                          events
## 9321                 UCSanDiego                                        examples
## 9322                 UCSanDiego                                     exceptional
## 9323                 UCSanDiego                                          excuse
## 9324                 UCSanDiego                                          expect
## 9325                 UCSanDiego                                       expertise
## 9326                 UCSanDiego                                         express
## 9327                 UCSanDiego                                         extends
## 9328                 UCSanDiego                                     extenuating
## 9329                 UCSanDiego                                            fail
## 9330                 UCSanDiego                                        fairness
## 9331                 UCSanDiego                                           feels
## 9332                 UCSanDiego                                        finishes
## 9333                 UCSanDiego                                             fix
## 9334                 UCSanDiego                                         fluency
## 9335                 UCSanDiego                                         focused
## 9336                 UCSanDiego                                        foremost
## 9337                 UCSanDiego                                            form
## 9338                 UCSanDiego                                      formatting
## 9339                 UCSanDiego                                            free
## 9340                 UCSanDiego                                         friends
## 9341                 UCSanDiego                                             fun
## 9342                 UCSanDiego                                          github
## 9343                 UCSanDiego                                          giving
## 9344                 UCSanDiego                                          google
## 9345                 UCSanDiego                                    gradescope's
## 9346                 UCSanDiego                                        graduate
## 9347                 UCSanDiego                                           guide
## 9348                 UCSanDiego                                      guidelines
## 9349                 UCSanDiego                                           habit
## 9350                 UCSanDiego                                           hands
## 9351                 UCSanDiego                                          happen
## 9352                 UCSanDiego                                       happening
## 9353                 UCSanDiego                                          health
## 9354                 UCSanDiego                                         hearing
## 9355                 UCSanDiego                                         heavily
## 9356                 UCSanDiego                                         helpful
## 9357                 UCSanDiego                                           helps
## 9358                 UCSanDiego                                            hold
## 9359                 UCSanDiego                                          honest
## 9360                 UCSanDiego                                         honesty
## 9361                 UCSanDiego                                           honor
## 9362                 UCSanDiego                                            hour
## 9363                 UCSanDiego                                            idea
## 9364                 UCSanDiego                                        identify
## 9365                 UCSanDiego                                      identities
## 9366                 UCSanDiego                                       ignorance
## 9367                 UCSanDiego                                          ignore
## 9368                 UCSanDiego                                     immediately
## 9369                 UCSanDiego                                        impeding
## 9370                 UCSanDiego                                      imperative
## 9371                 UCSanDiego                                      impossible
## 9372                 UCSanDiego                                   inappropriate
## 9373                 UCSanDiego                                        includes
## 9374                 UCSanDiego                                       including
## 9375                 UCSanDiego                                      incomplete
## 9376                 UCSanDiego                                      indivduals
## 9377                 UCSanDiego                                     inferential
## 9378                 UCSanDiego                                     information
## 9379                 UCSanDiego                                        injuries
## 9380                 UCSanDiego                                   instructional
## 9381                 UCSanDiego                                      instructor
## 9382                 UCSanDiego                                    instructor's
## 9383                 UCSanDiego                                     interacting
## 9384                 UCSanDiego                                     interaction
## 9385                 UCSanDiego                                       introduce
## 9386                 UCSanDiego                                    introduction
## 9387                 UCSanDiego                                         involve
## 9388                 UCSanDiego                                           issue
## 9389                 UCSanDiego                                          janine
## 9390                 UCSanDiego                                            john
## 9391                 UCSanDiego                                            join
## 9392                 UCSanDiego                                            json
## 9393                 UCSanDiego                                       judgement
## 9394                 UCSanDiego                                        judgment
## 9395                 UCSanDiego                                            june
## 9396                 UCSanDiego                                         jupyter
## 9397                 UCSanDiego                                          justin
## 9398                 UCSanDiego                                        keyboard
## 9399                 UCSanDiego                                       knowledge
## 9400                 UCSanDiego                                              la
## 9401                 UCSanDiego                                          laptop
## 9402                 UCSanDiego                                        lectures
## 9403                 UCSanDiego                                            left
## 9404                 UCSanDiego                                        leniency
## 9405                 UCSanDiego                                         liaison
## 9406                 UCSanDiego                                            lies
## 9407                 UCSanDiego                                            life
## 9408                 UCSanDiego                                            live
## 9409                 UCSanDiego                                          loaner
## 9410                 UCSanDiego                                        location
## 9411                 UCSanDiego                                       logistics
## 9412                 UCSanDiego                                            lose
## 9413                 UCSanDiego                                             lot
## 9414                 UCSanDiego                                             low
## 9415                 UCSanDiego                                         machine
## 9416                 UCSanDiego                                        majority
## 9417                 UCSanDiego                                           makes
## 9418                 UCSanDiego                                         mastery
## 9419                 UCSanDiego                                             max
## 9420                 UCSanDiego                                         maximum
## 9421                 UCSanDiego                                         meaning
## 9422                 UCSanDiego                                      meaningful
## 9423                 UCSanDiego                                           media
## 9424                 UCSanDiego                                 misrepresenting
## 9425                 UCSanDiego                                        mistakes
## 9426                 UCSanDiego                                          monday
## 9427                 UCSanDiego                                      motivation
## 9428                 UCSanDiego                                       notebooks
## 9429                 UCSanDiego                                          notice
## 9430                 UCSanDiego                                        offering
## 9431                 UCSanDiego                                       offerings
## 9432                 UCSanDiego                                         onwards
## 9433                 UCSanDiego                                     opportunity
## 9434                 UCSanDiego                                          option
## 9435                 UCSanDiego                                        optional
## 9436                 UCSanDiego                                        original
## 9437                 UCSanDiego                                          output
## 9438                 UCSanDiego                                          pandas
## 9439                 UCSanDiego                                           paper
## 9440                 UCSanDiego                                           party
## 9441                 UCSanDiego                                            past
## 9442                 UCSanDiego                                      percentage
## 9443                 UCSanDiego                                         perform
## 9444                 UCSanDiego                                      permission
## 9445                 UCSanDiego                                      permitting
## 9446                 UCSanDiego                                       pertinent
## 9447                 UCSanDiego                                        physical
## 9448                 UCSanDiego                                      plagiarism
## 9449                 UCSanDiego                                    plagiarizing
## 9450                 UCSanDiego                                            plan
## 9451                 UCSanDiego                                        planning
## 9452                 UCSanDiego                                        platform
## 9453                 UCSanDiego                                       platforms
## 9454                 UCSanDiego                                          played
## 9455                 UCSanDiego                                           polls
## 9456                 UCSanDiego                                       potential
## 9457                 UCSanDiego                                         predict
## 9458                 UCSanDiego                                     predictable
## 9459                 UCSanDiego                                     predictions
## 9460                 UCSanDiego                                          prefer
## 9461                 UCSanDiego                                     preparation
## 9462                 UCSanDiego                                   prerequisites
## 9463                 UCSanDiego                                      previously
## 9464                 UCSanDiego                                         primary
## 9465                 UCSanDiego                                      principles
## 9466                 UCSanDiego                                           prior
## 9467                 UCSanDiego                                         private
## 9468                 UCSanDiego                                       privately
## 9469                 UCSanDiego                                       probation
## 9470                 UCSanDiego                                        prohibit
## 9471                 UCSanDiego                                           proud
## 9472                 UCSanDiego                                       providing
## 9473                 UCSanDiego                                     psychiatric
## 9474                 UCSanDiego                                   psychological
## 9475                 UCSanDiego                                            pull
## 9476                 UCSanDiego                                         rampure
## 9477                 UCSanDiego                                             ran
## 9478                 UCSanDiego                                         reached
## 9479                 UCSanDiego                                         reading
## 9480                 UCSanDiego                                            real
## 9481                 UCSanDiego                                       receiving
## 9482                 UCSanDiego                                          recent
## 9483                 UCSanDiego                                           refer
## 9484                 UCSanDiego                                       reference
## 9485                 UCSanDiego                                         reflect
## 9486                 UCSanDiego                                      registered
## 9487                 UCSanDiego                                       regularly
## 9488                 UCSanDiego                                       reinforce
## 9489                 UCSanDiego                                         related
## 9490                 UCSanDiego                                     remembering
## 9491                 UCSanDiego                                          remote
## 9492                 UCSanDiego                                        remotely
## 9493                 UCSanDiego                                         require
## 9494                 UCSanDiego                                        resource
## 9495                 UCSanDiego                                       respected
## 9496                 UCSanDiego                                        respects
## 9497                 UCSanDiego                                         results
## 9498                 UCSanDiego                                            role
## 9499                 UCSanDiego                                            rule
## 9500                 UCSanDiego                                           rules
## 9501                 UCSanDiego                                         running
## 9502                 UCSanDiego                                             san
## 9503                 UCSanDiego                                      sanctioned
## 9504                 UCSanDiego                                  satisfactorily
## 9505                 UCSanDiego                                        saturday
## 9506                 UCSanDiego                                       saturdays
## 9507                 UCSanDiego                                            save
## 9508                 UCSanDiego                                           scale
## 9509                 UCSanDiego                                       scheduled
## 9510                 UCSanDiego                                          school
## 9511                 UCSanDiego                                       searching
## 9512                 UCSanDiego                                           seats
## 9513                 UCSanDiego                                        sequence
## 9514                 UCSanDiego                                          server
## 9515                 UCSanDiego                                         shaping
## 9516                 UCSanDiego                                           share
## 9517                 UCSanDiego                                           sites
## 9518                 UCSanDiego                                        slightly
## 9519                 UCSanDiego                                            slot
## 9520                 UCSanDiego                                          social
## 9521                 UCSanDiego                                        software
## 9522                 UCSanDiego                                        solution
## 9523                 UCSanDiego                                           solve
## 9524                 UCSanDiego                                          solved
## 9525                 UCSanDiego                                       someone's
## 9526                 UCSanDiego                                          source
## 9527                 UCSanDiego                                         sources
## 9528                 UCSanDiego                                        specific
## 9529                 UCSanDiego                                    specifically
## 9530                 UCSanDiego                                          spirit
## 9531                 UCSanDiego                                       splitting
## 9532                 UCSanDiego                                          stable
## 9533                 UCSanDiego                                        standard
## 9534                 UCSanDiego                                       standards
## 9535                 UCSanDiego                                      statistics
## 9536                 UCSanDiego                                          status
## 9537                 UCSanDiego                                            stop
## 9538                 UCSanDiego                                      strategies
## 9539                 UCSanDiego                                      strengthen
## 9540                 UCSanDiego                                          stress
## 9541                 UCSanDiego                                           stuck
## 9542                 UCSanDiego                                         subject
## 9543                 UCSanDiego                                     submissions
## 9544                 UCSanDiego                                      successful
## 9545                 UCSanDiego                                       summarize
## 9546                 UCSanDiego                                          sunday
## 9547                 UCSanDiego                                           suraj
## 9548                 UCSanDiego                                            surf
## 9549                 UCSanDiego                                         suspend
## 9550                 UCSanDiego                                             tab
## 9551                 UCSanDiego                                             tag
## 9552                 UCSanDiego                                            talk
## 9553                 UCSanDiego                                             tbd
## 9554                 UCSanDiego                                           teach
## 9555                 UCSanDiego                                      techniques
## 9556                 UCSanDiego                                        textbook
## 9557                 UCSanDiego                                        thinking
## 9558                 UCSanDiego                                          thrive
## 9559                 UCSanDiego                                        thursday
## 9560                 UCSanDiego                                     tiefenbruck
## 9561                 UCSanDiego                                           timed
## 9562                 UCSanDiego                                             top
## 9563                 UCSanDiego                                           track
## 9564                 UCSanDiego                                         trained
## 9565                 UCSanDiego                                     transparent
## 9566                 UCSanDiego                                           trust
## 9567                 UCSanDiego                                         tuesday
## 9568                 UCSanDiego                                        tuesdays
## 9569                 UCSanDiego                                           tutor
## 9570                 UCSanDiego                                          tutors
## 9571                 UCSanDiego                                             txt
## 9572                 UCSanDiego                                           types
## 9573                 UCSanDiego                                         typical
## 9574                 UCSanDiego                                          ucsd's
## 9575                 UCSanDiego                                      underlying
## 9576                 UCSanDiego                                       unethical
## 9577                 UCSanDiego                                     unethically
## 9578                 UCSanDiego                                        ungraded
## 9579                 UCSanDiego                                      university
## 9580                 UCSanDiego                                         variety
## 9581                 UCSanDiego                                         version
## 9582                 UCSanDiego                                          videos
## 9583                 UCSanDiego                                      violations
## 9584                 UCSanDiego                                         virtual
## 9585                 UCSanDiego                                          vision
## 9586                 UCSanDiego                                            wait
## 9587                 UCSanDiego                                         waiting
## 9588                 UCSanDiego                                        watching
## 9589                 UCSanDiego                                             web
## 9590                 UCSanDiego                                          webcam
## 9591                 UCSanDiego                                       wednesday
## 9592                 UCSanDiego                                           weeks
## 9593                 UCSanDiego                                          weight
## 9594                 UCSanDiego                                           weird
## 9595                 UCSanDiego                                           write
## 9596                    UIU_107                                           1,000
## 9597                    UIU_107                                         870,900
## 9598                    UIU_107                                        accepted
## 9599                    UIU_107                                      activities
## 9600                    UIU_107                                          amount
## 9601                    UIU_107                                         analyze
## 9602                    UIU_107                                         android
## 9603                    UIU_107                                         applies
## 9604                    UIU_107                                         archive
## 9605                    UIU_107                                        archived
## 9606                    UIU_107                                           arise
## 9607                    UIU_107                                        assigned
## 9608                    UIU_107                                     assignmnets
## 9609                    UIU_107                                      assistance
## 9610                    UIU_107                                       assistant
## 9611                    UIU_107                                    asynchronous
## 9612                    UIU_107                                         attempt
## 9613                    UIU_107                                       automatic
## 9614                    UIU_107                                           bonus
## 9615                    UIU_107                                       breakdown
## 9616                    UIU_107                                           bring
## 9617                    UIU_107                                         brought
## 9618                    UIU_107                                            byod
## 9619                    UIU_107                                          called
## 9620                    UIU_107                                          campus
## 9621                    UIU_107                                          capped
## 9622                    UIU_107                                             cas
## 9623                    UIU_107                                          center
## 9624                    UIU_107                                          choose
## 9625                    UIU_107                                     chromebooks
## 9626                    UIU_107                                      classmates
## 9627                    UIU_107                                           click
## 9628                    UIU_107                                   collaborative
## 9629                    UIU_107                                 collaboratively
## 9630                    UIU_107                                         college
## 9631                    UIU_107                                      completion
## 9632                    UIU_107                                       component
## 9633                    UIU_107                                   comprehensive
## 9634                    UIU_107                                       comprised
## 9635                    UIU_107                                     computation
## 9636                    UIU_107                                        concepts
## 9637                    UIU_107                                      conceptual
## 9638                    UIU_107                                      considered
## 9639                    UIU_107                                         content
## 9640                    UIU_107                                        continue
## 9641                    UIU_107                                          copied
## 9642                    UIU_107                                         dataset
## 9643                    UIU_107                                        datasets
## 9644                    UIU_107                                       debugging
## 9645                    UIU_107                                       dedicated
## 9646                    UIU_107                                      department
## 9647                    UIU_107                                        detailed
## 9648                    UIU_107                                      determined
## 9649                    UIU_107                                      difference
## 9650                    UIU_107                                          direct
## 9651                    UIU_107                                      dishonesty
## 9652                    UIU_107                                          doubts
## 9653                    UIU_107                                          driven
## 9654                    UIU_107                                            drop
## 9655                    UIU_107                                            earn
## 9656                    UIU_107                                       education
## 9657                    UIU_107                                          else's
## 9658                    UIU_107                                       encourage
## 9659                    UIU_107                                           exams
## 9660                    UIU_107                                          exceed
## 9661                    UIU_107                                       exception
## 9662                    UIU_107                                      experience
## 9663                    UIU_107                                           fagen
## 9664                    UIU_107                                            fall
## 9665                    UIU_107                                       fantastic
## 9666                    UIU_107                                        features
## 9667                    UIU_107                                        findings
## 9668                    UIU_107                                        flanagan
## 9669                    UIU_107                                           focus
## 9670                    UIU_107                                         fridays
## 9671                    UIU_107                                          friend
## 9672                    UIU_107                                         friends
## 9673                    UIU_107                                             git
## 9674                    UIU_107                                           hands
## 9675                    UIU_107                                            hurt
## 9676                    UIU_107                                          impact
## 9677                    UIU_107                                        incident
## 9678                    UIU_107                                       including
## 9679                    UIU_107                                      insightful
## 9680                    UIU_107                                         install
## 9681                    UIU_107                                    instructions
## 9682                    UIU_107                                    intersection
## 9683                    UIU_107                                           ipads
## 9684                    UIU_107                                           karle
## 9685                    UIU_107                                           learn
## 9686                    UIU_107                                        learning
## 9687                    UIU_107                                           linux
## 9688                    UIU_107                                           lower
## 9689                    UIU_107                                         lowered
## 9690                    UIU_107                                          lowest
## 9691                    UIU_107                                       materials
## 9692                    UIU_107                                         meeting
## 9693                    UIU_107                                         minutes
## 9694                    UIU_107                                         missing
## 9695                    UIU_107                                         mondays
## 9696                    UIU_107                                           moved
## 9697                    UIU_107                                        multiple
## 9698                    UIU_107                                    nwibzkdbzgm1
## 9699                    UIU_107                nwibzkdbzgm1rwjsqxcrauxgz083ut09
## 9700                    UIU_107                                         offered
## 9701                    UIU_107                                          online
## 9702                    UIU_107                                   opportunities
## 9703                    UIU_107                                     opportunity
## 9704                    UIU_107                                              os
## 9705                    UIU_107                                          pasted
## 9706                    UIU_107                                          person
## 9707                    UIU_107                                   prerequisites
## 9708                    UIU_107                                         privacy
## 9709                    UIU_107                                     programming
## 9710                    UIU_107                                        projects
## 9711                    UIU_107                                      protecting
## 9712                    UIU_107                                        provided
## 9713                    UIU_107                                          python
## 9714                    UIU_107                                             qr1
## 9715                    UIU_107                                    quantitative
## 9716                    UIU_107                                           raise
## 9717                    UIU_107                                            read
## 9718                    UIU_107                                       reasoning
## 9719                    UIU_107                                          recent
## 9720                    UIU_107                                         reflect
## 9721                    UIU_107                                      reflection
## 9722                    UIU_107                                      registered
## 9723                    UIU_107                                       relevance
## 9724                    UIU_107                                        required
## 9725                    UIU_107                                        requires
## 9726                    UIU_107                                         results
## 9727                    UIU_107                                         running
## 9728                    UIU_107                            rwjsqxcrauxgz083ut09
## 9729                    UIU_107                                       sanctions
## 9730                    UIU_107                                       scheduled
## 9731                    UIU_107                                           score
## 9732                    UIU_107                                       semesters
## 9733                    UIU_107                                          siebel
## 9734                    UIU_107                                   significantly
## 9735                    UIU_107                                          single
## 9736                    UIU_107                                        slightly
## 9737                    UIU_107                                         solving
## 9738                    UIU_107                                          source
## 9739                    UIU_107                                         sources
## 9740                    UIU_107                                           south
## 9741                    UIU_107                                    specifically
## 9742                    UIU_107                                          spring
## 9743                    UIU_107                                      statistics
## 9744                    UIU_107                                        strongly
## 9745                    UIU_107                                       supported
## 9746                    UIU_107                                     surrounding
## 9747                    UIU_107                                        syllabus
## 9748                    UIU_107                                         tablets
## 9749                    UIU_107                                          tackle
## 9750                    UIU_107                                         talking
## 9751                    UIU_107                                         targets
## 9752                    UIU_107                                             tas
## 9753                    UIU_107                                           total
## 9754                    UIU_107                                        totaling
## 9755                    UIU_107                                      translated
## 9756                    UIU_107                                            true
## 9757                    UIU_107                                         tuesday
## 9758                    UIU_107                                           typed
## 9759                    UIU_107                                    ulmschneider
## 9760                    UIU_107                                   understanding
## 9761                    UIU_107                                      university
## 9762                    UIU_107                                       violation
## 9763                    UIU_107                                            wade
## 9764                    UIU_107                                         webpage
## 9765                    UIU_107                                         website
## 9766                    UIU_107                                       wednesday
## 9767                    UIU_107                                           weeks
## 9768                    UIU_107                                         windows
## 9769                    UIU_107                                           words
## 9770                    UIU_207                                            00pm
## 9771                    UIU_207                                            50pm
## 9772                    UIU_207                                             7pm
## 9773                    UIU_207                                     accelerated
## 9774                    UIU_207                                        accepted
## 9775                    UIU_207                                         achieve
## 9776                    UIU_207                                           added
## 9777                    UIU_207                                           adept
## 9778                    UIU_207                                          affect
## 9779                    UIU_207                                        analytic
## 9780                    UIU_207                                       analytics
## 9781                    UIU_207                                         applies
## 9782                    UIU_207                                           april
## 9783                    UIU_207                                       assistant
## 9784                    UIU_207                                     assumptions
## 9785                    UIU_207                                         attempt
## 9786                    UIU_207                                          attend
## 9787                    UIU_207                                       automatic
## 9788                    UIU_207                                            barr
## 9789                    UIU_207                                           basic
## 9790                    UIU_207                                         benefit
## 9791                    UIU_207                                           books
## 9792                    UIU_207                                         brought
## 9793                    UIU_207                                     calculators
## 9794                    UIU_207                                       cetinkaya
## 9795                    UIU_207                                     chromebooks
## 9796                    UIU_207                                      classmates
## 9797                    UIU_207                                          coding
## 9798                    UIU_207                                 collaboratively
## 9799                    UIU_207                                         college
## 9800                    UIU_207                                        combined
## 9801                    UIU_207                                       completed
## 9802                    UIU_207                                        comprise
## 9803                    UIU_207                                       comprised
## 9804                    UIU_207                                        computed
## 9805                    UIU_207                                        computer
## 9806                    UIU_207                                        concepts
## 9807                    UIU_207                                     conclusions
## 9808                    UIU_207                                       confusing
## 9809                    UIU_207                                      considered
## 9810                    UIU_207                                         contact
## 9811                    UIU_207                                        continue
## 9812                    UIU_207                                          copied
## 9813                    UIU_207                                       corrected
## 9814                    UIU_207                                        detected
## 9815                    UIU_207                                         develop
## 9816                    UIU_207                                            diez
## 9817                    UIU_207                                      difference
## 9818                    UIU_207                                          direct
## 9819                    UIU_207                                       discovery
## 9820                    UIU_207                                      discussion
## 9821                    UIU_207                                      dishonesty
## 9822                    UIU_207                                          doubts
## 9823                    UIU_207                                         douglas
## 9824                    UIU_207                                    download.php
## 9825                    UIU_207                                              ds
## 9826                    UIU_207                                          else's
## 9827                    UIU_207                                       encourage
## 9828                    UIU_207                                         equally
## 9829                    UIU_207                                          errors
## 9830                    UIU_207                                        evenings
## 9831                    UIU_207                                       exception
## 9832                    UIU_207                                      experience
## 9833                    UIU_207                                         faculty
## 9834                    UIU_207                                          fields
## 9835                    UIU_207                                            file
## 9836                    UIU_207                                      foundation
## 9837                    UIU_207                                          frames
## 9838                    UIU_207                                          friend
## 9839                    UIU_207                                         friends
## 9840                    UIU_207                                            gain
## 9841                    UIU_207                                             git
## 9842                    UIU_207                                 go.illinois.edu
## 9843                    UIU_207                                        graphing
## 9844                    UIU_207                                            hall
## 9845                    UIU_207                                        handbook
## 9846                    UIU_207                                           hands
## 9847                    UIU_207                                           happy
## 9848                    UIU_207                                           ideal
## 9849                    UIU_207                                              ii
## 9850                    UIU_207                                          illini
## 9851                    UIU_207                                        incident
## 9852                    UIU_207                                        industry
## 9853                    UIU_207                                         install
## 9854                    UIU_207                                   instructional
## 9855                    UIU_207                                    instructions
## 9856                    UIU_207                                     interacting
## 9857                    UIU_207                                    introduction
## 9858                    UIU_207                                           ipads
## 9859                    UIU_207                               jakevdp.github.io
## 9860                    UIU_207                                         jupyter
## 9861                    UIU_207                                          launch
## 9862                    UIU_207                                            lead
## 9863                    UIU_207                                           learn
## 9864                    UIU_207                                        lectures
## 9865                    UIU_207                                          letter
## 9866                    UIU_207                                         lincoln
## 9867                    UIU_207                                           linux
## 9868                    UIU_207                                             liu
## 9869                    UIU_207                                            loss
## 9870                    UIU_207                                         lowered
## 9871                    UIU_207                                         machine
## 9872                    UIU_207                                           major
## 9873                    UIU_207                                      management
## 9874                    UIU_207                                       materials
## 9875                    UIU_207                                           meets
## 9876                    UIU_207                                         midterm
## 9877                    UIU_207                                         minutes
## 9878                    UIU_207                                          models
## 9879                    UIU_207                                        multiple
## 9880                    UIU_207                                             mwf
## 9881                    UIU_207                                           noisy
## 9882                    UIU_207                                       notebooks
## 9883                    UIU_207                                          online
## 9884                    UIU_207                                       openintro
## 9885                    UIU_207                                              os
## 9886                    UIU_207                                   participating
## 9887                    UIU_207                                   participation
## 9888                    UIU_207                                          pasted
## 9889                    UIU_207                                    personalized
## 9890                    UIU_207                                          phones
## 9891                    UIU_207                                             php
## 9892                    UIU_207                                          piazza
## 9893                    UIU_207                                      piazza.com
## 9894                    UIU_207                                          posted
## 9895                    UIU_207                                   prerequisites
## 9896                    UIU_207                                      previously
## 9897                    UIU_207                                         primary
## 9898                    UIU_207                                           prior
## 9899                    UIU_207                                     probability
## 9900                    UIU_207                                      proficient
## 9901                    UIU_207                                    programmable
## 9902                    UIU_207                                     programming
## 9903                    UIU_207                                         project
## 9904                    UIU_207                                      protecting
## 9905                    UIU_207                                        provided
## 9906                    UIU_207                       pythondatasciencehandbook
## 9907                    UIU_207                                    quantitative
## 9908                    UIU_207                                           quick
## 9909                    UIU_207                                         receive
## 9910                    UIU_207                                        redirect
## 9911                    UIU_207                                      regression
## 9912                    UIU_207                                          report
## 9913                    UIU_207                                         reports
## 9914                    UIU_207                                    repositories
## 9915                    UIU_207                                        required
## 9916                    UIU_207                                        requires
## 9917                    UIU_207                                         results
## 9918                    UIU_207                                          review
## 9919                    UIU_207                                          rundel
## 9920                    UIU_207                                         running
## 9921                    UIU_207                                        sampling
## 9922                    UIU_207                                       sanctions
## 9923                    UIU_207                                        schedule
## 9924                    UIU_207                                           score
## 9925                    UIU_207                                        semester
## 9926                    UIU_207                                        settings
## 9927                    UIU_207                                         simpson
## 9928                    UIU_207                                          source
## 9929                    UIU_207                                    specifically
## 9930                    UIU_207                                      spring2020
## 9931                    UIU_207                                           staff
## 9932                    UIU_207                                        standard
## 9933                    UIU_207                                      submitting
## 9934                    UIU_207                                       supported
## 9935                    UIU_207                                        syllabus
## 9936                    UIU_207                                         tablets
## 9937                    UIU_207                                          taking
## 9938                    UIU_207                                         talking
## 9939                    UIU_207                                      techniques
## 9940                    UIU_207                                        textbook
## 9941                    UIU_207                                      thresholds
## 9942                    UIU_207                                             thu
## 9943                    UIU_207                                           times
## 9944                    UIU_207                                       translate
## 9945                    UIU_207                                      translated
## 9946                    UIU_207                                           typed
## 9947                    UIU_207                                     uncertainty
## 9948                    UIU_207                                   understanding
## 9949                    UIU_207                                         updated
## 9950                    UIU_207                                      vanderplas
## 9951                    UIU_207                                       violation
## 9952                    UIU_207                                   visualization
## 9953                    UIU_207                                             wed
## 9954                    UIU_207                                            week
## 9955                    UIU_207                                          weekly
## 9956                    UIU_207                                         windows
## 9957                    UIU_207                                           words
## 9958                    UIU_207                                       workflows
## 9959                    UIU_207                               www.openintro.org
## 9960                    UIU_207                                          yuxuan
## 9961                  UKentucky                                         5.2.4.2
## 9962                  UKentucky                                             a.m
## 9963                  UKentucky                                          access
## 9964                  UKentucky                                   accommodation
## 9965                  UKentucky                                          active
## 9966                  UKentucky                                          acumen
## 9967                  UKentucky                                             add
## 9968                  UKentucky                                        addition
## 9969                  UKentucky                                           agree
## 9970                  UKentucky                                          alumni
## 9971                  UKentucky                                       analyzing
## 9972                  UKentucky                                          answer
## 9973                  UKentucky                                           apple
## 9974                  UKentucky                                    appointments
## 9975                  UKentucky                                           april
## 9976                  UKentucky                                          arises
## 9977                  UKentucky                                      assessment
## 9978                  UKentucky                                        assigned
## 9979                  UKentucky                                          assist
## 9980                  UKentucky                                       assistant
## 9981                  UKentucky                                    asynchronous
## 9982                  UKentucky                                        athletic
## 9983                  UKentucky                                           audio
## 9984                  UKentucky                                          author
## 9985                  UKentucky                                    availability
## 9986                  UKentucky                                         average
## 9987                  UKentucky                                           avoid
## 9988                  UKentucky                                           aware
## 9989                  UKentucky                                            base
## 9990                  UKentucky                                           basis
## 9991                  UKentucky                                       beginning
## 9992                  UKentucky                                       behaviors
## 9993                  UKentucky                                        benefits
## 9994                  UKentucky                                            bill
## 9995                  UKentucky                                        birthday
## 9996                  UKentucky                                       bookstore
## 9997                  UKentucky                                             box
## 9998                  UKentucky                                           break
## 9999                  UKentucky                                         browser
## 10000                 UKentucky                                        browsers
## 10001                 UKentucky                                           build
## 10002                 UKentucky                                        building
## 10003                 UKentucky                                            call
## 10004                 UKentucky                                           calls
## 10005                 UKentucky                                          campus
## 10006                 UKentucky                                      cantagallo
## 10007                 UKentucky                                    capabilities
## 10008                 UKentucky                                           carla
## 10009                 UKentucky                                        cheating
## 10010                 UKentucky                                          choose
## 10011                 UKentucky                                      ci.uky.edu
## 10012                 UKentucky                                    circumstance
## 10013                 UKentucky                                   circumstances
## 10014                 UKentucky                                           civil
## 10015                 UKentucky                                        civility
## 10016                 UKentucky                                       classroom
## 10017                 UKentucky                                        cleaning
## 10018                 UKentucky                                     collaborate
## 10019                 UKentucky                                      collection
## 10020                 UKentucky                                   communication
## 10021                 UKentucky                                       community
## 10022                 UKentucky                                        complete
## 10023                 UKentucky                                       completed
## 10024                 UKentucky                                      completion
## 10025                 UKentucky                                    complexities
## 10026                 UKentucky                                      complicate
## 10027                 UKentucky                                    complication
## 10028                 UKentucky                                   complications
## 10029                 UKentucky                                       component
## 10030                 UKentucky                                         compose
## 10031                 UKentucky                                       concisely
## 10032                 UKentucky                                     conclusions
## 10033                 UKentucky                                         connect
## 10034                 UKentucky                                      connection
## 10035                 UKentucky                                        contents
## 10036                 UKentucky                                       continues
## 10037                 UKentucky                                    contribution
## 10038                 UKentucky                                      convenient
## 10039                 UKentucky                                    coordination
## 10040                 UKentucky                                     coordinator
## 10041                 UKentucky                                       courteous
## 10042                 UKentucky                                        creation
## 10043                 UKentucky                                        curating
## 10044                 UKentucky                                        curation
## 10045                 UKentucky                                           dates
## 10046                 UKentucky                                         dealing
## 10047                 UKentucky                                           death
## 10048                 UKentucky                                         decorum
## 10049                 UKentucky                                         default
## 10050                 UKentucky                                         defined
## 10051                 UKentucky                                         demands
## 10052                 UKentucky                                       dependent
## 10053                 UKentucky                                     description
## 10054                 UKentucky                                     descriptive
## 10055                 UKentucky                                            desk
## 10056                 UKentucky                                      determined
## 10057                 UKentucky                                       developed
## 10058                 UKentucky                                    developments
## 10059                 UKentucky                                    disabilities
## 10060                 UKentucky                                    disbursement
## 10061                 UKentucky                                       discourse
## 10062                 UKentucky                                       discussed
## 10063                 UKentucky                                distancelearning
## 10064                 UKentucky                                    distribution
## 10065                 UKentucky                                         diverse
## 10066                 UKentucky                                       diversity
## 10067                 UKentucky                                       divisions
## 10068                 UKentucky                                            dlls
## 10069                 UKentucky                                      dllservice
## 10070                 UKentucky                                      documented
## 10071                 UKentucky                                       documents
## 10072                 UKentucky                                        download
## 10073                 UKentucky                                         drawing
## 10074                 UKentucky                                           drawn
## 10075                 UKentucky                                           drill
## 10076                 UKentucky                                            drop
## 10077                 UKentucky                                            duty
## 10078                 UKentucky                                   email.uky.edu
## 10079                 UKentucky                                       encounter
## 10080                 UKentucky                                       encourage
## 10081                 UKentucky                                          engage
## 10082                 UKentucky                                           enjoy
## 10083                 UKentucky                                     environment
## 10084                 UKentucky                                       essential
## 10085                 UKentucky                                        evaluate
## 10086                 UKentucky                                          events
## 10087                 UKentucky                                     exceptional
## 10088                 UKentucky                                      excursions
## 10089                 UKentucky                                          excuse
## 10090                 UKentucky                                        exercise
## 10091                 UKentucky                                     expectation
## 10092                 UKentucky                                        explorer
## 10093                 UKentucky                                             ext
## 10094                 UKentucky                                         failing
## 10095                 UKentucky                                            feel
## 10096                 UKentucky                                           files
## 10097                 UKentucky                                         finally
## 10098                 UKentucky                                           focus
## 10099                 UKentucky                                           forum
## 10100                 UKentucky                                      foundation
## 10101                 UKentucky                                    fundamentals
## 10102                 UKentucky                                          future
## 10103                 UKentucky                                              gi
## 10104                 UKentucky                                            goal
## 10105                 UKentucky                                          grades
## 10106                 UKentucky                                             gym
## 10107                 UKentucky                                        helpdesk
## 10108                 UKentucky                                            home
## 10109                 UKentucky                                        homepage
## 10110                 UKentucky                                         include
## 10111                 UKentucky                                       inference
## 10112                 UKentucky                                      inferences
## 10113                 UKentucky                                     inferential
## 10114                 UKentucky                                          inform
## 10115                 UKentucky                                        informed
## 10116                 UKentucky                                          inside
## 10117                 UKentucky                                    installation
## 10118                 UKentucky                                       instances
## 10119                 UKentucky                                 intercollegiate
## 10120                 UKentucky                                    interlibrary
## 10121                 UKentucky                                  interpretation
## 10122                 UKentucky                                       introduce
## 10123                 UKentucky                                     investigate
## 10124                 UKentucky                                          istpub
## 10125                 UKentucky                                           items
## 10126                 UKentucky                                          itunes
## 10127                 UKentucky                                    iweb.uky.edu
## 10128                 UKentucky                                         january
## 10129                 UKentucky                                         jeffrey
## 10130                 UKentucky                                         jkarnes
## 10131                 UKentucky                                            join
## 10132                 UKentucky                                           kinds
## 10133                 UKentucky                                            king
## 10134                 UKentucky                                          lastly
## 10135                 UKentucky                                           leave
## 10136                 UKentucky                                        lectures
## 10137                 UKentucky                                          letter
## 10138                 UKentucky                                           level
## 10139                 UKentucky                                     libpage.php
## 10140                 UKentucky                                       librarian
## 10141                 UKentucky                                            life
## 10142                 UKentucky                                     limitations
## 10143                 UKentucky                                            list
## 10144                 UKentucky                                         llib_id
## 10145                 UKentucky                                            loan
## 10146                 UKentucky                                           local
## 10147                 UKentucky                                            lose
## 10148                 UKentucky                                          luther
## 10149                 UKentucky                                         lweb_id
## 10150                 UKentucky                                             mac
## 10151                 UKentucky                                        maintain
## 10152                 UKentucky                                           major
## 10153                 UKentucky                                      management
## 10154                 UKentucky                                       mandatory
## 10155                 UKentucky                                    manipulating
## 10156                 UKentucky                                          martin
## 10157                 UKentucky                                        material
## 10158                 UKentucky                                         meaning
## 10159                 UKentucky                                         meeting
## 10160                 UKentucky                                        metadata
## 10161                 UKentucky                                          method
## 10162                 UKentucky                                       microsoft
## 10163                 UKentucky                                         minimum
## 10164                 UKentucky                                         missing
## 10165                 UKentucky                                        modeling
## 10166                 UKentucky                                          models
## 10167                 UKentucky                                         morning
## 10168                 UKentucky                                      msdownload
## 10169                 UKentucky                                          nature
## 10170                 UKentucky                                           night
## 10171                 UKentucky                                   nonattendance
## 10172                 UKentucky                                           notes
## 10173                 UKentucky                                      objectives
## 10174                 UKentucky                                         offense
## 10175                 UKentucky                                     opportunity
## 10176                 UKentucky                                          option
## 10177                 UKentucky                                        ordinary
## 10178                 UKentucky                                    organization
## 10179                 UKentucky                                      organizing
## 10180                 UKentucky                                        original
## 10181                 UKentucky                                              os
## 10182                 UKentucky                                         overdue
## 10183                 UKentucky                                        packages
## 10184                 UKentucky                                            page
## 10185                 UKentucky                                           pages
## 10186                 UKentucky                                      paragraphs
## 10187                 UKentucky                                           paste
## 10188                 UKentucky                                              pc
## 10189                 UKentucky                                            peer
## 10190                 UKentucky                                         penalty
## 10191                 UKentucky                                      percentage
## 10192                 UKentucky                                     performance
## 10193                 UKentucky                                       performed
## 10194                 UKentucky                                          period
## 10195                 UKentucky                                          person
## 10196                 UKentucky                                    perspectives
## 10197                 UKentucky                                        platform
## 10198                 UKentucky                                    policies.pdf
## 10199                 UKentucky                                            pose
## 10200                 UKentucky                                          posted
## 10201                 UKentucky                                        postings
## 10202                 UKentucky                                              pp
## 10203                 UKentucky                                          prefer
## 10204                 UKentucky                                       preferred
## 10205                 UKentucky                                       preparing
## 10206                 UKentucky                                    presentation
## 10207                 UKentucky                                   presentations
## 10208                 UKentucky                                    preservation
## 10209                 UKentucky                                      preserving
## 10210                 UKentucky                                        pressure
## 10211                 UKentucky                                         primary
## 10212                 UKentucky                                       processes
## 10213                 UKentucky                                        products
## 10214                 UKentucky                                       professor
## 10215                 UKentucky                                        programs
## 10216                 UKentucky                                        progress
## 10217                 UKentucky                                      provenance
## 10218                 UKentucky                                        purposes
## 10219                 UKentucky                                         queries
## 10220                 UKentucky                                          reader
## 10221                 UKentucky                                         reading
## 10222                 UKentucky                                      reasonable
## 10223                 UKentucky                                       recognize
## 10224                 UKentucky                                     recommended
## 10225                 UKentucky                                        recorded
## 10226                 UKentucky                                     reflections
## 10227                 UKentucky                                      regression
## 10228                 UKentucky                                          relate
## 10229                 UKentucky                                    relationship
## 10230                 UKentucky                                        relevant
## 10231                 UKentucky                                        reliable
## 10232                 UKentucky                                       religious
## 10233                 UKentucky                                          report
## 10234                 UKentucky                                        requires
## 10235                 UKentucky                                      respectful
## 10236                 UKentucky                                         respond
## 10237                 UKentucky                                  responsibility
## 10238                 UKentucky                                            rich
## 10239                 UKentucky                                          safari
## 10240                 UKentucky                                        sampling
## 10241                 UKentucky                                        schedule
## 10242                 UKentucky                                       schedules
## 10243                 UKentucky                                          school
## 10244                 UKentucky                                           score
## 10245                 UKentucky                                       scripting
## 10246                 UKentucky                                            send
## 10247                 UKentucky                                            sets
## 10248                 UKentucky                                     significant
## 10249                 UKentucky                                             sis
## 10250                 UKentucky                                           sites
## 10251                 UKentucky                                            slis
## 10252                 UKentucky                                         society
## 10253                 UKentucky                                        software
## 10254                 UKentucky                                        solution
## 10255                 UKentucky                                       solutions
## 10256                 UKentucky                                         special
## 10257                 UKentucky                                           staff
## 10258                 UKentucky                                       standards
## 10259                 UKentucky                                         stanton
## 10260                 UKentucky                                           start
## 10261                 UKentucky                                          status
## 10262                 UKentucky                                       structure
## 10263                 UKentucky                                       student’s
## 10264                 UKentucky                                         studies
## 10265                 UKentucky                                          studio
## 10266                 UKentucky                                      submission
## 10267                 UKentucky                                      successful
## 10268                 UKentucky                                         summary
## 10269                 UKentucky                                          sunday
## 10270                 UKentucky                                         support
## 10271                 UKentucky                                 surface.syr.edu
## 10272                 UKentucky                                            talk
## 10273                 UKentucky                                        teaching
## 10274                 UKentucky                                       technical
## 10275                 UKentucky                                    technologies
## 10276                 UKentucky                                       tentative
## 10277                 UKentucky                                            test
## 10278                 UKentucky                                            text
## 10279                 UKentucky                                          thread
## 10280                 UKentucky                                           times
## 10281                 UKentucky                                            tool
## 10282                 UKentucky                                         trained
## 10283                 UKentucky                                        training
## 10284                 UKentucky                                           treat
## 10285                 UKentucky                                           trips
## 10286                 UKentucky                                            type
## 10287                 UKentucky                              uk.instructure.com
## 10288                 UKentucky                                   understanding
## 10289                 UKentucky                                      unforeseen
## 10290                 UKentucky                                    unstructured
## 10291                 UKentucky                                         uploads
## 10292                 UKentucky                                         utilize
## 10293                 UKentucky                                       variables
## 10294                 UKentucky                                          varies
## 10295                 UKentucky                                         variety
## 10296                 UKentucky                                            view
## 10297                 UKentucky                                         virtual
## 10298                 UKentucky                                             web
## 10299                 UKentucky                                       wednesday
## 10300                 UKentucky                                      wednesdays
## 10301                 UKentucky                                         windows
## 10302                 UKentucky                                            word
## 10303                 UKentucky                                          worthy
## 10304                 UKentucky                                           write
## 10305                 UKentucky                                   youngseek.kim
## 10306                       UMD                                       abilities
## 10307                       UMD                                   accessibility
## 10308                       UMD                           accessibilityservices
## 10309                       UMD                                  accommodations
## 10310                       UMD                                      accordance
## 10311                       UMD                                        accuracy
## 10312                       UMD                                       acquiring
## 10313                       UMD                                        actively
## 10314                       UMD                                        addition
## 10315                       UMD                                       addressed
## 10316                       UMD                                         adelphi
## 10317                       UMD                                         adopted
## 10318                       UMD                                         advance
## 10319                       UMD                                        advanced
## 10320                       UMD                                       advantage
## 10321                       UMD                                           agree
## 10322                       UMD                                         alleged
## 10323                       UMD                                        allocate
## 10324                       UMD                                      analytical
## 10325                       UMD                                       analyzing
## 10326                       UMD                                             apa
## 10327                       UMD                                         appeals
## 10328                       UMD                                     application
## 10329                       UMD                                        approach
## 10330                       UMD                                   appropriately
## 10331                       UMD                                        approval
## 10332                       UMD                                       arbitrary
## 10333                       UMD                                          assess
## 10334                       UMD                                     associate's
## 10335                       UMD                                      associates
## 10336                       UMD                                              au
## 10337                       UMD                                           aware
## 10338                       UMD                                      bachelor's
## 10339                       UMD                                       bachelors
## 10340                       UMD                                     backgrounds
## 10341                       UMD                                           badge
## 10342                       UMD                                           bears
## 10343                       UMD                                          begins
## 10344                       UMD                                       behaviors
## 10345                       UMD                                       benchmark
## 10346                       UMD                                       bpage.cfm
## 10347                       UMD                                           bring
## 10348                       UMD                                         broader
## 10349                       UMD                                           build
## 10350                       UMD                                          builds
## 10351                       UMD                                      calculated
## 10352                       UMD                                            call
## 10353                       UMD                                      challenges
## 10354                       UMD                                            chat
## 10355                       UMD                                       childcare
## 10356                       UMD                                           cited
## 10357                       UMD                                         clarity
## 10358                       UMD                                         classes
## 10359                       UMD                                      classrooms
## 10360                       UMD                                           click
## 10361                       UMD                                           coach
## 10362                       UMD                                         collect
## 10363                       UMD                                     comfortable
## 10364                       UMD                                     communicate
## 10365                       UMD                                   communicating
## 10366                       UMD                                   communication
## 10367                       UMD                                      compelling
## 10368                       UMD                                      completing
## 10369                       UMD                                          comply
## 10370                       UMD                                   comprehension
## 10371                       UMD                                        concerns
## 10372                       UMD                                       conducted
## 10373                       UMD                                    confidential
## 10374                       UMD                                      connection
## 10375                       UMD                                      considered
## 10376                       UMD                                        consists
## 10377                       UMD                                    constructive
## 10378                       UMD                                       continued
## 10379                       UMD                                      continuous
## 10380                       UMD                                         control
## 10381                       UMD                                            cook
## 10382                       UMD                                   cooperatively
## 10383                       UMD                                       copyright
## 10384                       UMD                                        corrupts
## 10385                       UMD                                         courage
## 10386                       UMD                                        courtesy
## 10387                       UMD                                         covered
## 10388                       UMD                                           covid
## 10389                       UMD                                          create
## 10390                       UMD                                        creating
## 10391                       UMD                                     credentials
## 10392                       UMD                                         credits
## 10393                       UMD                                      cultivates
## 10394                       UMD                                        database
## 10395                       UMD                                       databases
## 10396                       UMD                                         dataset
## 10397                       UMD                                       deadlines
## 10398                       UMD                                        decision
## 10399                       UMD                                         defined
## 10400                       UMD                                        degrades
## 10401                       UMD                                   demonstration
## 10402                       UMD                                      deployment
## 10403                       UMD                                        describe
## 10404                       UMD                                     description
## 10405                       UMD                                        designed
## 10406                       UMD                                         desired
## 10407                       UMD                                      determined
## 10408                       UMD                                      developing
## 10409                       UMD                                        dialogue
## 10410                       UMD                                        directly
## 10411                       UMD                                    disabilities
## 10412                       UMD                                      disclaimer
## 10413                       UMD                                      discretion
## 10414                       UMD                                 discretionarily
## 10415                       UMD                                         diverse
## 10416                       UMD                                            drop
## 10417                       UMD                                             eda
## 10418                       UMD                                             edt
## 10419                       UMD                                       education
## 10420                       UMD                                          effect
## 10421                       UMD                                   effectiveness
## 10422                       UMD                                       emergency
## 10423                       UMD                                        emphasis
## 10424                       UMD                                      employment
## 10425                       UMD                                          enable
## 10426                       UMD                                         enabled
## 10427                       UMD                                       encourage
## 10428                       UMD                                      encouraged
## 10429                       UMD                                          engage
## 10430                       UMD                                      engagement
## 10431                       UMD                                          ensure
## 10432                       UMD                                     environment
## 10433                       UMD                                         equally
## 10434                       UMD                                          equity
## 10435                       UMD                                         ethical
## 10436                       UMD                                      evaluating
## 10437                       UMD                                        examples
## 10438                       UMD                                     exceptional
## 10439                       UMD                                          expand
## 10440                       UMD                                    expectations
## 10441                       UMD                                         expects
## 10442                       UMD                                     exploratory
## 10443                       UMD                                         explore
## 10444                       UMD                                       exploring
## 10445                       UMD                                       extensive
## 10446                       UMD                                          extent
## 10447                       UMD                                      facilitate
## 10448                       UMD                                faculty.umgc.edu
## 10449                       UMD                                             faq
## 10450                       UMD                                            faq_
## 10451                       UMD                                          fellow
## 10452                       UMD                                          fiscal
## 10453                       UMD                                              fn
## 10454                       UMD                                          follow
## 10455                       UMD                                          format
## 10456                       UMD                                         formats
## 10457                       UMD                                      formatting
## 10458                       UMD                                           forms
## 10459                       UMD                                           forum
## 10460                       UMD                                      foundation
## 10461                       UMD                                     foundations
## 10462                       UMD                                            free
## 10463                       UMD                                    fundamentals
## 10464                       UMD                                            gain
## 10465                       UMD                                            goal
## 10466                       UMD                                           goals
## 10467                       UMD                                         grammar
## 10468                       UMD                                           grant
## 10469                       UMD                                         granted
## 10470                       UMD                                          grants
## 10471                       UMD                                        guidance
## 10472                       UMD                                           guide
## 10473                       UMD                                          guides
## 10474                       UMD                                      harassment
## 10475                       UMD                                          health
## 10476                       UMD                                         honesty
## 10477                       UMD                                          hybrid
## 10478                       UMD                                           ideas
## 10479                       UMD                                        identify
## 10480                       UMD                                      identities
## 10481                       UMD                                             ill
## 10482                       UMD                                         illness
## 10483                       UMD                                          impact
## 10484                       UMD                                      impossible
## 10485                       UMD                                         improve
## 10486                       UMD                                    improvements
## 10487                       UMD                                         include
## 10488                       UMD                                   incorporation
## 10489                       UMD                                      indicating
## 10490                       UMD                                      individual
## 10491                       UMD                                     individuals
## 10492                       UMD                                        industry
## 10493                       UMD                                         initial
## 10494                       UMD                                         inquiry
## 10495                       UMD                                     inspiration
## 10496                       UMD                                     instruction
## 10497                       UMD                                       intention
## 10498                       UMD                                     interacting
## 10499                       UMD                                    interactions
## 10500                       UMD                                   introductions
## 10501                       UMD                                            john
## 10502                       UMD                                      john.cook2
## 10503                       UMD                                       justified
## 10504                       UMD                                       languages
## 10505                       UMD                                             law
## 10506                       UMD                                        legality
## 10507                       UMD                                           level
## 10508                       UMD                                       librarian
## 10509                       UMD                                       libraries
## 10510                       UMD                                          life's
## 10511                       UMD                                         limited
## 10512                       UMD                                            list
## 10513                       UMD                                            live
## 10514                       UMD                                         located
## 10515                       UMD                                           logon
## 10516                       UMD                                      maintained
## 10517                       UMD                                      management
## 10518                       UMD                                           marks
## 10519                       UMD                                    mathematical
## 10520                       UMD                                            menu
## 10521                       UMD                                     methodology
## 10522                       UMD                                          module
## 10523                       UMD                                        navigate
## 10524                       UMD                                      navigating
## 10525                       UMD                                         nearest
## 10526                       UMD                                         network
## 10527                       UMD                                       noncredit
## 10528                       UMD                                           numpy
## 10529                       UMD                                             oas
## 10530                       UMD                                      objectives
## 10531                       UMD                                       obstacles
## 10532                       UMD                                          obtain
## 10533                       UMD                                        obtained
## 10534                       UMD                                         opinion
## 10535                       UMD                                         options
## 10536                       UMD                                        original
## 10537                       UMD                                         other's
## 10538                       UMD                                           owned
## 10539                       UMD                                             p.m
## 10540                       UMD                                            pace
## 10541                       UMD                                          pandas
## 10542                       UMD                                           party
## 10543                       UMD                                        password
## 10544                       UMD                                       penalized
## 10545                       UMD                                      permission
## 10546                       UMD                                    personalized
## 10547                       UMD                                           phone
## 10548                       UMD                                      physically
## 10549                       UMD                                         portion
## 10550                       UMD                                           poses
## 10551                       UMD                                        position
## 10552                       UMD                                        postings
## 10553                       UMD                                       practices
## 10554                       UMD                                         prepare
## 10555                       UMD                                       preparing
## 10556                       UMD                                    prerequisite
## 10557                       UMD                                    presentation
## 10558                       UMD                                      previously
## 10559                       UMD                                         privacy
## 10560                       UMD                                       proactive
## 10561                       UMD                                       probation
## 10562                       UMD                                    professional
## 10563                       UMD                                 professionalism
## 10564                       UMD                                programmatically
## 10565                       UMD                                     programming
## 10566                       UMD                                      prohibited
## 10567                       UMD                                        projects
## 10568                       UMD                                         promote
## 10569                       UMD                                        pronouns
## 10570                       UMD                                           prove
## 10571                       UMD                                       providing
## 10572                       UMD                                         purpose
## 10573                       UMD                                       qualifies
## 10574                       UMD                                        question
## 10575                       UMD                                       rationale
## 10576                       UMD                                            rcqs
## 10577                       UMD                                         receive
## 10578                       UMD                                       recognize
## 10579                       UMD                                       reduction
## 10580                       UMD                                         reflect
## 10581                       UMD                                     registering
## 10582                       UMD                                      regression
## 10583                       UMD                                       regularly
## 10584                       UMD                                          remain
## 10585                       UMD                                          remove
## 10586                       UMD                                        repeated
## 10587                       UMD                                           reply
## 10588                       UMD                                      represents
## 10589                       UMD                                         require
## 10590                       UMD                                        requires
## 10591                       UMD                                       requiring
## 10592                       UMD                                        reserves
## 10593                       UMD                                        resource
## 10594                       UMD                                         respond
## 10595                       UMD                                responsibilities
## 10596                       UMD                                     responsibly
## 10597                       UMD                                        retained
## 10598                       UMD                                          richer
## 10599                       UMD                                        rounding
## 10600                       UMD                                            rule
## 10601                       UMD                                          scores
## 10602                       UMD                                          search
## 10603                       UMD                                          secure
## 10604                       UMD                                          select
## 10605                       UMD                                       selecting
## 10606                       UMD                                             sem
## 10607                       UMD                                         service
## 10608                       UMD                                        sessions
## 10609                       UMD                                        settings
## 10610                       UMD                                           share
## 10611                       UMD                                          simple
## 10612                       UMD                                          simply
## 10613                       UMD                                          single
## 10614                       UMD                                            site
## 10615                       UMD                                          skills
## 10616                       UMD                                          social
## 10617                       UMD                                        socially
## 10618                       UMD                                         society
## 10619                       UMD                                         sources
## 10620                       UMD                                        spelling
## 10621                       UMD                                          spring
## 10622                       UMD                                             sql
## 10623                       UMD                                       standards
## 10624                       UMD                                            stat
## 10625                       UMD                                          status
## 10626                       UMD                                            stay
## 10627                       UMD                                           story
## 10628                       UMD                                      strategies
## 10629                       UMD                                    strengthened
## 10630                       UMD                                          strong
## 10631                       UMD                                           style
## 10632                       UMD                                         subject
## 10633                       UMD                                          submit
## 10634                       UMD                                      subsequent
## 10635                       UMD                                     substantial
## 10636                       UMD                                         succeed
## 10637                       UMD                                             sum
## 10638                       UMD                                      supporting
## 10639                       UMD                                          survey
## 10640                       UMD                                          system
## 10641                       UMD                                             tab
## 10642                       UMD                                        teaching
## 10643                       UMD                                           tight
## 10644                       UMD                                          timely
## 10645                       UMD                                            toll
## 10646                       UMD                                             top
## 10647                       UMD                                           total
## 10648                       UMD                                           track
## 10649                       UMD                                     traditional
## 10650                       UMD                                          traits
## 10651                       UMD                                           treat
## 10652                       UMD                                         treated
## 10653                       UMD                                           trust
## 10654                       UMD                                        ugcmbook
## 10655                       UMD                                      unexpected
## 10656                       UMD                                        uploaded
## 10657                       UMD                                         visible
## 10658                       UMD                                           visit
## 10659                       UMD                                  visualizations
## 10660                       UMD                                     visualizing
## 10661                       UMD                                webapps.umgc.edu
## 10662                       UMD                                         website
## 10663                       UMD                                        websites
## 10664                       UMD                                        weighted
## 10665                       UMD                                       whichever
## 10666                       UMD                                        workload
## 10667                       UMD                                         writing
## 10668                       UMD                                         written
## 10669                    UMaine                                          absent
## 10670                    UMaine                                  accommodations
## 10671                    UMaine                                      activities
## 10672                    UMaine                                        addendum
## 10673                    UMaine                                        addition
## 10674                    UMaine                                        adequate
## 10675                    UMaine                                         adverse
## 10676                    UMaine                                          aiding
## 10677                    UMaine                                             ali
## 10678                    UMaine                                           annex
## 10679                    UMaine                                       announced
## 10680                    UMaine                                   announcements
## 10681                    UMaine                                        annoying
## 10682                    UMaine                                          answer
## 10683                    UMaine                                      applicable
## 10684                    UMaine                                    applications
## 10685                    UMaine                                   appropriately
## 10686                    UMaine                                        approved
## 10687                    UMaine                                            arno
## 10688                    UMaine                                          arrive
## 10689                    UMaine                                        articles
## 10690                    UMaine                                        assigned
## 10691                    UMaine                                          attend
## 10692                    UMaine                                         audible
## 10693                    UMaine                                           avoid
## 10694                    UMaine                                           avrim
## 10695                    UMaine                                         bagging
## 10696                    UMaine                                            bags
## 10697                    UMaine                                           based
## 10698                    UMaine                                           begun
## 10699                    UMaine                                            beta
## 10700                    UMaine                                              bi
## 10701                    UMaine                                          bility
## 10702                    UMaine                                            blum
## 10703                    UMaine                                           board
## 10704                    UMaine                                           books
## 10705                    UMaine                                           botev
## 10706                    UMaine                                   brainstorming
## 10707                    UMaine                                          bridge
## 10708                    UMaine                                          burden
## 10709                    UMaine                                             cam
## 10710                    UMaine                                          campus
## 10711                    UMaine                                          cantly
## 10712                    UMaine                                          carlos
## 10713                    UMaine                                          cauchy
## 10714                    UMaine                                          center
## 10715                    UMaine                                         central
## 10716                    UMaine                                          change
## 10717                    UMaine                                        checking
## 10718                    UMaine                                             chi
## 10719                    UMaine                                          cielen
## 10720                    UMaine                                   circumstances
## 10721                    UMaine                                          citing
## 10722                    UMaine                                         classes
## 10723                    UMaine                                  classification
## 10724                    UMaine                                       classmate
## 10725                    UMaine                                      classmates
## 10726                    UMaine                                       classroom
## 10727                    UMaine                                          clause
## 10728                    UMaine                                        clinical
## 10729                    UMaine                                     coefficient
## 10730                    UMaine                                   collaboration
## 10731                    UMaine                                         college
## 10732                    UMaine                                      committing
## 10733                    UMaine                                          common
## 10734                    UMaine                                      completion
## 10735                    UMaine                                         concept
## 10736                    UMaine                                    confidential
## 10737                    UMaine                                        conflict
## 10738                    UMaine                                         conform
## 10739                    UMaine                                    construction
## 10740                    UMaine                                         consult
## 10741                    UMaine                                         contact
## 10742                    UMaine                                   contributions
## 10743                    UMaine                                      coursework
## 10744                    UMaine                                         covered
## 10745                    UMaine                                         covid19
## 10746                    UMaine                                             crc
## 10747                    UMaine                                          create
## 10748                    UMaine                                          credit
## 10749                    UMaine                                       criterion
## 10750                    UMaine                                         current
## 10751                    UMaine                                            davy
## 10752                    UMaine                                             day
## 10753                    UMaine                                      department
## 10754                    UMaine                                       dependent
## 10755                    UMaine                                     descriptive
## 10756                    UMaine                                          design
## 10757                    UMaine                                        detailed
## 10758                    UMaine                                         devices
## 10759                    UMaine                                          dicial
## 10760                    UMaine                                      difference
## 10761                    UMaine                                     dimensional
## 10762                    UMaine                                            dirk
## 10763                    UMaine                                      disclaimer
## 10764                    UMaine                                        disclose
## 10765                    UMaine                                       discussed
## 10766                    UMaine                                     discussions
## 10767                    UMaine                                       dishonest
## 10768                    UMaine                                       dismissal
## 10769                    UMaine                                       dismissed
## 10770                    UMaine                                   distributions
## 10771                    UMaine                                           don’t
## 10772                    UMaine                                             dse
## 10773                    UMaine                                            east
## 10774                    UMaine                                          eating
## 10775                    UMaine                                         edition
## 10776                    UMaine                                         effects
## 10777                    UMaine                                          effort
## 10778                    UMaine                                           elect
## 10779                    UMaine                                      electronic
## 10780                    UMaine                                        employer
## 10781                    UMaine                                          enable
## 10782                    UMaine                                      encouraged
## 10783                    UMaine                                         enhance
## 10784                    UMaine                                       ensembele
## 10785                    UMaine                                        ensemble
## 10786                    UMaine                                           enter
## 10787                    UMaine                                          entire
## 10788                    UMaine                                      estimators
## 10789                    UMaine                                           evans
## 10790                    UMaine                                        expected
## 10791                    UMaine                                      experience
## 10792                    UMaine                                    experimental
## 10793                    UMaine                                       exploring
## 10794                    UMaine                                        extended
## 10795                    UMaine                                           extra
## 10796                    UMaine                                         failing
## 10797                    UMaine                                            fake
## 10798                    UMaine                                            fall
## 10799                    UMaine                                        features
## 10800                    UMaine                                       fernandez
## 10801                    UMaine                                          fisher
## 10802                    UMaine                                           focus
## 10803                    UMaine                                          forest
## 10804                    UMaine                                      foundation
## 10805                    UMaine                                     foundations
## 10806                    UMaine                                           frame
## 10807                    UMaine                                       framework
## 10808                    UMaine                                     frequentist
## 10809                    UMaine                                           front
## 10810                    UMaine                                       functions
## 10811                    UMaine                                           gamma
## 10812                    UMaine                                          global
## 10813                    UMaine                                          granda
## 10814                    UMaine                                           hints
## 10815                    UMaine                                         holiday
## 10816                    UMaine                                        hopcroft
## 10817                    UMaine                                              ii
## 10818                    UMaine                                  implementation
## 10819                    UMaine                                       importing
## 10820                    UMaine                                         include
## 10821                    UMaine                                        informed
## 10822                    UMaine                                         initial
## 10823                    UMaine                                         instruc
## 10824                    UMaine                                     instruction
## 10825                    UMaine                                     instructors
## 10826                    UMaine                                        internet
## 10827                    UMaine                                      internship
## 10828                    UMaine                                        interval
## 10829                    UMaine                                     introducing
## 10830                    UMaine                                           james
## 10831                    UMaine                                         jeffrey
## 10832                    UMaine                                            john
## 10833                    UMaine                                          joseph
## 10834                    UMaine                                          kannan
## 10835                    UMaine                                        keyboard
## 10836                    UMaine                                          kroese
## 10837                    UMaine                                            labs
## 10838                    UMaine                                        language
## 10839                    UMaine                                          laptop
## 10840                    UMaine                                             law
## 10841                    UMaine                                           leave
## 10842                    UMaine                                           level
## 10843                    UMaine                                         ligious
## 10844                    UMaine                                           limit
## 10845                    UMaine                                      logistical
## 10846                    UMaine                                         machine
## 10847                    UMaine                                       maine.edu
## 10848                    UMaine                                         manning
## 10849                    UMaine                                           march
## 10850                    UMaine                                            mark
## 10851                    UMaine                                          marked
## 10852                    UMaine                                        material
## 10853                    UMaine                                    mathematical
## 10854                    UMaine                                          matrix
## 10855                    UMaine                                            meet
## 10856                    UMaine                                         meysman
## 10857                    UMaine                                         michael
## 10858                    UMaine                                          miller
## 10859                    UMaine                                          models
## 10860                    UMaine                                        modified
## 10861                    UMaine                                         mohamed
## 10862                    UMaine                                             mse
## 10863                    UMaine                                           naive
## 10864                    UMaine                                          nature
## 10865                    UMaine                                          normal
## 10866                    UMaine                                          notice
## 10867                    UMaine                                          notify
## 10868                    UMaine                                       numerical
## 10869                    UMaine                                             nyu
## 10870                    UMaine                                       obtaining
## 10871                    UMaine                                         opposed
## 10872                    UMaine                                            pack
## 10873                    UMaine                                           packt
## 10874                    UMaine                                            page
## 10875                    UMaine                                       parameter
## 10876                    UMaine                                            pdfs
## 10877                    UMaine                                        personal
## 10878                    UMaine                                            pmfs
## 10879                    UMaine                                        policies
## 10880                    UMaine                                             pos
## 10881                    UMaine                                          posted
## 10882                    UMaine                                       posterior
## 10883                    UMaine                                        pounding
## 10884                    UMaine                                             pre
## 10885                    UMaine                                      prediction
## 10886                    UMaine                                           preju
## 10887                    UMaine                                     preliminary
## 10888                    UMaine                                         prepare
## 10889                    UMaine                                   prerequisites
## 10890                    UMaine                                           prior
## 10891                    UMaine                                       privately
## 10892                    UMaine                                           proba
## 10893                    UMaine                                      processing
## 10894                    UMaine                                      programmed
## 10895                    UMaine                                        provided
## 10896                    UMaine                                     publication
## 10897                    UMaine                                      publishing
## 10898                    UMaine                                         purpose
## 10899                    UMaine                                        question
## 10900                    UMaine                                        radislav
## 10901                    UMaine                                           range
## 10902                    UMaine                                            ravi
## 10903                    UMaine                                            read
## 10904                    UMaine                                         reading
## 10905                    UMaine                                        readings
## 10906                    UMaine                                      recognizes
## 10907                    UMaine                                     recommended
## 10908                    UMaine                                           refer
## 10909                    UMaine                                       reference
## 10910                    UMaine                                      references
## 10911                    UMaine                                         refrain
## 10912                    UMaine                                       relatives
## 10913                    UMaine                                          remain
## 10914                    UMaine                                      requesting
## 10915                    UMaine                                     requirement
## 10916                    UMaine                                    requirements
## 10917                    UMaine                                       responses
## 10918                    UMaine                                     responsible
## 10919                    UMaine                                            rest
## 10920                    UMaine                                    restlessness
## 10921                    UMaine                                          result
## 10922                    UMaine                                         results
## 10923                    UMaine                                          reword
## 10924                    UMaine                                       rosenthal
## 10925                    UMaine                                            rude
## 10926                    UMaine                                            rule
## 10927                    UMaine                                             rvs
## 10928                    UMaine                                  salimeh.yasaei
## 10929                    UMaine                                        sanction
## 10930                    UMaine                                             sas
## 10931                    UMaine                                           scale
## 10932                    UMaine                                           scrap
## 10933                    UMaine                                         section
## 10934                    UMaine                                       semesters
## 10935                    UMaine                                       sensitive
## 10936                    UMaine                                       sequences
## 10937                    UMaine                                          sheets
## 10938                    UMaine                                           sible
## 10939                    UMaine                                         signifi
## 10940                    UMaine                                           signs
## 10941                    UMaine                                          simple
## 10942                    UMaine                                            site
## 10943                    UMaine                                         sitting
## 10944                    UMaine                                          skiena
## 10945                    UMaine                                        sleeping
## 10946                    UMaine                                           smart
## 10947                    UMaine                                           solve
## 10948                    UMaine                                         solving
## 10949                    UMaine                                       splitting
## 10950                    UMaine                                        standard
## 10951                    UMaine                                       standards
## 10952                    UMaine                                          steven
## 10953                    UMaine                                     structuring
## 10954                    UMaine                                          submit
## 10955                    UMaine                                       suggested
## 10956                    UMaine                                     summarizing
## 10957                    UMaine                                       supersede
## 10958                    UMaine                                           table
## 10959                    UMaine                                          tables
## 10960                    UMaine                                          taimre
## 10961                    UMaine                                          taking
## 10962                    UMaine                                       technical
## 10963                    UMaine                                     termination
## 10964                    UMaine                                           tests
## 10965                    UMaine                                        textbook
## 10966                    UMaine                                           texts
## 10967                    UMaine                                    thanksgiving
## 10968                    UMaine                                         theorem
## 10969                    UMaine                                          thomas
## 10970                    UMaine                                             thu
## 10971                    UMaine                                             top
## 10972                    UMaine                                             tor
## 10973                    UMaine                                         toronto
## 10974                    UMaine                                            tree
## 10975                    UMaine                                        trustees
## 10976                    UMaine                                             tue
## 10977                    UMaine                                           types
## 10978                    UMaine                                          unable
## 10979                    UMaine                                    unacceptable
## 10980                    UMaine                                     uncertainty
## 10981                    UMaine                                    unreasonable
## 10982                    UMaine                                         vaisman
## 10983                    UMaine                                         version
## 10984                    UMaine                                         viewing
## 10985                    UMaine                                         visible
## 10986                    UMaine                                   visualization
## 10987                    UMaine                                         warming
## 10988                    UMaine                                         watkins
## 10989                    UMaine                                          weekly
## 10990                    UMaine                                           write
## 10991                    UMaine                                         written
## 10992                    UMaine                                   www.maine.edu
## 10993                    UMaine                                         zdravko
## 10994              USouthampton                                             1bj
## 10995              USouthampton                                   accessibility
## 10996              USouthampton                                         adriane
## 10997              USouthampton                                        advanced
## 10998              USouthampton                                            aims
## 10999              USouthampton                                        analysis
## 11000              USouthampton                                       analytics
## 11001              USouthampton                                   architectures
## 11002              USouthampton                                             art
## 11003              USouthampton                                           build
## 11004              USouthampton                                            cats
## 11005              USouthampton                                         chapman
## 11006              USouthampton                                           cloud
## 11007              USouthampton                                        colleges
## 11008              USouthampton                                      conditions
## 11009              USouthampton                                         connect
## 11010              USouthampton                                      coursework
## 11011              USouthampton                                             csv
## 11012              USouthampton                                              d3
## 11013              USouthampton                                       delivered
## 11014              USouthampton                                          design
## 11015              USouthampton                                      directions
## 11016              USouthampton                                            door
## 11017              USouthampton                                        download
## 11018              USouthampton                                            ects
## 11019              USouthampton                                       employers
## 11020              USouthampton                                       exercises
## 11021              USouthampton                                      experiment
## 11022              USouthampton                                             fax
## 11023              USouthampton                                         freedom
## 11024              USouthampton                                    fundamentals
## 11025              USouthampton                                       guardians
## 11026              USouthampton                                          hadoop
## 11027              USouthampton                                       including
## 11028              USouthampton                                   international
## 11029              USouthampton                                  interpretation
## 11030              USouthampton                                       introduce
## 11031              USouthampton                                            jobs
## 11032              USouthampton                                         kingdom
## 11033              USouthampton                                            lead
## 11034              USouthampton                                             map
## 11035              USouthampton                                        modeling
## 11036              USouthampton                                         mongodb
## 11037              USouthampton                                           nosql
## 11038              USouthampton                                         notions
## 11039              USouthampton                                            page
## 11040              USouthampton                                        parallel
## 11041              USouthampton                                         parents
## 11042              USouthampton                                      principles
## 11043              USouthampton                                         printed
## 11044              USouthampton                                         privacy
## 11045              USouthampton                                      processing
## 11046              USouthampton                                         project
## 11047              USouthampton                                      protection
## 11048              USouthampton                                        provided
## 11049              USouthampton                                      recruiters
## 11050              USouthampton                                      relational
## 11051              USouthampton                                     researchers
## 11052              USouthampton                                            road
## 11053              USouthampton                                            s017
## 11054              USouthampton                                       scenarios
## 11055              USouthampton                                         schools
## 11056              USouthampton                                       scientist
## 11057              USouthampton                                        semester
## 11058              USouthampton                                            sets
## 11059              USouthampton                                            site
## 11060              USouthampton                                           staff
## 11061              USouthampton                                           study
## 11062              USouthampton                                         support
## 11063              USouthampton                                          taking
## 11064              USouthampton                                        teaching
## 11065              USouthampton                                       technical
## 11066              USouthampton                                      techniques
## 11067              USouthampton                                    technologies
## 11068              USouthampton                                      technology
## 11069              USouthampton                                             tel
## 11070              USouthampton                                     terminology
## 11071              USouthampton                                           terms
## 11072              USouthampton                                          topics
## 11073              USouthampton                                      underlying
## 11074              USouthampton                                          united
## 11075              USouthampton                                        visitors
## 11076                  UToronto                                        1,2,6,11
## 11077                  UToronto                                             2nd
## 11078                  UToronto                                             3,4
## 11079                  UToronto                                           3.2.1
## 11080                  UToronto                                             4th
## 11081                  UToronto                                             7,9
## 11082                  UToronto                                         ableism
## 11083                  UToronto                                   accessibility
## 11084                  UToronto                          accessibility.services
## 11085                  UToronto                                   accommodation
## 11086                  UToronto                                       achieving
## 11087                  UToronto                                        acquired
## 11088                  UToronto                                         actions
## 11089                  UToronto                                            acts
## 11090                  UToronto                                      addictions
## 11091                  UToronto                                          advise
## 11092                  UToronto                                        advising
## 11093                  UToronto                                      algorithms
## 11094                  UToronto                                        analysis
## 11095                  UToronto                                      analytical
## 11096                  UToronto                                            anti
## 11097                  UToronto                                     approaching
## 11098                  UToronto                                          assist
## 11099                  UToronto                                          avenue
## 11100                  UToronto                                        barriers
## 11101                  UToronto                                           bayes
## 11102                  UToronto                                       blindness
## 11103                  UToronto                                           brain
## 11104                  UToronto                                        breaches
## 11105                  UToronto                                        calculus
## 11106                  UToronto                                          change
## 11107                  UToronto                                         chapter
## 11108                  UToronto                                        chapters
## 11109                  UToronto                                         chronic
## 11110                  UToronto                                  classification
## 11111                  UToronto                                      classifier
## 11112                  UToronto                                     classifiers
## 11113                  UToronto                                      clustering
## 11114                  UToronto                                     comfortable
## 11115                  UToronto                                        comments
## 11116                  UToronto                                          common
## 11117                  UToronto                                   communication
## 11118                  UToronto                                   complications
## 11119                  UToronto                                      conditions
## 11120                  UToronto                                    confidential
## 11121                  UToronto                                         contact
## 11122                  UToronto                                       convexity
## 11123                  UToronto                                          covers
## 11124                  UToronto                                           cross
## 11125                  UToronto                                            date
## 11126                  UToronto                                           dates
## 11127                  UToronto                                        deafness
## 11128                  UToronto                                  decompositions
## 11129                  UToronto                                            deep
## 11130                  UToronto                                      department
## 11131                  UToronto                                    department's
## 11132                  UToronto                                     description
## 11133                  UToronto                                      discipline
## 11134                  UToronto                                  discriminatory
## 11135                  UToronto                                       disorders
## 11136                  UToronto                                       diversity
## 11137                  UToronto                                         edition
## 11138                  UToronto                                        elements
## 11139                  UToronto                                       encourage
## 11140                  UToronto                                     engadvising
## 11141                  UToronto                                          ensure
## 11142                  UToronto                                            exam
## 11143                  UToronto                                            fall
## 11144                  UToronto                                             fax
## 11145                  UToronto                                            feel
## 11146                  UToronto                                            fine
## 11147                  UToronto                                           floor
## 11148                  UToronto                                            form
## 11149                  UToronto                                          formal
## 11150                  UToronto                                       fractures
## 11151                  UToronto                                            free
## 11152                  UToronto                                      functional
## 11153                  UToronto                                       gaussians
## 11154                  UToronto                                        geometry
## 11155                  UToronto                                           goals
## 11156                  UToronto                                       good2talk
## 11157                  UToronto                                         grading
## 11158                  UToronto                                         hearing
## 11159                  UToronto                                        helpline
## 11160                  UToronto                                      homophobia
## 11161                  UToronto                                         honesty
## 11162                  UToronto                                             hwc
## 11163                  UToronto                                     immediately
## 11164                  UToronto                                     impairments
## 11165                  UToronto                                        includes
## 11166                  UToronto                                       including
## 11167                  UToronto                                       inclusion
## 11168                  UToronto                                     inclusivity
## 11169                  UToronto                                           incur
## 11170                  UToronto                                      infections
## 11171                  UToronto                                            info
## 11172                  UToronto                                        injuries
## 11173                  UToronto                                      instructor
## 11174                  UToronto                                    interactions
## 11175                  UToronto                                    introduction
## 11176                  UToronto                                    islamophobia
## 11177                  UToronto                                          issues
## 11178                  UToronto                                           jason
## 11179                  UToronto                                   jason.riordon
## 11180                  UToronto                                            labs
## 11181                  UToronto                                        language
## 11182                  UToronto                                            late
## 11183                  UToronto                                           learn
## 11184                  UToronto                                         lec0101
## 11185                  UToronto                                         lec0201
## 11186                  UToronto                                         limited
## 11187                  UToronto                                          listed
## 11188                  UToronto                                        location
## 11189                  UToronto                                            loss
## 11190                  UToronto                                             low
## 11191                  UToronto                                            mark
## 11192                  UToronto                                        material
## 11193                  UToronto                                     mathematics
## 11194                  UToronto                                         matters
## 11195                  UToronto                                         metrics
## 11196                  UToronto                                        mobility
## 11197                  UToronto                                           motor
## 11198                  UToronto                                           naïve
## 11199                  UToronto                                        notation
## 11200                  UToronto                                           notes
## 11201                  UToronto                                          offers
## 11202                  UToronto                                       operation
## 11203                  UToronto                                      operations
## 11204                  UToronto                                         other's
## 11205                  UToronto                                        overview
## 11206                  UToronto                                        packages
## 11207                  UToronto                                     performance
## 11208                  UToronto                                       permitted
## 11209                  UToronto                                      plagiarism
## 11210                  UToronto                                            post
## 11211                  UToronto                                         pra0101
## 11212                  UToronto                                         pra0102
## 11213                  UToronto                                       pregnancy
## 11214                  UToronto                                     preliminary
## 11215                  UToronto                                     probability
## 11216                  UToronto                                        programs
## 11217                  UToronto                                     psychiatric
## 11218                  UToronto                                         quercus
## 11219                  UToronto                                         quizzes
## 11220                  UToronto                                          racism
## 11221                  UToronto                                           reach
## 11222                  UToronto                                         reading
## 11223                  UToronto                                      recommends
## 11224                  UToronto                                        recovery
## 11225                  UToronto                                       reference
## 11226                  UToronto                                        referred
## 11227                  UToronto                                        register
## 11228                  UToronto                                 representations
## 11229                  UToronto                                       requiring
## 11230                  UToronto                                      respectful
## 11231                  UToronto                                responsibilities
## 11232                  UToronto                                     responsible
## 11233                  UToronto                                          result
## 11234                  UToronto                                         riordon
## 11235                  UToronto                                            safe
## 11236                  UToronto                                        schedule
## 11237                  UToronto                                       secondary
## 11238                  UToronto                                            seek
## 11239                  UToronto                                          select
## 11240                  UToronto                                        semitism
## 11241                  UToronto                                          severe
## 11242                  UToronto                                          sexism
## 11243                  UToronto                                     significant
## 11244                  UToronto                                         spadina
## 11245                  UToronto                                         special
## 11246                  UToronto                                         sprains
## 11247                  UToronto                                           staff
## 11248                  UToronto                                       statement
## 11249                  UToronto                                     statistical
## 11250                  UToronto                                      structured
## 11251                  UToronto                                      structures
## 11252                  UToronto                         studentlife.utoronto.ca
## 11253                  UToronto                                     submissions
## 11254                  UToronto                                          submit
## 11255                  UToronto                                           suite
## 11256                  UToronto                                        supports
## 11257                  UToronto                                       suspected
## 11258                  UToronto                                             svd
## 11259                  UToronto                                             tbd
## 11260                  UToronto                                       temporary
## 11261                  UToronto                                       thursdays
## 11262                  UToronto                                          topics
## 11263                  UToronto                                     transphobia
## 11264                  UToronto                                        tuesdays
## 11265                  UToronto                                       tutorials
## 11266                  UToronto               undergrad.engineering.utoronto.ca
## 11267                  UToronto                                         uoft.me
## 11268                  UToronto                                      validation
## 11269                  UToronto                                          vector
## 11270                  UToronto                                          verify
## 11271                  UToronto                                          vision
## 11272                  UToronto                                           visit
## 11273                  UToronto                                           voice
## 11274                  UToronto                                         webpage
## 11275                  UToronto                                         website
## 11276                  UToronto                                          weekly
## 11277                  UToronto                                          weight
## 11278                  UToronto                                       welcoming
## 11279                  UToronto                                            wide
## 11280                  UToronto                                         witness
## 11281                  UToronto                                         written
## 11282                     UUtah                                             3rd
## 11283                     UUtah                                    801.213.3697
## 11284                     UUtah                                     accelerated
## 11285                     UUtah                                        accessed
## 11286                     UUtah                                      accessible
## 11287                     UUtah                                   accommodation
## 11288                     UUtah                                     accompanied
## 11289                     UUtah                                    accomplished
## 11290                     UUtah                                         account
## 11291                     UUtah                                  accountability
## 11292                     UUtah                                       acquiring
## 11293                     UUtah                                     acquisition
## 11294                     UUtah                                             act
## 11295                     UUtah                                          action
## 11296                     UUtah                                         actions
## 11297                     UUtah                                       activites
## 11298                     UUtah                                          adding
## 11299                     UUtah                                       addressed
## 11300                     UUtah                                      addressing
## 11301                     UUtah                                        adjusted
## 11302                     UUtah                                        advanced
## 11303                     UUtah                                          advise
## 11304                     UUtah                                          affect
## 11305                     UUtah                                     affirmative
## 11306                     UUtah                                       agreeable
## 11307                     UUtah                                           ahead
## 11308                     UUtah                                         aid.php
## 11309                     UUtah                                          alerts
## 11310                     UUtah                                         algebra
## 11311                     UUtah                                     alternative
## 11312                     UUtah                                       americans
## 11313                     UUtah                                        analysts
## 11314                     UUtah                                      analytical
## 11315                     UUtah                                       analyzing
## 11316                     UUtah                                           anand
## 11317                     UUtah                                   announcements
## 11318                     UUtah                                       answering
## 11319                     UUtah                                              ap
## 11320                     UUtah                                         applied
## 11321                     UUtah                                     appreciated
## 11322                     UUtah                                        approach
## 11323                     UUtah                                        approved
## 11324                     UUtah                                        arranged
## 11325                     UUtah                                         aspects
## 11326                     UUtah                                       assaulted
## 11327                     UUtah                                       assigning
## 11328                     UUtah                                      assistants
## 11329                     UUtah                                       attention
## 11330                     UUtah                                           audio
## 11331                     UUtah                                          aurten
## 11332                     UUtah                                       automatic
## 11333                     UUtah                                           avoid
## 11334                     UUtah                                         awarded
## 11335                     UUtah                                     backgrounds
## 11336                     UUtah                                             ban
## 11337                     UUtah                                           basic
## 11338                     UUtah                                           basis
## 11339                     UUtah                                           begin
## 11340                     UUtah                                         benefit
## 11341                     UUtah                                      biologists
## 11342                     UUtah                                       bitbucket
## 11343                     UUtah                                      blitzstein
## 11344                     UUtah                                           bonus
## 11345                     UUtah                                           books
## 11346                     UUtah                                         boosted
## 11347                     UUtah                                       bootstrap
## 11348                     UUtah                                   breakthroughs
## 11349                     UUtah                                         burnout
## 11350                     UUtah                                     calculating
## 11351                     UUtah                                        calendar
## 11352                     UUtah                                            call
## 11353                     UUtah                                       cambridge
## 11354                     UUtah                                         capable
## 11355                     UUtah                                            caps
## 11356                     UUtah                                         careful
## 11357                     UUtah                                       carefully
## 11358                     UUtah                                      categories
## 11359                     UUtah                                           cathy
## 11360                     UUtah                                              cc
## 11361                     UUtah                                             cds
## 11362                     UUtah                                         chapter
## 11363                     UUtah                                       chocolate
## 11364                     UUtah                                         chollet
## 11365                     UUtah                                        choosing
## 11366                     UUtah                                          chosen
## 11367                     UUtah                                           chunk
## 11368                     UUtah                                    circumstance
## 11369                     UUtah                                   circumstances
## 11370                     UUtah                                        citation
## 11371                     UUtah                                           civil
## 11372                     UUtah                                  classification
## 11373                     UUtah                                      classifier
## 11374                     UUtah                                      classmates
## 11375                     UUtah                                           clips
## 11376                     UUtah                                           close
## 11377                     UUtah                                         closely
## 11378                     UUtah                                          coding
## 11379                     UUtah                                      colleagues
## 11380                     UUtah                                    collectively
## 11381                     UUtah                                           color
## 11382                     UUtah                                         comment
## 11383                     UUtah                                       committee
## 11384                     UUtah                                          common
## 11385                     UUtah                                         commons
## 11386                     UUtah                                     communicate
## 11387                     UUtah                                   communicating
## 11388                     UUtah                                  communications
## 11389                     UUtah                                       community
## 11390                     UUtah                                            comp
## 11391                     UUtah                                         company
## 11392                     UUtah                                      compatible
## 11393                     UUtah                                       completed
## 11394                     UUtah                                         complex
## 11395                     UUtah                                        concerns
## 11396                     UUtah                                        concrete
## 11397                     UUtah                                       condition
## 11398                     UUtah                                      considered
## 11399                     UUtah                                         consist
## 11400                     UUtah                                     constitutes
## 11401                     UUtah                                    consultation
## 11402                     UUtah                                         control
## 11403                     UUtah                                     coordinator
## 11404                     UUtah                                     copyrighted
## 11405                     UUtah                                            core
## 11406                     UUtah                                    corequisites
## 11407                     UUtah                            coronavirus.utah.edu
## 11408                     UUtah                                     correctness
## 11409                     UUtah                                      counseling
## 11410                     UUtah                                        counting
## 11411                     UUtah                                          couple
## 11412                     UUtah                                        course's
## 11413                     UUtah                                         courses
## 11414                     UUtah                                        courtesy
## 11415                     UUtah                                     createspace
## 11416                     UUtah                                        creative
## 11417                     UUtah                                         creator
## 11418                     UUtah                                      critically
## 11419                     UUtah                                           cross
## 11420                     UUtah                                       crunching
## 11421                     UUtah                                        cultural
## 11422                     UUtah                                         culture
## 11423                     UUtah                                          curved
## 11424                     UUtah                                            daca
## 11425                     UUtah                                         daniela
## 11426                     UUtah                                     datascience
## 11427                     UUtah                                            dave
## 11428                     UUtah                                           david
## 11429                     UUtah                                       deadlines
## 11430                     UUtah                                           dealt
## 11431                     UUtah                                            dean
## 11432                     UUtah                                       dedicated
## 11433                     UUtah                                          deduct
## 11434                     UUtah                                         defined
## 11435                     UUtah                                     definitions
## 11436                     UUtah                                         deleted
## 11437                     UUtah                                    demonstrated
## 11438                     UUtah                                          depend
## 11439                     UUtah                                       depending
## 11440                     UUtah                                        describe
## 11441                     UUtah                                     descriptive
## 11442                     UUtah                                          design
## 11443                     UUtah                                         details
## 11444                     UUtah                                      determined
## 11445                     UUtah                                       developed
## 11446                     UUtah                                     development
## 11447                     UUtah                                     differences
## 11448                     UUtah                                    difficulties
## 11449                     UUtah                                          direct
## 11450                     UUtah                                    disciplinary
## 11451                     UUtah                                     discussions
## 11452                     UUtah                                   disrespectful
## 11453                     UUtah                                         diverse
## 11454                     UUtah                                        doctrine
## 11455                     UUtah                                   documentation
## 11456                     UUtah                                        download
## 11457                     UUtah                                           drawn
## 11458                     UUtah                                  dream.utah.edu
## 11459                     UUtah                                          driven
## 11460                     UUtah                                        dropping
## 11461                     UUtah                                              ds
## 11462                     UUtah                                            earn
## 11463                     UUtah                                          easier
## 11464                     UUtah                                     educational
## 11465                     UUtah                                   effectiveness
## 11466                     UUtah                                       efficient
## 11467                     UUtah                                       elections
## 11468                     UUtah                                          emails
## 11469                     UUtah                                        engaging
## 11470                     UUtah                                         ensures
## 11471                     UUtah                                        ensuring
## 11472                     UUtah                                         entered
## 11473                     UUtah                                          entire
## 11474                     UUtah                                           error
## 11475                     UUtah                                          escort
## 11476                     UUtah                                          ethics
## 11477                     UUtah                                       ethnicity
## 11478                     UUtah                                      evaluation
## 11479                     UUtah                                          events
## 11480                     UUtah                                           exams
## 11481                     UUtah                                       exception
## 11482                     UUtah                                     exclamation
## 11483                     UUtah                                         execute
## 11484                     UUtah                                     explanation
## 11485                     UUtah                                      explicitly
## 11486                     UUtah                                     exploratory
## 11487                     UUtah                                         explore
## 11488                     UUtah                                       exploring
## 11489                     UUtah                                      expression
## 11490                     UUtah                                     expressions
## 11491                     UUtah                                       extension
## 11492                     UUtah                                      extensions
## 11493                     UUtah                                          factor
## 11494                     UUtah                                         failing
## 11495                     UUtah                                        fairness
## 11496                     UUtah                                            fame
## 11497                     UUtah                                        families
## 11498                     UUtah                                          family
## 11499                     UUtah                                        featured
## 11500                     UUtah                                        feedback
## 11501                     UUtah                                           feels
## 11502                     UUtah                                           field
## 11503                     UUtah                                       financial
## 11504                     UUtah                                        findings
## 11505                     UUtah                                          finish
## 11506                     UUtah                                      flctivites
## 11507                     UUtah                                           focus
## 11508                     UUtah                                          follow
## 11509                     UUtah                                          format
## 11510                     UUtah                                        francois
## 11511                     UUtah                                         fridays
## 11512                     UUtah                                         friends
## 11513                     UUtah                                       frontline
## 11514                     UUtah                                      fulfilling
## 11515                     UUtah                                          future
## 11516                     UUtah                                            gain
## 11517                     UUtah                                          gareth
## 11518                     UUtah                                           gefre
## 11519                     UUtah                                         genetic
## 11520                     UUtah                                           goals
## 11521                     UUtah                                          grades
## 11522                     UUtah                                         grading
## 11523                     UUtah                                        graphics
## 11524                     UUtah                                            grus
## 11525                     UUtah                                       guarantee
## 11526                     UUtah                                             han
## 11527                     UUtah                                            hand
## 11528                     UUtah                            handbook.cs.utah.edu
## 11529                     UUtah                                         handled
## 11530                     UUtah                                       hanspeter
## 11531                     UUtah                                        harassed
## 11532                     UUtah                                      harassment
## 11533                     UUtah                                        harrison
## 11534                     UUtah                                       harvard's
## 11535                     UUtah                                          hastie
## 11536                     UUtah                                          header
## 11537                     UUtah                                            held
## 11538                     UUtah                                           helps
## 11539                     UUtah                                           hints
## 11540                     UUtah                                            home
## 11541                     UUtah                                           honor
## 11542                     UUtah                                           humor
## 11543                     UUtah                                     hyperlinked
## 11544                     UUtah                                      hypothesis
## 11545                     UUtah                                           ideal
## 11546                     UUtah                                           ideas
## 11547                     UUtah                                          impact
## 11548                     UUtah                                      imperative
## 11549                     UUtah                                       implement
## 11550                     UUtah                                         improve
## 11551                     UUtah                                     incentivize
## 11552                     UUtah                                   incorporating
## 11553                     UUtah                                       increased
## 11554                     UUtah                                     independent
## 11555                     UUtah                                       index.php
## 11556                     UUtah                                      indirectly
## 11557                     UUtah                                      individual
## 11558                     UUtah                                     individuals
## 11559                     UUtah                                       inference
## 11560                     UUtah                                      inferences
## 11561                     UUtah                                     infractions
## 11562                     UUtah                                           input
## 11563                     UUtah                                       installed
## 11564                     UUtah                                        instance
## 11565                     UUtah                                       institute
## 11566                     UUtah                                   instructional
## 11567                     UUtah                                    interactions
## 11568                     UUtah                                    intermediate
## 11569                     UUtah                                        internet
## 11570                     UUtah                                       intuitive
## 11571                     UUtah                                      invaluable
## 11572                     UUtah                                         involve
## 11573                     UUtah                                        isolated
## 11574                     UUtah                                       isolation
## 11575                     UUtah                                          issued
## 11576                     UUtah                                         iterate
## 11577                     UUtah                                           james
## 11578                     UUtah                                         jeffrey
## 11579                     UUtah                                      jeopardize
## 11580                     UUtah                                            jian
## 11581                     UUtah                                          jiawei
## 11582                     UUtah                                             joe
## 11583                     UUtah                                            joel
## 11584                     UUtah                                           joint
## 11585                     UUtah                                          jquery
## 11586                     UUtah                                            jure
## 11587                     UUtah                                          kamber
## 11588                     UUtah                                        kaufmann
## 11589                     UUtah                                         kayning
## 11590                     UUtah                                       knowledge
## 11591                     UUtah                                            labs
## 11592                     UUtah                                             law
## 11593                     UUtah                                            leam
## 11594                     UUtah                                         learned
## 11595                     UUtah                                         learner
## 11596                     UUtah                                        learners
## 11597                     UUtah                                           legal
## 11598                     UUtah                                        leskovec
## 11599                     UUtah                                          letter
## 11600                     UUtah                                        licensed
## 11601                     UUtah                                            life
## 11602                     UUtah                                         linking
## 11603                     UUtah                                           lists
## 11604                     UUtah                                            live
## 11605                     UUtah                                           lives
## 11606                     UUtah                                         located
## 11607                     UUtah                                       logistics
## 11608                     UUtah                                      loneliness
## 11609                     UUtah                                            loop
## 11610                     UUtah                                           loved
## 11611                     UUtah                                           makes
## 11612                     UUtah                                       mandatory
## 11613                     UUtah                                    manipulating
## 11614                     UUtah                                         manning
## 11615                     UUtah                                          manual
## 11616                     UUtah                                         massive
## 11617                     UUtah                                          master
## 11618                     UUtah                                         mastery
## 11619                     UUtah                                            matt
## 11620                     UUtah                                             max
## 11621                     UUtah                                             mdt
## 11622                     UUtah                                           meant
## 11623                     UUtah                                      mechanical
## 11624                     UUtah                                         meeting
## 11625                     UUtah                                           meets
## 11626                     UUtah                                         message
## 11627                     UUtah                                        messages
## 11628                     UUtah                                       micheline
## 11629                     UUtah                                      milestones
## 11630                     UUtah                                         minimal
## 11631                     UUtah                                          missed
## 11632                     UUtah                                         missing
## 11633                     UUtah                                        mistakes
## 11634                     UUtah                                         misteps
## 11635                     UUtah                                           mixed
## 11636                     UUtah                                          modern
## 11637                     UUtah                                          morgan
## 11638                     UUtah                                             mst
## 11639                     UUtah                                         munging
## 11640                     UUtah                                        national
## 11641                     UUtah                                     nationality
## 11642                     UUtah                                         natural
## 11643                     UUtah                                       neccesary
## 11644                     UUtah                                         node.js
## 11645                     UUtah                                   noncommercial
## 11646                     UUtah                                        notebook
## 11647                     UUtah                                      noticeably
## 11648                     UUtah                                    notification
## 11649                     UUtah                                          o'neil
## 11650                     UUtah                                       objective
## 11651                     UUtah                                       obstacles
## 11652                     UUtah                                          obtain
## 11653                     UUtah                                         offense
## 11654                     UUtah                                        offenses
## 11655                     UUtah                                           offer
## 11656                     UUtah                                         ongoing
## 11657                     UUtah                                   opportunities
## 11658                     UUtah                                          option
## 11659                     UUtah                                          orally
## 11660                     UUtah                                         oreilly
## 11661                     UUtah                                          orfely
## 11662                     UUtah                                     orientation
## 11663                     UUtah                                          origin
## 11664                     UUtah                                         outline
## 11665                     UUtah                                          output
## 11666                     UUtah                                           owned
## 11667                     UUtah                                          packed
## 11668                     UUtah                                            page
## 11669                     UUtah                                          papers
## 11670                     UUtah                                            park
## 11671                     UUtah                                     participate
## 11672                     UUtah                                   participating
## 11673                     UUtah                                   participation
## 11674                     UUtah                                         parties
## 11675                     UUtah                                           party
## 11676                     UUtah                                           peers
## 11677                     UUtah                                             pei
## 11678                     UUtah                                     permissible
## 11679                     UUtah                                      permission
## 11680                     UUtah                                         permits
## 11681                     UUtah                                       permitted
## 11682                     UUtah                                      personally
## 11683                     UUtah                                    perspectives
## 11684                     UUtah                                         pfister
## 11685                     UUtah                                      phenomenon
## 11686                     UUtah                                            pick
## 11687                     UUtah                                            plan
## 11688                     UUtah                                        platform
## 11689                     UUtah                                       platforms
## 11690                     UUtah                                         plot.ly
## 11691                     UUtah                                        plotting
## 11692                     UUtah                                            post
## 11693                     UUtah                                     predictions
## 11694                     UUtah                                      preferably
## 11695                     UUtah                                      preference
## 11696                     UUtah                                       preferred
## 11697                     UUtah                                         prepare
## 11698                     UUtah                                        prepared
## 11699                     UUtah                                    presentation
## 11700                     UUtah                                           press
## 11701                     UUtah                                        previous
## 11702                     UUtah                                      previously
## 11703                     UUtah                                      principles
## 11704                     UUtah                                       privately
## 11705                     UUtah                                       procedure
## 11706                     UUtah                                      production
## 11707                     UUtah                                    productivity
## 11708                     UUtah                                         profile
## 11709                     UUtah                                         program
## 11710                     UUtah                                     progressing
## 11711                     UUtah                                           proof
## 11712                     UUtah                                          proper
## 11713                     UUtah                                        properly
## 11714                     UUtah                                          public
## 11715                     UUtah                                    publications
## 11716                     UUtah                                        publicly
## 11717                     UUtah                                       published
## 11718                     UUtah                                      publishing
## 11719                     UUtah                                            push
## 11720                     UUtah                                          pushed
## 11721                     UUtah                                         quality
## 11722                     UUtah                                     quarantined
## 11723                     UUtah                                           quote
## 11724                     UUtah                                          rachel
## 11725                     UUtah                                       rajaraman
## 11726                     UUtah                                         ranking
## 11727                     UUtah                                           rates
## 11728                     UUtah                                          rating
## 11729                     UUtah                                           reach
## 11730                     UUtah                                      readme.txt
## 11731                     UUtah                                           ready
## 11732                     UUtah                                            real
## 11733                     UUtah                                       receiving
## 11734                     UUtah                                          recent
## 11735                     UUtah                                       recognzie
## 11736                     UUtah                                       recommend
## 11737                     UUtah                                  recommendation
## 11738                     UUtah                                 recommendations
## 11739                     UUtah                                         recover
## 11740                     UUtah                                           refer
## 11741                     UUtah                                       reference
## 11742                     UUtah                                      references
## 11743                     UUtah                                        referred
## 11744                     UUtah                                       referring
## 11745                     UUtah                                          refers
## 11746                     UUtah                                          refine
## 11747                     UUtah                                         reflect
## 11748                     UUtah                                    reformatting
## 11749                     UUtah                                         regular
## 11750                     UUtah                                    relationship
## 11751                     UUtah                                   relationships
## 11752                     UUtah                                          remove
## 11753                     UUtah                                         removed
## 11754                     UUtah                                       repeating
## 11755                     UUtah                                       requested
## 11756                     UUtah                                         require
## 11757                     UUtah                                        requires
## 11758                     UUtah                                         reshape
## 11759                     UUtah                                       residence
## 11760                     UUtah                                        resource
## 11761                     UUtah                                         respect
## 11762                     UUtah                                       respected
## 11763                     UUtah                                           rhaul
## 11764                     UUtah                                          rights
## 11765                     UUtah                                          robert
## 11766                     UUtah                                         rosters
## 11767                     UUtah                                  safeu.utah.edu
## 11768                     UUtah                                        sanction
## 11769                     UUtah                                       sanctions
## 11770                     UUtah                                         sarcasm
## 11771                     UUtah                                       scholarly
## 11772                     UUtah                                          schutt
## 11773                     UUtah                                      scientific
## 11774                     UUtah                                           score
## 11775                     UUtah                                          scores
## 11776                     UUtah                                         scratch
## 11777                     UUtah                                         section
## 11778                     UUtah                                            seek
## 11779                     UUtah                                           seeks
## 11780                     UUtah                                          select
## 11781                     UUtah                                          series
## 11782                     UUtah                                           serve
## 11783                     UUtah                                          served
## 11784                     UUtah                                             set
## 11785                     UUtah                                          severe
## 11786                     UUtah                                             sex
## 11787                     UUtah                                       sexuality
## 11788                     UUtah                                           share
## 11789                     UUtah                                         sharing
## 11790                     UUtah                                          slides
## 11791                     UUtah                                             soc
## 11792                     UUtah                                   socioeconomic
## 11793                     UUtah                                        software
## 11794                     UUtah                                        solution
## 11795                     UUtah                                       solutions
## 11796                     UUtah                                       spectator
## 11797                     UUtah                                           split
## 11798                     UUtah                                          sports
## 11799                     UUtah                                        springer
## 11800                     UUtah                                             ssb
## 11801                     UUtah                                           start
## 11802                     UUtah                                         started
## 11803                     UUtah                                       statement
## 11804                     UUtah                                        straight
## 11805                     UUtah                                        streamed
## 11806                     UUtah                                        strength
## 11807                     UUtah                                          stress
## 11808                     UUtah                                         strings
## 11809                     UUtah                                          strong
## 11810                     UUtah                                         studies
## 11811                     UUtah                                           study
## 11812                     UUtah                                      submission
## 11813                     UUtah                                       submitted
## 11814                     UUtah                                         succeed
## 11815                     UUtah                                         success
## 11816                     UUtah                                    successfully
## 11817                     UUtah                                     suggestions
## 11818                     UUtah                                      suspicious
## 11819                     UUtah                                            talk
## 11820                     UUtah                                             tas
## 11821                     UUtah                                           teams
## 11822                     UUtah                                       technical
## 11823                     UUtah                                      technology
## 11824                     UUtah                                     terminology
## 11825                     UUtah                                         testing
## 11826                     UUtah                                        textbook
## 11827                     UUtah                                           texts
## 11828                     UUtah                                          themed
## 11829                     UUtah                                     theoretical
## 11830                     UUtah                                          theory
## 11831                     UUtah                                          thrive
## 11832                     UUtah                                           thumb
## 11833                     UUtah                                      tibshirani
## 11834                     UUtah                                           times
## 11835                     UUtah                                             top
## 11836                     UUtah                                           topic
## 11837                     UUtah                                          trevor
## 11838                     UUtah                                          ullman
## 11839                     UUtah                                          update
## 11840                     UUtah                                         updated
## 11841                     UUtah                                             url
## 11842                     UUtah                                            user
## 11843                     UUtah                                       variables
## 11844                     UUtah                                          verena
## 11845                     UUtah                                      verifiable
## 11846                     UUtah                                         veteran
## 11847                     UUtah                                       veteran's
## 11848                     UUtah                                           video
## 11849                     UUtah                                          videos
## 11850                     UUtah                                          viewed
## 11851                     UUtah                                         violate
## 11852                     UUtah                                        violence
## 11853                     UUtah                                         visible
## 11854                     UUtah                                  visualizations
## 11855                     UUtah                                     visualizing
## 11856                     UUtah                                          voting
## 11857                     UUtah                                        websites
## 11858                     UUtah                                            week
## 11859                     UUtah                                        weekends
## 11860                     UUtah                                       wellbeing
## 11861                     UUtah                               wellness.utah.edu
## 11862                     UUtah                                            wide
## 11863                     UUtah                                     withdrawing
## 11864                     UUtah                                          witten
## 11865                     UUtah                                           words
## 11866                     UUtah                                       workshops
## 11867                     UUtah                                           world
## 11868                     UUtah                                       wrangling
## 11869                     UUtah                                           wrong
## 11870                     UUtah                                 www.cs.utah.edu
## 11871                     UUtah                           www.wellness.utah.edu
## 11872                     UUtah                                         youtube
## 11873                     UUtah                                             zip
## 11874                     UUtah                                            пote
## 11875                   UVA_SDS                                        10,12,13
## 11876                   UVA_SDS                                        12,14,15
## 11877                   UVA_SDS                                        14,16,17
## 11878                   UVA_SDS                                        17,19,20
## 11879                   UVA_SDS                                            185a
## 11880                   UVA_SDS                                        19,21,22
## 11881                   UVA_SDS                                             2,3
## 11882                   UVA_SDS                                           22,24
## 11883                   UVA_SDS                                        24,26,27
## 11884                   UVA_SDS                                        26,28,29
## 11885                   UVA_SDS                                        28,30,12
## 11886                   UVA_SDS                                         29,31,9
## 11887                   UVA_SDS                                             2nd
## 11888                   UVA_SDS                                           31,11
## 11889                   UVA_SDS                                             3rd
## 11890                   UVA_SDS                                             5,6
## 11891                   UVA_SDS                                           5,7,8
## 11892                   UVA_SDS                                            9,10
## 11893                   UVA_SDS                                        accepted
## 11894                   UVA_SDS                                          access
## 11895                   UVA_SDS                                    accommodates
## 11896                   UVA_SDS                                   accommodation
## 11897                   UVA_SDS                                         achieve
## 11898                   UVA_SDS                                        activist
## 11899                   UVA_SDS                                        advanced
## 11900                   UVA_SDS                                           ahead
## 11901                   UVA_SDS                                             aid
## 11902                   UVA_SDS                                             aka
## 11903                   UVA_SDS                                      algorithym
## 11904                   UVA_SDS                                           align
## 11905                   UVA_SDS                                         alvardo
## 11906                   UVA_SDS                                          amazed
## 11907                   UVA_SDS                                      analytical
## 11908                   UVA_SDS                                       analyzing
## 11909                   UVA_SDS                                             app
## 11910                   UVA_SDS                                         applied
## 11911                   UVA_SDS                                    appreciation
## 11912                   UVA_SDS                                        approach
## 11913                   UVA_SDS                                        approved
## 11914                   UVA_SDS                                    arrangements
## 11915                   UVA_SDS                                         aspects
## 11916                   UVA_SDS                                     assessments
## 11917                   UVA_SDS                                      b075x4lt6k
## 11918                   UVA_SDS                                     b5emclqf_i4
## 11919                   UVA_SDS                                            baek
## 11920                   UVA_SDS                                      battleship
## 11921                   UVA_SDS                                   bbcollaborate
## 11922                   UVA_SDS                                        benefits
## 11923                   UVA_SDS                                          bounds
## 11924                   UVA_SDS                                              br
## 11925                   UVA_SDS                                           brian
## 11926                   UVA_SDS                                         bundles
## 11927                   UVA_SDS                                        business
## 11928                   UVA_SDS                                           bw2zd
## 11929                   UVA_SDS                                          career
## 11930                   UVA_SDS                                          carrie
## 11931                   UVA_SDS                                         catalog
## 11932                   UVA_SDS                                         channel
## 11933                   UVA_SDS                                            chat
## 11934                   UVA_SDS                                           click
## 11935                   UVA_SDS                                            code
## 11936                   UVA_SDS                                          coding
## 11937                   UVA_SDS                                          collab
## 11938                   UVA_SDS                                   collaboration
## 11939                   UVA_SDS                                     collage.png
## 11940                   UVA_SDS                                      collection
## 11941                   UVA_SDS                                        comments
## 11942                   UVA_SDS                                     completable
## 11943                   UVA_SDS                                        complete
## 11944                   UVA_SDS                                      completely
## 11945                   UVA_SDS                                         complex
## 11946                   UVA_SDS                                   computational
## 11947                   UVA_SDS                                       computing
## 11948                   UVA_SDS                                        concerns
## 11949                   UVA_SDS                                       condition
## 11950                   UVA_SDS                                     constructed
## 11951                   UVA_SDS                                        contacts
## 11952                   UVA_SDS                                         content
## 11953                   UVA_SDS                                        continue
## 11954                   UVA_SDS                                          create
## 11955                   UVA_SDS                                         created
## 11956                   UVA_SDS                                          credit
## 11957                   UVA_SDS                                        criteria
## 11958                   UVA_SDS                                           cycle
## 11959                   UVA_SDS                                            d222
## 11960                   UVA_SDS                                           dates
## 11961                   UVA_SDS                                         decided
## 11962                   UVA_SDS                                     definintion
## 11963                   UVA_SDS                                     deliverable
## 11964                   UVA_SDS                                        delivery
## 11965                   UVA_SDS                                       demanding
## 11966                   UVA_SDS                                        designed
## 11967                   UVA_SDS                                        designer
## 11968                   UVA_SDS                                        detailed
## 11969                   UVA_SDS                                         details
## 11970                   UVA_SDS                                          device
## 11971                   UVA_SDS                                         devices
## 11972                   UVA_SDS                                          devops
## 11973                   UVA_SDS                                      discord.gg
## 11974                   UVA_SDS                                      discovered
## 11975                   UVA_SDS                                      discussing
## 11976                   UVA_SDS                                      discussion
## 11977                   UVA_SDS                                   documentation
## 11978                   UVA_SDS                                            door
## 11979                   UVA_SDS                                           drive
## 11980                   UVA_SDS                                             e.g
## 11981                   UVA_SDS  ebhizpx6z85duqghvviv_syb1yyeryxhhj_3rdy0pdtgvq
## 11982                   UVA_SDS                                           ebook
## 11983                   UVA_SDS                                       ecosystem
## 11984                   UVA_SDS                                          effect
## 11985                   UVA_SDS                                      efficiency
## 11986                   UVA_SDS                                       efficient
## 11987                   UVA_SDS                                         element
## 11988                   UVA_SDS                                     encompasses
## 11989                   UVA_SDS                                      encouraged
## 11990                   UVA_SDS                                         enhance
## 11991                   UVA_SDS                                          enroll
## 11992                   UVA_SDS                                        enrolled
## 11993                   UVA_SDS                                         ethical
## 11994                   UVA_SDS                                        evolving
## 11995                   UVA_SDS                                     examination
## 11996                   UVA_SDS                                        expected
## 11997                   UVA_SDS                                      experience
## 11998                   UVA_SDS                                         explain
## 11999                   UVA_SDS                                     explainable
## 12000                   UVA_SDS                                       explained
## 12001                   UVA_SDS                                       exploring
## 12002                   UVA_SDS                                       expressed
## 12003                   UVA_SDS                                        extended
## 12004                   UVA_SDS                                      extensions
## 12005                   UVA_SDS                                        fairness
## 12006                   UVA_SDS                                            fall
## 12007                   UVA_SDS                                           falls
## 12008                   UVA_SDS                                          family
## 12009                   UVA_SDS                                             fax
## 12010                   UVA_SDS                                         feature
## 12011                   UVA_SDS                                            feel
## 12012                   UVA_SDS                                            feet
## 12013                   UVA_SDS                                          fields
## 12014                   UVA_SDS                                           final
## 12015                   UVA_SDS                                          finish
## 12016                   UVA_SDS                                        focusing
## 12017                   UVA_SDS                                          follow
## 12018                   UVA_SDS                                            foot
## 12019                   UVA_SDS                                          friday
## 12020                   UVA_SDS                                         friends
## 12021                   UVA_SDS                                             fun
## 12022                   UVA_SDS                                        function
## 12023                   UVA_SDS                                     fundamental
## 12024                   UVA_SDS                                            goal
## 12025                   UVA_SDS                                          govern
## 12026                   UVA_SDS                                      grading.md
## 12027                   UVA_SDS                                            grow
## 12028                   UVA_SDS                                           guess
## 12029                   UVA_SDS                                        gurantee
## 12030                   UVA_SDS                                       guranteed
## 12031                   UVA_SDS                                           happy
## 12032                   UVA_SDS                                          hoping
## 12033                   UVA_SDS                                            hour
## 12034                   UVA_SDS                                      humanizing
## 12035                   UVA_SDS                                          humans
## 12036                   UVA_SDS                                            idea
## 12037                   UVA_SDS                                              ii
## 12038                   UVA_SDS                                          images
## 12039                   UVA_SDS                                  implementation
## 12040                   UVA_SDS                                         include
## 12041                   UVA_SDS                                        includes
## 12042                   UVA_SDS                                       including
## 12043                   UVA_SDS                                     incorperate
## 12044                   UVA_SDS                                       increases
## 12045                   UVA_SDS                                      individual
## 12046                   UVA_SDS                                    individually
## 12047                   UVA_SDS                                      inequality
## 12048                   UVA_SDS                                         initial
## 12049                   UVA_SDS                                      instructor
## 12050                   UVA_SDS                                     instructors
## 12051                   UVA_SDS                                     interactive
## 12052                   UVA_SDS                                       interface
## 12053                   UVA_SDS                                       interview
## 12054                   UVA_SDS                                           intro
## 12055                   UVA_SDS                                       introduce
## 12056                   UVA_SDS                                          invite
## 12057                   UVA_SDS                                        involves
## 12058                   UVA_SDS                                          iphone
## 12059                   UVA_SDS                                         ipython
## 12060                   UVA_SDS                                            jess
## 12061                   UVA_SDS                                         journal
## 12062                   UVA_SDS                                             key
## 12063                   UVA_SDS                                             knn
## 12064                   UVA_SDS                                      laboratory
## 12065                   UVA_SDS                                         learned
## 12066                   UVA_SDS                                      leveraging
## 12067                   UVA_SDS                                              li
## 12068                   UVA_SDS                                            life
## 12069                   UVA_SDS                                           linda
## 12070                   UVA_SDS                                          living
## 12071                   UVA_SDS                                        location
## 12072                   UVA_SDS                                           login
## 12073                   UVA_SDS                                       logistics
## 12074                   UVA_SDS                                           loose
## 12075                   UVA_SDS                                           lpa2a
## 12076                   UVA_SDS                              lpa2a_virginia_edu
## 12077                   UVA_SDS                                            lupi
## 12078                   UVA_SDS                                             mac
## 12079                   UVA_SDS                                           major
## 12080                   UVA_SDS                                        majority
## 12081                   UVA_SDS                                           makes
## 12082                   UVA_SDS                                         managed
## 12083                   UVA_SDS                                      management
## 12084                   UVA_SDS                                             map
## 12085                   UVA_SDS                                            maps
## 12086                   UVA_SDS                                      mastermind
## 12087                   UVA_SDS                                        maximize
## 12088                   UVA_SDS                                              mc
## 12089                   UVA_SDS                                           media
## 12090                   UVA_SDS                                         medical
## 12091                   UVA_SDS                                          medium
## 12092                   UVA_SDS                                       messaging
## 12093                   UVA_SDS                                            mind
## 12094                   UVA_SDS                                          miriam
## 12095                   UVA_SDS                                        mistakes
## 12096                   UVA_SDS                                          models
## 12097                   UVA_SDS                                          moment
## 12098                   UVA_SDS                                         mondays
## 12099                   UVA_SDS                                        mornings
## 12100                   UVA_SDS                                        motivate
## 12101                   UVA_SDS                                            move
## 12102                   UVA_SDS                               my.sharepoint.com
## 12103                   UVA_SDS                                           myuva
## 12104                   UVA_SDS                                             n.b
## 12105                   UVA_SDS                                       narrative
## 12106                   UVA_SDS                                             nau
## 12107                   UVA_SDS                                            neal
## 12108                   UVA_SDS                                            nice
## 12109                   UVA_SDS                                          nilson
## 12110                   UVA_SDS                                        notebook
## 12111                   UVA_SDS                                      objectives
## 12112                   UVA_SDS                                    observations
## 12113                   UVA_SDS                                        occupied
## 12114                   UVA_SDS                                         offical
## 12115                   UVA_SDS                                          olhyk8
## 12116                   UVA_SDS                            ontoligent.github.io
## 12117                   UVA_SDS                                       operation
## 12118                   UVA_SDS                                              ot
## 12119                   UVA_SDS                                        outlined
## 12120                   UVA_SDS                                            page
## 12121                   UVA_SDS                                          papers
## 12122                   UVA_SDS                                       parameter
## 12123                   UVA_SDS                                        password
## 12124                   UVA_SDS                                           paths
## 12125                   UVA_SDS                                       performed
## 12126                   UVA_SDS                                          period
## 12127                   UVA_SDS                                          permit
## 12128                   UVA_SDS                                           peter
## 12129                   UVA_SDS                                        pgapcmhp
## 12130                   UVA_SDS                                           phone
## 12131                   UVA_SDS                                           piece
## 12132                   UVA_SDS                                       pioneered
## 12133                   UVA_SDS                                        pipeline
## 12134                   UVA_SDS                                         pledged
## 12135                   UVA_SDS                                        podcasts
## 12136                   UVA_SDS                                         posavec
## 12137                   UVA_SDS                                           power
## 12138                   UVA_SDS                                         primary
## 12139                   UVA_SDS                                           prime
## 12140                   UVA_SDS                                           prior
## 12141                   UVA_SDS                                         process
## 12142                   UVA_SDS                                      professors
## 12143                   UVA_SDS                                      progresses
## 12144                   UVA_SDS                                      projection
## 12145                   UVA_SDS                                         provide
## 12146                   UVA_SDS                                   psychological
## 12147                   UVA_SDS                                         purpose
## 12148                   UVA_SDS                                         putting
## 12149                   UVA_SDS                                         quickly
## 12150                   UVA_SDS                                            quiz
## 12151                   UVA_SDS                                         quizzes
## 12152                   UVA_SDS                                  r4ds.had.co.nz
## 12153                   UVA_SDS                                          rafael
## 12154                   UVA_SDS                                            read
## 12155                   UVA_SDS                                        received
## 12156                   UVA_SDS                                          record
## 12157                   UVA_SDS                                   reinforcement
## 12158                   UVA_SDS                                         relaxed
## 12159                   UVA_SDS                                        relieved
## 12160                   UVA_SDS                                         reminds
## 12161                   UVA_SDS                                           renee
## 12162                   UVA_SDS                                       represent
## 12163                   UVA_SDS                                         require
## 12164                   UVA_SDS                                        research
## 12165                   UVA_SDS                                       residence
## 12166                   UVA_SDS                                  responsibility
## 12167                   UVA_SDS                                         revised
## 12168                   UVA_SDS                                          ridley
## 12169                   UVA_SDS                                           scale
## 12170                   UVA_SDS                                          scales
## 12171                   UVA_SDS                                         scaling
## 12172                   UVA_SDS                                       scenerios
## 12173                   UVA_SDS                                        schedule
## 12174                   UVA_SDS                                            scps
## 12175                   UVA_SDS                                    scpshelpdesk
## 12176                   UVA_SDS                                       sdac.html
## 12177                   UVA_SDS                                         seating
## 12178                   UVA_SDS                                       secondary
## 12179                   UVA_SDS                                        sections
## 12180                   UVA_SDS                                        selected
## 12181                   UVA_SDS                                       semesters
## 12182                   UVA_SDS                                          senior
## 12183                   UVA_SDS                                          serves
## 12184                   UVA_SDS                                           sheng
## 12185                   UVA_SDS                                          signed
## 12186                   UVA_SDS                                          simply
## 12187                   UVA_SDS                                  simultaneously
## 12188                   UVA_SDS                                         smarter
## 12189                   UVA_SDS                                         society
## 12190                   UVA_SDS                                        solution
## 12191                   UVA_SDS                                       solutions
## 12192                   UVA_SDS                                        speakers
## 12193                   UVA_SDS                                         special
## 12194                   UVA_SDS                                    specifically
## 12195                   UVA_SDS                                           spend
## 12196                   UVA_SDS                                           spent
## 12197                   UVA_SDS                                          spirit
## 12198                   UVA_SDS                                           stack
## 12199                   UVA_SDS                                        starting
## 12200                   UVA_SDS                                      statements
## 12201                   UVA_SDS                                            step
## 12202                   UVA_SDS                                           steps
## 12203                   UVA_SDS                                          steven
## 12204                   UVA_SDS                                    storytelling
## 12205                   UVA_SDS                                   studenthealth
## 12206                   UVA_SDS                                         studies
## 12207                   UVA_SDS                                        studying
## 12208                   UVA_SDS                                         subject
## 12209                   UVA_SDS                                       submitted
## 12210                   UVA_SDS                                    supplemental
## 12211                   UVA_SDS                                    surprisingly
## 12212                   UVA_SDS                                          survey
## 12213                   UVA_SDS                                      synthesize
## 12214                   UVA_SDS                                      systematic
## 12215                   UVA_SDS                                            task
## 12216                   UVA_SDS                                          taught
## 12217                   UVA_SDS                                            tech
## 12218                   UVA_SDS                                       technical
## 12219                   UVA_SDS                                   technological
## 12220                   UVA_SDS                                        thornton
## 12221                   UVA_SDS                                            thur
## 12222                   UVA_SDS                                           times
## 12223                   UVA_SDS                                           title
## 12224                   UVA_SDS                                         today's
## 12225                   UVA_SDS                                       transform
## 12226                   UVA_SDS                                              tu
## 12227                   UVA_SDS                                         typical
## 12228                   UVA_SDS                                       typically
## 12229                   UVA_SDS                                      ultimately
## 12230                   UVA_SDS                                   undergraduate
## 12231                   UVA_SDS                                   understanding
## 12232                   UVA_SDS                                       unoffical
## 12233                   UVA_SDS                                            user
## 12234                   UVA_SDS                                          uvabbc
## 12235                   UVA_SDS                                       uvacollab
## 12236                   UVA_SDS                                            vary
## 12237                   UVA_SDS                                           video
## 12238                   UVA_SDS                                           visit
## 12239                   UVA_SDS                                           voice
## 12240                   UVA_SDS                                           watch
## 12241                   UVA_SDS                                        watching
## 12242                   UVA_SDS                                             web
## 12243                   UVA_SDS                                      wednesdays
## 12244                   UVA_SDS                                             wet
## 12245                   UVA_SDS                                           words
## 12246                   UVA_SDS                                       wrangling
## 12247                   UVA_SDS                                 www.tinyurl.com
## 12248                   UVA_SDS                                 www.youtube.com
## 12249                   UVA_SDS                                        youtu.be
## 12250                  UVA_Stat                                            00pm
## 12251                  UVA_Stat                                            10am
## 12252                  UVA_Stat                                            11am
## 12253                  UVA_Stat                                            12pm
## 12254                  UVA_Stat                                            15pm
## 12255                  UVA_Stat                                          2kpzx8
## 12256                  UVA_Stat                                             2pm
## 12257                  UVA_Stat                                            30pm
## 12258                  UVA_Stat                                        accepted
## 12259                  UVA_Stat                                   accessibility
## 12260                  UVA_Stat                                  accommodations
## 12261                  UVA_Stat                                      activities
## 12262                  UVA_Stat                                        adhikari
## 12263                  UVA_Stat                                           ahead
## 12264                  UVA_Stat                                         allowed
## 12265                  UVA_Stat                                       analyzing
## 12266                  UVA_Stat                                             ani
## 12267                  UVA_Stat                                        answered
## 12268                  UVA_Stat                                    applications
## 12269                  UVA_Stat                                    appointments
## 12270                  UVA_Stat                                          arises
## 12271                  UVA_Stat                                        assessed
## 12272                  UVA_Stat                                       assistant
## 12273                  UVA_Stat                                          choose
## 12274                  UVA_Stat                                           clark
## 12275                  UVA_Stat                                       classwork
## 12276                  UVA_Stat                                     collaborate
## 12277                  UVA_Stat                                   collaboration
## 12278                  UVA_Stat                                        comments
## 12279                  UVA_Stat                                          comply
## 12280                  UVA_Stat                                       component
## 12281                  UVA_Stat                                   computational
## 12282                  UVA_Stat                                      considered
## 12283                  UVA_Stat                                         consult
## 12284                  UVA_Stat                                      contribute
## 12285                  UVA_Stat                                          costin
## 12286                  UVA_Stat                                           count
## 12287                  UVA_Stat                                          counts
## 12288                  UVA_Stat                                            date
## 12289                  UVA_Stat                                           dates
## 12290                  UVA_Stat                                           delay
## 12291                  UVA_Stat                                          denero
## 12292                  UVA_Stat                                        designed
## 12293                  UVA_Stat                                      determined
## 12294                  UVA_Stat                                     downloading
## 12295                  UVA_Stat                                            dual
## 12296                  UVA_Stat                                         element
## 12297                  UVA_Stat                                      emphasizes
## 12298                  UVA_Stat                                       encounter
## 12299                  UVA_Stat                                       encourage
## 12300                  UVA_Stat                                      encouraged
## 12301                  UVA_Stat                                          enroll
## 12302                  UVA_Stat                                       evaluated
## 12303                  UVA_Stat                                      extensions
## 12304                  UVA_Stat                                            fall
## 12305                  UVA_Stat                                           final
## 12306                  UVA_Stat                                        finished
## 12307                  UVA_Stat                                            firm
## 12308                  UVA_Stat                                             fix
## 12309                  UVA_Stat                                            free
## 12310                  UVA_Stat                                          graded
## 12311                  UVA_Stat                                  gradescope.com
## 12312                  UVA_Stat                                         grading
## 12313                  UVA_Stat                                           guide
## 12314                  UVA_Stat                                          halsey
## 12315                  UVA_Stat                                          helman
## 12316                  UVA_Stat                                         helpful
## 12317                  UVA_Stat                              honor.virginia.edu
## 12318                  UVA_Stat                                       identical
## 12319                  UVA_Stat                                     immediately
## 12320                  UVA_Stat                                       including
## 12321                  UVA_Stat                                    individually
## 12322                  UVA_Stat                                     inferential
## 12323                  UVA_Stat                                       inquiries
## 12324                  UVA_Stat                                    instructions
## 12325                  UVA_Stat                                       integrity
## 12326                  UVA_Stat                                       introduce
## 12327                  UVA_Stat                                      invaluable
## 12328                  UVA_Stat                                          jeh6kw
## 12329                  UVA_Stat                                           jesse
## 12330                  UVA_Stat                                            john
## 12331                  UVA_Stat                                            join
## 12332                  UVA_Stat                                         jupyter
## 12333                  UVA_Stat                                    kalenichenko
## 12334                  UVA_Stat                                       katherine
## 12335                  UVA_Stat                                          kec2vn
## 12336                  UVA_Stat                                       knowledge
## 12337                  UVA_Stat                                            labs
## 12338                  UVA_Stat                                            late
## 12339                  UVA_Stat                                        learning
## 12340                  UVA_Stat                                        location
## 12341                  UVA_Stat                                             mac
## 12342                  UVA_Stat                                            mail
## 12343                  UVA_Stat                                         mandate
## 12344                  UVA_Stat                                          manner
## 12345                  UVA_Stat                                        material
## 12346                  UVA_Stat                                    mathematical
## 12347                  UVA_Stat                                        meetings
## 12348                  UVA_Stat                                        mistakes
## 12349                  UVA_Stat                                          nhk6up
## 12350                  UVA_Stat                                        nicholas
## 12351                  UVA_Stat                                      occasional
## 12352                  UVA_Stat                                    occasionally
## 12353                  UVA_Stat                                           occur
## 12354                  UVA_Stat                                         outcome
## 12355                  UVA_Stat                                        outcomes
## 12356                  UVA_Stat                                            page
## 12357                  UVA_Stat                                           pages
## 12358                  UVA_Stat                                            pass
## 12359                  UVA_Stat                                          passed
## 12360                  UVA_Stat                                         penalty
## 12361                  UVA_Stat                                        personal
## 12362                  UVA_Stat                                        platform
## 12363                  UVA_Stat                                          portal
## 12364                  UVA_Stat                                            post
## 12365                  UVA_Stat                                         primary
## 12366                  UVA_Stat                                 programatically
## 12367                  UVA_Stat                                         project
## 12368                  UVA_Stat                                        provided
## 12369                  UVA_Stat                                      provisions
## 12370                  UVA_Stat                                           quick
## 12371                  UVA_Stat                                         reading
## 12372                  UVA_Stat                                            real
## 12373                  UVA_Stat                                        receives
## 12374                  UVA_Stat                                       regularly
## 12375                  UVA_Stat                                        relevant
## 12376                  UVA_Stat                                       requested
## 12377                  UVA_Stat                                         require
## 12378                  UVA_Stat                                        required
## 12379                  UVA_Stat                                        requires
## 12380                  UVA_Stat                                        resource
## 12381                  UVA_Stat                                      responding
## 12382                  UVA_Stat                                        resubmit
## 12383                  UVA_Stat                                           scale
## 12384                  UVA_Stat                                        schedule
## 12385                  UVA_Stat                                          scheme
## 12386                  UVA_Stat                                            sdac
## 12387                  UVA_Stat                                         section
## 12388                  UVA_Stat                                       situation
## 12389                  UVA_Stat                                          skills
## 12390                  UVA_Stat                                        software
## 12391                  UVA_Stat                                        solution
## 12392                  UVA_Stat                                           solve
## 12393                  UVA_Stat                                         special
## 12394                  UVA_Stat                                            stat
## 12395                  UVA_Stat                                         student
## 12396                  UVA_Stat                                      submission
## 12397                  UVA_Stat                                     submissions
## 12398                  UVA_Stat                                          system
## 12399                  UVA_Stat                                        teaching
## 12400                  UVA_Stat                                        thinking
## 12401                  UVA_Stat                                            time
## 12402                  UVA_Stat                                          timely
## 12403                  UVA_Stat                                           trust
## 12404                  UVA_Stat                                          usable
## 12405                  UVA_Stat                                       wednesday
## 12406                  UVA_Stat                                        weekdays
## 12407                  UVA_Stat                                        weekends
## 12408                  UVA_Stat                                       welcoming
## 12409                  UVA_Stat                                        whomever
## 12410                  UVA_Stat                                 windowsspecific
## 12411                  UVA_Stat                                           world
## 12412                  UVA_Stat                     www.inferentialthinking.com
## 12413               UWashington                                      acceptable
## 12414               UWashington                                        achieved
## 12415               UWashington                                        analysis
## 12416               UWashington                                        assigned
## 12417               UWashington                                          attend
## 12418               UWashington                                           basic
## 12419               UWashington                                         broadly
## 12420               UWashington                                         browser
## 12421               UWashington                                           bumps
## 12422               UWashington                                          called
## 12423               UWashington                                       challenge
## 12424               UWashington                                  classification
## 12425               UWashington                                           codes
## 12426               UWashington                                        complete
## 12427               UWashington                                       completed
## 12428               UWashington                                       component
## 12429               UWashington                                      conceptual
## 12430               UWashington                                    consequences
## 12431               UWashington                                         consist
## 12432               UWashington                                    contributing
## 12433               UWashington                                         copying
## 12434               UWashington                                           cover
## 12435               UWashington                                       cs.uw.edu
## 12436               UWashington                                       decisions
## 12437               UWashington                                      determined
## 12438               UWashington                                         diverse
## 12439               UWashington                                          driven
## 12440               UWashington                                          else's
## 12441               UWashington                                      encouraged
## 12442               UWashington                                           enter
## 12443               UWashington                                     environment
## 12444               UWashington                                      estimation
## 12445               UWashington                                      evaluating
## 12446               UWashington                                    experimental
## 12447               UWashington                                         filling
## 12448               UWashington                                           goals
## 12449               UWashington                                          grades
## 12450               UWashington                                         grading
## 12451               UWashington                                            home
## 12452               UWashington                                      hypothesis
## 12453               UWashington                                        implicit
## 12454               UWashington                                    increasingly
## 12455               UWashington                                       inference
## 12456               UWashington                                    introduction
## 12457               UWashington                                       knowledge
## 12458               UWashington                                             lab
## 12459               UWashington                                           learn
## 12460               UWashington                                        learning
## 12461               UWashington                                          linear
## 12462               UWashington                                           links
## 12463               UWashington                                            live
## 12464               UWashington                                           login
## 12465               UWashington                                       materials
## 12466               UWashington                                      misconduct
## 12467               UWashington                                         missing
## 12468               UWashington                                        modified
## 12469               UWashington                                           paced
## 12470               UWashington                                           pages
## 12471               UWashington                                     participate
## 12472               UWashington                                   participating
## 12473               UWashington                                      percentage
## 12474               UWashington                                        policies
## 12475               UWashington                                       practical
## 12476               UWashington                                        practice
## 12477               UWashington                                     probability
## 12478               UWashington                                         produce
## 12479               UWashington                                         program
## 12480               UWashington                                         project
## 12481               UWashington                                         quarter
## 12482               UWashington                                         receive
## 12483               UWashington                                       recipient
## 12484               UWashington                                       referring
## 12485               UWashington                                      regression
## 12486               UWashington                                        resource
## 12487               UWashington                                            runs
## 12488               UWashington                                            ryan
## 12489               UWashington                                         science
## 12490               UWashington                                          scores
## 12491               UWashington                                             set
## 12492               UWashington                                       similarly
## 12493               UWashington                                      simulation
## 12494               UWashington                                       situation
## 12495               UWashington                                           skill
## 12496               UWashington                        skillitup.ischool.uw.edu
## 12497               UWashington                                       skillltup
## 12498               UWashington                                          skills
## 12499               UWashington                                        software
## 12500               UWashington                                        solution
## 12501               UWashington                                          spring
## 12502               UWashington                                           study
## 12503               UWashington                                       submitted
## 12504               UWashington                                        syllabus
## 12505               UWashington                                         testing
## 12506               UWashington                                          topics
## 12507               UWashington                                        training
## 12508               UWashington                                           types
## 12509               UWashington                                      university
## 12510               UWashington                                             web
## 12511               UWashington                                           world
## 12512    UWisc_Madison_Modeling                                     acquisition
## 12513    UWisc_Madison_Modeling                                        addition
## 12514    UWisc_Madison_Modeling                                        adequacy
## 12515    UWisc_Madison_Modeling                                    administered
## 12516    UWisc_Madison_Modeling                                            aims
## 12517    UWisc_Madison_Modeling                                          answer
## 12518    UWisc_Madison_Modeling                                      anticipate
## 12519    UWisc_Madison_Modeling                                    applications
## 12520    UWisc_Madison_Modeling                                        approach
## 12521    UWisc_Madison_Modeling                                   approximately
## 12522    UWisc_Madison_Modeling                                          assess
## 12523    UWisc_Madison_Modeling                                     assessments
## 12524    UWisc_Madison_Modeling                                          assume
## 12525    UWisc_Madison_Modeling                                 astrostatistics
## 12526    UWisc_Madison_Modeling                                            bret
## 12527    UWisc_Madison_Modeling                                     calculation
## 12528    UWisc_Madison_Modeling                                         capture
## 12529    UWisc_Madison_Modeling                                           carry
## 12530    UWisc_Madison_Modeling                                      challenges
## 12531    UWisc_Madison_Modeling                                         classes
## 12532    UWisc_Madison_Modeling                                     collaborate
## 12533    UWisc_Madison_Modeling                                     communicate
## 12534    UWisc_Madison_Modeling                                       completed
## 12535    UWisc_Madison_Modeling                                    comprehended
## 12536    UWisc_Madison_Modeling                                         concept
## 12537    UWisc_Madison_Modeling                                      confidence
## 12538    UWisc_Madison_Modeling                                         contact
## 12539    UWisc_Madison_Modeling                                         content
## 12540    UWisc_Madison_Modeling                                      contribute
## 12541    UWisc_Madison_Modeling                                      convenient
## 12542    UWisc_Madison_Modeling                                          cran.r
## 12543    UWisc_Madison_Modeling                                        creation
## 12544    UWisc_Madison_Modeling                                       culminate
## 12545    UWisc_Madison_Modeling                                      cumulative
## 12546    UWisc_Madison_Modeling                                     description
## 12547    UWisc_Madison_Modeling                                      determined
## 12548    UWisc_Madison_Modeling                            dimensionahsummaries
## 12549    UWisc_Madison_Modeling                                       displayed
## 12550    UWisc_Madison_Modeling                                         editing
## 12551    UWisc_Madison_Modeling                                         examine
## 12552    UWisc_Madison_Modeling                                        examples
## 12553    UWisc_Madison_Modeling                                           exams
## 12554    UWisc_Madison_Modeling                                       exercises
## 12555    UWisc_Madison_Modeling                                          expect
## 12556    UWisc_Madison_Modeling                                        expected
## 12557    UWisc_Madison_Modeling                                         explain
## 12558    UWisc_Madison_Modeling                                         explore
## 12559    UWisc_Madison_Modeling                                          faciam
## 12560    UWisc_Madison_Modeling                                            file
## 12561    UWisc_Madison_Modeling                                            form
## 12562    UWisc_Madison_Modeling                                          friday
## 12563    UWisc_Madison_Modeling                                        generate
## 12564    UWisc_Madison_Modeling                                      generation
## 12565    UWisc_Madison_Modeling                                          github
## 12566    UWisc_Madison_Modeling                                          google
## 12567    UWisc_Madison_Modeling                                         grading
## 12568    UWisc_Madison_Modeling                                        graphics
## 12569    UWisc_Madison_Modeling                                       grolemund
## 12570    UWisc_Madison_Modeling                                           hands
## 12571    UWisc_Madison_Modeling                                      hypotheses
## 12572    UWisc_Madison_Modeling                                      hypothesis
## 12573    UWisc_Madison_Modeling                                       including
## 12574    UWisc_Madison_Modeling                                       inference
## 12575    UWisc_Madison_Modeling                                        inferred
## 12576    UWisc_Madison_Modeling                                       integrate
## 12577    UWisc_Madison_Modeling                                        intended
## 12578    UWisc_Madison_Modeling                                       interpret
## 12579    UWisc_Madison_Modeling                                       intervals
## 12580    UWisc_Madison_Modeling                                      introduces
## 12581    UWisc_Madison_Modeling                                    introduction
## 12582    UWisc_Madison_Modeling                                        inveniam
## 12583    UWisc_Madison_Modeling                                         involve
## 12584    UWisc_Madison_Modeling                                          jjkehe
## 12585    UWisc_Madison_Modeling                                         knitted
## 12586    UWisc_Madison_Modeling                                        knitting
## 12587    UWisc_Madison_Modeling                                        language
## 12588    UWisc_Madison_Modeling                                          larget
## 12589    UWisc_Madison_Modeling                                        learning
## 12590    UWisc_Madison_Modeling                                         lecture
## 12591    UWisc_Madison_Modeling                                        lectures
## 12592    UWisc_Madison_Modeling                                          linear
## 12593    UWisc_Madison_Modeling                                             low
## 12594    UWisc_Madison_Modeling                                      management
## 12595    UWisc_Madison_Modeling                                    manipulation
## 12596    UWisc_Madison_Modeling                                       materials
## 12597    UWisc_Madison_Modeling                                           means
## 12598    UWisc_Madison_Modeling                                           meant
## 12599    UWisc_Madison_Modeling                                         minutes
## 12600    UWisc_Madison_Modeling                                           model
## 12601    UWisc_Madison_Modeling                                      modelsdata
## 12602    UWisc_Madison_Modeling                                        multiple
## 12603    UWisc_Madison_Modeling                                            news
## 12604    UWisc_Madison_Modeling                                           noise
## 12605    UWisc_Madison_Modeling                                           ogram
## 12606    UWisc_Madison_Modeling                                           orcid
## 12607    UWisc_Madison_Modeling                                        outcomes
## 12608    UWisc_Madison_Modeling                                            page
## 12609    UWisc_Madison_Modeling                                          period
## 12610    UWisc_Madison_Modeling                                        possibly
## 12611    UWisc_Madison_Modeling                                          posted
## 12612    UWisc_Madison_Modeling                                       practical
## 12613    UWisc_Madison_Modeling                                        practice
## 12614    UWisc_Madison_Modeling                                     predictions
## 12615    UWisc_Madison_Modeling                                           prior
## 12616    UWisc_Madison_Modeling                                         process
## 12617    UWisc_Madison_Modeling                                     programming
## 12618    UWisc_Madison_Modeling                                     project.org
## 12619    UWisc_Madison_Modeling                                     proportions
## 12620    UWisc_Madison_Modeling                                           prose
## 12621    UWisc_Madison_Modeling                                        quantify
## 12622    UWisc_Madison_Modeling                                    quantitative
## 12623    UWisc_Madison_Modeling                                        question
## 12624    UWisc_Madison_Modeling                                            read
## 12625    UWisc_Madison_Modeling                                        readings
## 12626    UWisc_Madison_Modeling                                         results
## 12627    UWisc_Madison_Modeling                                         rstudio
## 12628    UWisc_Madison_Modeling                                          sample
## 12629    UWisc_Madison_Modeling                                         scholar
## 12630    UWisc_Madison_Modeling                                           score
## 12631    UWisc_Madison_Modeling                                        semester
## 12632    UWisc_Madison_Modeling                                        sequence
## 12633    UWisc_Madison_Modeling                                        settings
## 12634    UWisc_Madison_Modeling                                          signal
## 12635    UWisc_Madison_Modeling                                          simple
## 12636    UWisc_Madison_Modeling                                          single
## 12637    UWisc_Madison_Modeling                                         skilled
## 12638    UWisc_Madison_Modeling                                             soa
## 12639    UWisc_Madison_Modeling                                            soas
## 12640    UWisc_Madison_Modeling                                        software
## 12641    UWisc_Madison_Modeling                                           solve
## 12642    UWisc_Madison_Modeling                                          source
## 12643    UWisc_Madison_Modeling                                           spend
## 12644    UWisc_Madison_Modeling                                        spending
## 12645    UWisc_Madison_Modeling                                   statistically
## 12646    UWisc_Madison_Modeling                                      statistics
## 12647    UWisc_Madison_Modeling                                         student
## 12648    UWisc_Madison_Modeling                                          studio
## 12649    UWisc_Madison_Modeling                                    successfully
## 12650    UWisc_Madison_Modeling                                       summarize
## 12651    UWisc_Madison_Modeling                                              te
## 12652    UWisc_Madison_Modeling                                           tests
## 12653    UWisc_Madison_Modeling                                        thinking
## 12654    UWisc_Madison_Modeling                                            time
## 12655    UWisc_Madison_Modeling                                          topics
## 12656    UWisc_Madison_Modeling                                       transform
## 12657    UWisc_Madison_Modeling                                       typically
## 12658    UWisc_Madison_Modeling                                      understand
## 12659    UWisc_Madison_Modeling                                   understanding
## 12660    UWisc_Madison_Modeling                                       uploading
## 12661    UWisc_Madison_Modeling                                          values
## 12662    UWisc_Madison_Modeling                                         variety
## 12663    UWisc_Madison_Modeling                                            viam
## 12664    UWisc_Madison_Modeling                                         viewing
## 12665    UWisc_Madison_Modeling                                   visualization
## 12666    UWisc_Madison_Modeling                                  visualizations
## 12667    UWisc_Madison_Modeling                                       visualize
## 12668    UWisc_Madison_Modeling                                             web
## 12669    UWisc_Madison_Modeling                                          weekly
## 12670    UWisc_Madison_Modeling                                        weighted
## 12671    UWisc_Madison_Modeling                                         wickham
## 12672    UWisc_Madison_Modeling                                            wide
## 12673    UWisc_Madison_Modeling                                        wisc.edu
## 12674    UWisc_Madison_Modeling                                         wrangle
## 12675    UWisc_Madison_Modeling                                           write
## 12676    UWisc_Madison_Modeling                                 www.rstudio.com
## 12677 UWisc_Madison_Programming                                            00am
## 12678 UWisc_Madison_Programming                                             2nd
## 12679 UWisc_Madison_Programming                                             a.m
## 12680 UWisc_Madison_Programming                                              ab
## 12681 UWisc_Madison_Programming                                       abilities
## 12682 UWisc_Madison_Programming                                        absences
## 12683 UWisc_Madison_Programming                                       accessing
## 12684 UWisc_Madison_Programming                                    accommodated
## 12685 UWisc_Madison_Programming                                    accomplishes
## 12686 UWisc_Madison_Programming                                         account
## 12687 UWisc_Madison_Programming                                      achievable
## 12688 UWisc_Madison_Programming                                             act
## 12689 UWisc_Madison_Programming                                          active
## 12690 UWisc_Madison_Programming                                        actively
## 12691 UWisc_Madison_Programming                                       activites
## 12692 UWisc_Madison_Programming                                      activities
## 12693 UWisc_Madison_Programming                                            acts
## 12694 UWisc_Madison_Programming                                             ada
## 12695 UWisc_Madison_Programming                                      additional
## 12696 UWisc_Madison_Programming                                          advice
## 12697 UWisc_Madison_Programming                                           aefis
## 12698 UWisc_Madison_Programming                                          agrees
## 12699 UWisc_Madison_Programming                                       algorithm
## 12700 UWisc_Madison_Programming                                     algorithmic
## 12701 UWisc_Madison_Programming                                           allen
## 12702 UWisc_Madison_Programming                                       allocated
## 12703 UWisc_Madison_Programming                                       alternate
## 12704 UWisc_Madison_Programming                                     alternating
## 12705 UWisc_Madison_Programming                                       americans
## 12706 UWisc_Madison_Programming                                          amount
## 12707 UWisc_Madison_Programming                                       analyzing
## 12708 UWisc_Madison_Programming                                          andrew
## 12709 UWisc_Madison_Programming                                    announcement
## 12710 UWisc_Madison_Programming                                     anonymously
## 12711 UWisc_Madison_Programming                                   approximately
## 12712 UWisc_Madison_Programming                                            arts
## 12713 UWisc_Madison_Programming                                       asisstant
## 12714 UWisc_Madison_Programming                                         aspects
## 12715 UWisc_Madison_Programming                                          assess
## 12716 UWisc_Madison_Programming                                      assessment
## 12717 UWisc_Madison_Programming                                        assigned
## 12718 UWisc_Madison_Programming                                    assignements
## 12719 UWisc_Madison_Programming                                      assistance
## 12720 UWisc_Madison_Programming                                        attempt1
## 12721 UWisc_Madison_Programming                                        attempt2
## 12722 UWisc_Madison_Programming                                      attempting
## 12723 UWisc_Madison_Programming                                        attempts
## 12724 UWisc_Madison_Programming                                      attributes
## 12725 UWisc_Madison_Programming                                        automate
## 12726 UWisc_Madison_Programming                                           avoid
## 12727 UWisc_Madison_Programming                                            b102
## 12728 UWisc_Madison_Programming                                             bad
## 12729 UWisc_Madison_Programming                                            barb
## 12730 UWisc_Madison_Programming                                          bascom
## 12731 UWisc_Madison_Programming                                           basis
## 12732 UWisc_Madison_Programming                                              bc
## 12733 UWisc_Madison_Programming                                       beginning
## 12734 UWisc_Madison_Programming                                            bias
## 12735 UWisc_Madison_Programming                                            book
## 12736 UWisc_Madison_Programming                                          boring
## 12737 UWisc_Madison_Programming                                         breadth
## 12738 UWisc_Madison_Programming                                        breaking
## 12739 UWisc_Madison_Programming                                           build
## 12740 UWisc_Madison_Programming                                           c.f.r
## 12741 UWisc_Madison_Programming                                        calendar
## 12742 UWisc_Madison_Programming                                          campus
## 12743 UWisc_Madison_Programming                                        capstone
## 12744 UWisc_Madison_Programming                                       carefully
## 12745 UWisc_Madison_Programming                                        carnegie
## 12746 UWisc_Madison_Programming                                              cc
## 12747 UWisc_Madison_Programming                                         central
## 12748 UWisc_Madison_Programming                                           cheat
## 12749 UWisc_Madison_Programming                                        choosing
## 12750 UWisc_Madison_Programming                                          chosen
## 12751 UWisc_Madison_Programming                                   circumstances
## 12752 UWisc_Madison_Programming                                        citation
## 12753 UWisc_Madison_Programming                                          clears
## 12754 UWisc_Madison_Programming                                          closer
## 12755 UWisc_Madison_Programming                                         college
## 12756 UWisc_Madison_Programming                                        comments
## 12757 UWisc_Madison_Programming                                     communicate
## 12758 UWisc_Madison_Programming                                            comp
## 12759 UWisc_Madison_Programming                                       complaint
## 12760 UWisc_Madison_Programming                                      complaints
## 12761 UWisc_Madison_Programming                                       completed
## 12762 UWisc_Madison_Programming                                      completely
## 12763 UWisc_Madison_Programming                                      completing
## 12764 UWisc_Madison_Programming                                     complicated
## 12765 UWisc_Madison_Programming                                      components
## 12766 UWisc_Madison_Programming                                      compsci220
## 12767 UWisc_Madison_Programming                                   computational
## 12768 UWisc_Madison_Programming                                       computers
## 12769 UWisc_Madison_Programming                                    confidential
## 12770 UWisc_Madison_Programming                                        conflict
## 12771 UWisc_Madison_Programming                                      consistent
## 12772 UWisc_Madison_Programming                                         context
## 12773 UWisc_Madison_Programming                                        contrast
## 12774 UWisc_Madison_Programming                                   contributions
## 12775 UWisc_Madison_Programming                                          convey
## 12776 UWisc_Madison_Programming                                    coordination
## 12777 UWisc_Madison_Programming                                          copied
## 12778 UWisc_Madison_Programming                                       copyright
## 12779 UWisc_Madison_Programming                                         correct
## 12780 UWisc_Madison_Programming                                          counts
## 12781 UWisc_Madison_Programming                                      coursework
## 12782 UWisc_Madison_Programming                                          create
## 12783 UWisc_Madison_Programming                                         created
## 12784 UWisc_Madison_Programming                                      creativity
## 12785 UWisc_Madison_Programming                                     credentials
## 12786 UWisc_Madison_Programming                                         culture
## 12787 UWisc_Madison_Programming                                      cumulative
## 12788 UWisc_Madison_Programming                                       deadlines
## 12789 UWisc_Madison_Programming                                         dealing
## 12790 UWisc_Madison_Programming                                            dean
## 12791 UWisc_Madison_Programming                                           debug
## 12792 UWisc_Madison_Programming                                         decades
## 12793 UWisc_Madison_Programming                                         decimal
## 12794 UWisc_Madison_Programming                                        declared
## 12795 UWisc_Madison_Programming                                             def
## 12796 UWisc_Madison_Programming                                         defined
## 12797 UWisc_Madison_Programming                                      definition
## 12798 UWisc_Madison_Programming                                    designations
## 12799 UWisc_Madison_Programming                                        detailed
## 12800 UWisc_Madison_Programming                                          detect
## 12801 UWisc_Madison_Programming                                     determining
## 12802 UWisc_Madison_Programming                                       developed
## 12803 UWisc_Madison_Programming                                          devise
## 12804 UWisc_Madison_Programming                                    difficulties
## 12805 UWisc_Madison_Programming                                      directions
## 12806 UWisc_Madison_Programming                                        directly
## 12807 UWisc_Madison_Programming                                      discussion
## 12808 UWisc_Madison_Programming                                         dispute
## 12809 UWisc_Madison_Programming                                        document
## 12810 UWisc_Madison_Programming                                        doescher
## 12811 UWisc_Madison_Programming                                           doubt
## 12812 UWisc_Madison_Programming                                          downey
## 12813 UWisc_Madison_Programming                                         driving
## 12814 UWisc_Madison_Programming                                        dropdown
## 12815 UWisc_Madison_Programming                                           drops
## 12816 UWisc_Madison_Programming                                        duration
## 12817 UWisc_Madison_Programming                                            ease
## 12818 UWisc_Madison_Programming                                            easy
## 12819 UWisc_Madison_Programming                                         edition
## 12820 UWisc_Madison_Programming                                            educ
## 12821 UWisc_Madison_Programming                                          effect
## 12822 UWisc_Madison_Programming                                       efficient
## 12823 UWisc_Madison_Programming                                      elementary
## 12824 UWisc_Madison_Programming                                          emails
## 12825 UWisc_Madison_Programming                                        embedded
## 12826 UWisc_Madison_Programming                                        emphasis
## 12827 UWisc_Madison_Programming                                        engaging
## 12828 UWisc_Madison_Programming                                          enrich
## 12829 UWisc_Madison_Programming                                      enrollment
## 12830 UWisc_Madison_Programming                                        ensuring
## 12831 UWisc_Madison_Programming                                           equal
## 12832 UWisc_Madison_Programming                                      equivalent
## 12833 UWisc_Madison_Programming                                         ericson
## 12834 UWisc_Madison_Programming                                           error
## 12835 UWisc_Madison_Programming                                           essay
## 12836 UWisc_Madison_Programming                                       essential
## 12837 UWisc_Madison_Programming                                        evaluate
## 12838 UWisc_Madison_Programming                                     evaluations
## 12839 UWisc_Madison_Programming                                      excellence
## 12840 UWisc_Madison_Programming                                        exchange
## 12841 UWisc_Madison_Programming                                        existing
## 12842 UWisc_Madison_Programming                                          expect
## 12843 UWisc_Madison_Programming                                         express
## 12844 UWisc_Madison_Programming                                       expulsion
## 12845 UWisc_Madison_Programming                                           extra
## 12846 UWisc_Madison_Programming                                         extreme
## 12847 UWisc_Madison_Programming                                     fabrication
## 12848 UWisc_Madison_Programming                                    facilitating
## 12849 UWisc_Madison_Programming                                            fail
## 12850 UWisc_Madison_Programming                                           fails
## 12851 UWisc_Madison_Programming                                            fair
## 12852 UWisc_Madison_Programming                                            fast
## 12853 UWisc_Madison_Programming                                            feel
## 12854 UWisc_Madison_Programming                                           feels
## 12855 UWisc_Madison_Programming                                           ferpa
## 12856 UWisc_Madison_Programming                                          figure
## 12857 UWisc_Madison_Programming                                           files
## 12858 UWisc_Madison_Programming                                         filling
## 12859 UWisc_Madison_Programming                                             fix
## 12860 UWisc_Madison_Programming                                        flagging
## 12861 UWisc_Madison_Programming                                          format
## 12862 UWisc_Madison_Programming                                           found
## 12863 UWisc_Madison_Programming                                            free
## 12864 UWisc_Madison_Programming                                          friend
## 12865 UWisc_Madison_Programming                                           front
## 12866 UWisc_Madison_Programming                                        fulfills
## 12867 UWisc_Madison_Programming                                       functions
## 12868 UWisc_Madison_Programming                                          future
## 12869 UWisc_Madison_Programming                                          gentle
## 12870 UWisc_Madison_Programming                                            goal
## 12871 UWisc_Madison_Programming                                           goals
## 12872 UWisc_Madison_Programming                                       graphical
## 12873 UWisc_Madison_Programming                                 groups.wisc.edu
## 12874 UWisc_Madison_Programming                                         gurmail
## 12875 UWisc_Madison_Programming                                   gurmail.singh
## 12876 UWisc_Madison_Programming                                          handle
## 12877 UWisc_Madison_Programming                                      harassment
## 12878 UWisc_Madison_Programming                                            hard
## 12879 UWisc_Madison_Programming                                          health
## 12880 UWisc_Madison_Programming                                         hearing
## 12881 UWisc_Madison_Programming                                           helps
## 12882 UWisc_Madison_Programming                                          honest
## 12883 UWisc_Madison_Programming                                       honorlock
## 12884 UWisc_Madison_Programming                                           human
## 12885 UWisc_Madison_Programming                                      humanities
## 12886 UWisc_Madison_Programming                                         ideally
## 12887 UWisc_Madison_Programming                                        identify
## 12888 UWisc_Madison_Programming                                        identity
## 12889 UWisc_Madison_Programming                                         impacts
## 12890 UWisc_Madison_Programming                                       implement
## 12891 UWisc_Madison_Programming                                            inch
## 12892 UWisc_Madison_Programming                                       incidents
## 12893 UWisc_Madison_Programming                                       inclusion
## 12894 UWisc_Madison_Programming                                       inclusive
## 12895 UWisc_Madison_Programming                                      incredible
## 12896 UWisc_Madison_Programming                                        incurred
## 12897 UWisc_Madison_Programming                                    inextricably
## 12898 UWisc_Madison_Programming                                          inform
## 12899 UWisc_Madison_Programming                                         initial
## 12900 UWisc_Madison_Programming                                      innovation
## 12901 UWisc_Madison_Programming                                       instances
## 12902 UWisc_Madison_Programming                                     institution
## 12903 UWisc_Madison_Programming                                        integral
## 12904 UWisc_Madison_Programming                                        internet
## 12905 UWisc_Madison_Programming                                       interpret
## 12906 UWisc_Madison_Programming                                     interpreter
## 12907 UWisc_Madison_Programming                                          invest
## 12908 UWisc_Madison_Programming                                        involves
## 12909 UWisc_Madison_Programming                                        language
## 12910 UWisc_Madison_Programming                                             las
## 12911 UWisc_Madison_Programming                                          leaked
## 12912 UWisc_Madison_Programming                                           learn
## 12913 UWisc_Madison_Programming                                         leaving
## 12914 UWisc_Madison_Programming                                          lec002
## 12915 UWisc_Madison_Programming                                          lec003
## 12916 UWisc_Madison_Programming                                    legitimately
## 12917 UWisc_Madison_Programming                                             len
## 12918 UWisc_Madison_Programming                                          length
## 12919 UWisc_Madison_Programming                                         liberal
## 12920 UWisc_Madison_Programming                                            life
## 12921 UWisc_Madison_Programming                                         limited
## 12922 UWisc_Madison_Programming                                           lines
## 12923 UWisc_Madison_Programming                                          linked
## 12924 UWisc_Madison_Programming                                           local
## 12925 UWisc_Madison_Programming                                             log
## 12926 UWisc_Madison_Programming                                          logged
## 12927 UWisc_Madison_Programming                                            lose
## 12928 UWisc_Madison_Programming                                          losing
## 12929 UWisc_Madison_Programming                                            luck
## 12930 UWisc_Madison_Programming                                            main
## 12931 UWisc_Madison_Programming                                           makes
## 12932 UWisc_Madison_Programming                                      manipulate
## 12933 UWisc_Madison_Programming                                          manual
## 12934 UWisc_Madison_Programming                                        manually
## 12935 UWisc_Madison_Programming                                        matching
## 12936 UWisc_Madison_Programming                                         matters
## 12937 UWisc_Madison_Programming                                         maximum
## 12938 UWisc_Madison_Programming                                       mdoescher
## 12939 UWisc_Madison_Programming                                         meaning
## 12940 UWisc_Madison_Programming                                           meant
## 12941 UWisc_Madison_Programming                                         measure
## 12942 UWisc_Madison_Programming                                         meeting
## 12943 UWisc_Madison_Programming                                        meetings
## 12944 UWisc_Madison_Programming                                           meets
## 12945 UWisc_Madison_Programming                                          mentor
## 12946 UWisc_Madison_Programming                                          merged
## 12947 UWisc_Madison_Programming                                         message
## 12948 UWisc_Madison_Programming                                        messages
## 12949 UWisc_Madison_Programming                                    methodically
## 12950 UWisc_Madison_Programming                                         midterm
## 12951 UWisc_Madison_Programming                                            mike
## 12952 UWisc_Madison_Programming                                      milestones
## 12953 UWisc_Madison_Programming                                         minimum
## 12954 UWisc_Madison_Programming                                miscommunication
## 12955 UWisc_Madison_Programming                                            miss
## 12956 UWisc_Madison_Programming                                         missing
## 12957 UWisc_Madison_Programming                                         mission
## 12958 UWisc_Madison_Programming                                    mistreatment
## 12959 UWisc_Madison_Programming                                        modality
## 12960 UWisc_Madison_Programming                                          monday
## 12961 UWisc_Madison_Programming                                           multi
## 12962 UWisc_Madison_Programming                                         natural
## 12963 UWisc_Madison_Programming                                      negatively
## 12964 UWisc_Madison_Programming                                           netid
## 12965 UWisc_Madison_Programming                                          notice
## 12966 UWisc_Madison_Programming                                          notify
## 12967 UWisc_Madison_Programming                                       numerical
## 12968 UWisc_Madison_Programming                                     observances
## 12969 UWisc_Madison_Programming                                         obvious
## 12970 UWisc_Madison_Programming                                         opinion
## 12971 UWisc_Madison_Programming                                     opportunity
## 12972 UWisc_Madison_Programming                                         options
## 12973 UWisc_Madison_Programming                                        oriented
## 12974 UWisc_Madison_Programming                                        outcomes
## 12975 UWisc_Madison_Programming                                        outreach
## 12976 UWisc_Madison_Programming                                        overview
## 12977 UWisc_Madison_Programming                                             p.m
## 12978 UWisc_Madison_Programming                                              p8
## 12979 UWisc_Madison_Programming                                            page
## 12980 UWisc_Madison_Programming                                            pair
## 12981 UWisc_Madison_Programming                                           pairs
## 12982 UWisc_Madison_Programming                                   participating
## 12983 UWisc_Madison_Programming                                   participation
## 12984 UWisc_Madison_Programming                                       partner's
## 12985 UWisc_Madison_Programming                                     partnership
## 12986 UWisc_Madison_Programming                                         pasting
## 12987 UWisc_Madison_Programming                                            peer
## 12988 UWisc_Madison_Programming                                           peers
## 12989 UWisc_Madison_Programming                                          pencil
## 12990 UWisc_Madison_Programming                                    periodically
## 12991 UWisc_Madison_Programming                                        personal
## 12992 UWisc_Madison_Programming                                         picture
## 12993 UWisc_Madison_Programming                                      plagiarism
## 12994 UWisc_Madison_Programming                                    plagiarizing
## 12995 UWisc_Madison_Programming                                        platform
## 12996 UWisc_Madison_Programming                                     predictable
## 12997 UWisc_Madison_Programming                                       preferred
## 12998 UWisc_Madison_Programming                                    presentation
## 12999 UWisc_Madison_Programming                                        previous
## 13000 UWisc_Madison_Programming                                      previously
## 13001 UWisc_Madison_Programming                                       primarily
## 13002 UWisc_Madison_Programming                                         printed
## 13003 UWisc_Madison_Programming                                        priority
## 13004 UWisc_Madison_Programming                                       probation
## 13005 UWisc_Madison_Programming                                       procedure
## 13006 UWisc_Madison_Programming                                      processing
## 13007 UWisc_Madison_Programming                                    professional
## 13008 UWisc_Madison_Programming                                        profound
## 13009 UWisc_Madison_Programming                                     programmers
## 13010 UWisc_Madison_Programming                                        programs
## 13011 UWisc_Madison_Programming                                          prompt
## 13012 UWisc_Madison_Programming                                           prone
## 13013 UWisc_Madison_Programming                                        proposal
## 13014 UWisc_Madison_Programming                                       protected
## 13015 UWisc_Madison_Programming                                         provide
## 13016 UWisc_Madison_Programming                                          public
## 13017 UWisc_Madison_Programming                                         pursuit
## 13018 UWisc_Madison_Programming                                              qr
## 13019 UWisc_Madison_Programming                                             quo
## 13020 UWisc_Madison_Programming                                           quote
## 13021 UWisc_Madison_Programming                                           range
## 13022 UWisc_Madison_Programming                                          ranges
## 13023 UWisc_Madison_Programming                                         reading
## 13024 UWisc_Madison_Programming                                          recent
## 13025 UWisc_Madison_Programming                                      recognized
## 13026 UWisc_Madison_Programming                                       recommend
## 13027 UWisc_Madison_Programming                                     recommended
## 13028 UWisc_Madison_Programming                                          record
## 13029 UWisc_Madison_Programming                                        recorded
## 13030 UWisc_Madison_Programming                                      recordings
## 13031 UWisc_Madison_Programming                                      references
## 13032 UWisc_Madison_Programming                                         related
## 13033 UWisc_Madison_Programming                                        released
## 13034 UWisc_Madison_Programming                                        relevant
## 13035 UWisc_Madison_Programming                                       religious
## 13036 UWisc_Madison_Programming                                          remind
## 13037 UWisc_Madison_Programming                                          rename
## 13038 UWisc_Madison_Programming                                          report
## 13039 UWisc_Madison_Programming                                       reporting
## 13040 UWisc_Madison_Programming                                      represents
## 13041 UWisc_Madison_Programming                                       reprimand
## 13042 UWisc_Madison_Programming                                         request
## 13043 UWisc_Madison_Programming                                       requested
## 13044 UWisc_Madison_Programming                                    requirements
## 13045 UWisc_Madison_Programming                                      requisites
## 13046 UWisc_Madison_Programming                                        resource
## 13047 UWisc_Madison_Programming                                       resources
## 13048 UWisc_Madison_Programming                                         respect
## 13049 UWisc_Madison_Programming                                        response
## 13050 UWisc_Madison_Programming                                   resubmissions
## 13051 UWisc_Madison_Programming                                       returning
## 13052 UWisc_Madison_Programming                                        reviewer
## 13053 UWisc_Madison_Programming                                         reviews
## 13054 UWisc_Madison_Programming                                        rounding
## 13055 UWisc_Madison_Programming                                           rules
## 13056 UWisc_Madison_Programming                                             s23
## 13057 UWisc_Madison_Programming                                       satisfied
## 13058 UWisc_Madison_Programming                                           score
## 13059 UWisc_Madison_Programming                                          screen
## 13060 UWisc_Madison_Programming                                          search
## 13061 UWisc_Madison_Programming                                            send
## 13062 UWisc_Madison_Programming                                        separate
## 13063 UWisc_Madison_Programming                                           serve
## 13064 UWisc_Madison_Programming                                          server
## 13065 UWisc_Madison_Programming                                         service
## 13066 UWisc_Madison_Programming                                             set
## 13067 UWisc_Madison_Programming                                           sheet
## 13068 UWisc_Madison_Programming                                           short
## 13069 UWisc_Madison_Programming                                         shuffle
## 13070 UWisc_Madison_Programming                                         similar
## 13071 UWisc_Madison_Programming                                    similarities
## 13072 UWisc_Madison_Programming                                          simple
## 13073 UWisc_Madison_Programming                                           singh
## 13074 UWisc_Madison_Programming                                         sitting
## 13075 UWisc_Madison_Programming                                           skill
## 13076 UWisc_Madison_Programming                                        solution
## 13077 UWisc_Madison_Programming                                          sorted
## 13078 UWisc_Madison_Programming                                          source
## 13079 UWisc_Madison_Programming                                         sources
## 13080 UWisc_Madison_Programming                                         special
## 13081 UWisc_Madison_Programming                                           split
## 13082 UWisc_Madison_Programming                                   stackoverflow
## 13083 UWisc_Madison_Programming                                       standards
## 13084 UWisc_Madison_Programming                                           start
## 13085 UWisc_Madison_Programming                                          stated
## 13086 UWisc_Madison_Programming                                      statements
## 13087 UWisc_Madison_Programming                                         statute
## 13088 UWisc_Madison_Programming                                        stealing
## 13089 UWisc_Madison_Programming                                            step
## 13090 UWisc_Madison_Programming                                           steps
## 13091 UWisc_Madison_Programming                                        sterling
## 13092 UWisc_Madison_Programming                                        strength
## 13093 UWisc_Madison_Programming                                           stuff
## 13094 UWisc_Madison_Programming                                           style
## 13095 UWisc_Madison_Programming                                      submitting
## 13096 UWisc_Madison_Programming                                          subtle
## 13097 UWisc_Madison_Programming                                      sufficient
## 13098 UWisc_Madison_Programming                                        supports
## 13099 UWisc_Madison_Programming                                         suppose
## 13100 UWisc_Madison_Programming                                          survey
## 13101 UWisc_Madison_Programming                                      suspension
## 13102 UWisc_Madison_Programming                                        sweigart
## 13103 UWisc_Madison_Programming                                        symbolic
## 13104 UWisc_Madison_Programming                                            talk
## 13105 UWisc_Madison_Programming                                             tas
## 13106 UWisc_Madison_Programming                                       technical
## 13107 UWisc_Madison_Programming                                      techniques
## 13108 UWisc_Madison_Programming                                    technologies
## 13109 UWisc_Madison_Programming                                     terminology
## 13110 UWisc_Madison_Programming                                         test.py
## 13111 UWisc_Madison_Programming                                      thresholds
## 13112 UWisc_Madison_Programming                                            tips
## 13113 UWisc_Madison_Programming                                          topics
## 13114 UWisc_Madison_Programming                                     transparent
## 13115 UWisc_Madison_Programming                                         treated
## 13116 UWisc_Madison_Programming                                            type
## 13117 UWisc_Madison_Programming                                       typically
## 13118 UWisc_Madison_Programming                                          unable
## 13119 UWisc_Madison_Programming                                    unauthorized
## 13120 UWisc_Madison_Programming                                      understand
## 13121 UWisc_Madison_Programming                                   understanding
## 13122 UWisc_Madison_Programming                                        unfairly
## 13123 UWisc_Madison_Programming                                       unforseen
## 13124 UWisc_Madison_Programming                                          uphold
## 13125 UWisc_Madison_Programming                                       uploading
## 13126 UWisc_Madison_Programming                                         utilize
## 13127 UWisc_Madison_Programming                                             van
## 13128 UWisc_Madison_Programming                                       variables
## 13129 UWisc_Madison_Programming                                         variety
## 13130 UWisc_Madison_Programming                                          verbal
## 13131 UWisc_Madison_Programming                                        versions
## 13132 UWisc_Madison_Programming                                          virtue
## 13133 UWisc_Madison_Programming                                            visa
## 13134 UWisc_Madison_Programming                                           visit
## 13135 UWisc_Madison_Programming                                          visual
## 13136 UWisc_Madison_Programming                                           vleck
## 13137 UWisc_Madison_Programming                                           voice
## 13138 UWisc_Madison_Programming                                            walk
## 13139 UWisc_Madison_Programming                                         website
## 13140 UWisc_Madison_Programming                                       wednesday
## 13141 UWisc_Madison_Programming                                          week's
## 13142 UWisc_Madison_Programming                                       welcoming
## 13143 UWisc_Madison_Programming                                      worksheets
## 13144 UWisc_Madison_Programming                                           world
## 13145 UWisc_Madison_Programming                                 www.cs.wisc.edu
## 13146                UWisconsin                                     012802044x4
## 13147                UWisconsin                                           1,2,4
## 13148                UWisconsin                                      111866146x
## 13149                UWisconsin                                      142218725x
## 13150                UWisconsin                                            21st
## 13151                UWisconsin                                            2of7
## 13152                UWisconsin                                         3bb603b
## 13153                UWisconsin                                             3nf
## 13154                UWisconsin                                            3oct
## 13155                UWisconsin                                            4oct
## 13156                UWisconsin                                             4th
## 13157                UWisconsin                                            6due
## 13158                UWisconsin                                            6of7
## 13159                UWisconsin                                   700ma171sec01
## 13160                UWisconsin                                            777x
## 13161                UWisconsin                                   81_01_rubrics
## 13162                UWisconsin                                            8due
## 13163                UWisconsin                                          ______
## 13164                UWisconsin                                       _________
## 13165                UWisconsin                                        accepted
## 13166                UWisconsin                                   accommodation
## 13167                UWisconsin                                   accomodations
## 13168                UWisconsin                                    accompanying
## 13169                UWisconsin                                            acts
## 13170                UWisconsin                                            adam
## 13171                UWisconsin                                             add
## 13172                UWisconsin                                         allowed
## 13173                UWisconsin                                        allowing
## 13174                UWisconsin                                       americans
## 13175                UWisconsin                                      analytical
## 13176                UWisconsin                                       analytlcs
## 13177                UWisconsin                                       anonymity
## 13178                UWisconsin                                    appreciation
## 13179                UWisconsin                                        approved
## 13180                UWisconsin                                           arima
## 13181                UWisconsin                                      assessment
## 13182                UWisconsin                                        assigned
## 13183                UWisconsin                                   automatically
## 13184                UWisconsin                                          bab266
## 13185                UWisconsin                                        backends
## 13186                UWisconsin                                          battle
## 13187                UWisconsin                                           begin
## 13188                UWisconsin                                       beginning
## 13189                UWisconsin                                             ben
## 13190                UWisconsin                                           books
## 13191                UWisconsin                                         busecon
## 13192                UWisconsin                                            butz
## 13193                UWisconsin                                          buying
## 13194                UWisconsin                                          campus
## 13195                UWisconsin                                          center
## 13196                UWisconsin                                         central
## 13197                UWisconsin                                         century
## 13198                UWisconsin                                          chance
## 13199                UWisconsin                                          change
## 13200                UWisconsin                                        cheating
## 13201                UWisconsin                                           check
## 13202                UWisconsin                                          choose
## 13203                UWisconsin                                  clarifications
## 13204                UWisconsin                                       claypoole
## 13205                UWisconsin                                           click
## 13206                UWisconsin                                           cloud
## 13207                UWisconsin                                          clouds
## 13208                UWisconsin                                         cluster
## 13209                UWisconsin                                      clustering
## 13210                UWisconsin                                       committed
## 13211                UWisconsin                                        commonly
## 13212                UWisconsin                                     communicate
## 13213                UWisconsin                                         company
## 13214                UWisconsin                                      comparison
## 13215                UWisconsin                                    competencies
## 13216                UWisconsin                                       competing
## 13217                UWisconsin                                       completed
## 13218                UWisconsin                                      compliance
## 13219                UWisconsin                                      components
## 13220                UWisconsin                                         concept
## 13221                UWisconsin                                      concluding
## 13222                UWisconsin                                     conditional
## 13223                UWisconsin                                         contact
## 13224                UWisconsin                                      contribute
## 13225                UWisconsin                                    contribution
## 13226                UWisconsin                                            copy
## 13227                UWisconsin                                           count
## 13228                UWisconsin                                          counts
## 13229                UWisconsin                                         courses
## 13230                UWisconsin                                      coursework
## 13231                UWisconsin                                           cover
## 13232                UWisconsin                                        covering
## 13233                UWisconsin                                          credit
## 13234                UWisconsin                                        criteria
## 13235                UWisconsin                                              cu
## 13236                UWisconsin                                          cukier
## 13237                UWisconsin                                       customers
## 13238                UWisconsin                                              d2
## 13239                UWisconsin                                    d2isessionva
## 13240                UWisconsin                                             dan
## 13241                UWisconsin                                        database
## 13242                UWisconsin                                           davit
## 13243                UWisconsin                                             ddl
## 13244                UWisconsin                                       defending
## 13245                UWisconsin                                     definitions
## 13246                UWisconsin                                        delivery
## 13247                UWisconsin                                        designed
## 13248                UWisconsin                                       designing
## 13249                UWisconsin                                         desktop
## 13250                UWisconsin                                   determination
## 13251                UWisconsin                                       devenport
## 13252                UWisconsin                                    disciplinary
## 13253                UWisconsin                                    discussion's
## 13254                UWisconsin                                     discussion_
## 13255                UWisconsin                                      dishonesty
## 13256                UWisconsin                                      disrupting
## 13257                UWisconsin                                        document
## 13258                UWisconsin                                      documented
## 13259                UWisconsin                                              dr
## 13260                UWisconsin                                           ds700
## 13261                UWisconsin                                          easily
## 13262                UWisconsin                                       ecosystem
## 13263                UWisconsin                                       education
## 13264                UWisconsin                                       effective
## 13265                UWisconsin                                   effectiveness
## 13266                UWisconsin                                     eligibility
## 13267                UWisconsin                                             eng
## 13268                UWisconsin                                          engage
## 13269                UWisconsin                                     environment
## 13270                UWisconsin                                    environments
## 13271                UWisconsin                                         ethical
## 13272                UWisconsin                                       evaluated
## 13273                UWisconsin                                     examination
## 13274                UWisconsin                                    examlnations
## 13275                UWisconsin                                      experience
## 13276                UWisconsin                                         explore
## 13277                UWisconsin                                       extension
## 13278                UWisconsin                                         extreme
## 13279                UWisconsin                              facultylnbutz.aspx
## 13280                UWisconsin                                            fail
## 13281                UWisconsin                                         failing
## 13282                UWisconsin                                          family
## 13283                UWisconsin                                        findings
## 13284                UWisconsin                                          finish
## 13285                UWisconsin                                          follow
## 13286                UWisconsin                                         foreman
## 13287                UWisconsin                                           forta
## 13288                UWisconsin                                     foundations
## 13289                UWisconsin                                          fourth
## 13290                UWisconsin                                            free
## 13291                UWisconsin                                     fundamental
## 13292                UWisconsin                                            gain
## 13293                UWisconsin                                         ggplot2
## 13294                UWisconsin                                        graphics
## 13295                UWisconsin                                          growth
## 13296                UWisconsin                                        guidance
## 13297                UWisconsin                                      guidelines
## 13298                UWisconsin                                  guldefines.pdf
## 13299                UWisconsin                                           hardy
## 13300                UWisconsin                                          harris
## 13301                UWisconsin                                         hbr.org
## 13302                UWisconsin                                      healthcare
## 13303                UWisconsin                                      highlights
## 13304                UWisconsin                                            home
## 13305                UWisconsin                                              il
## 13306                UWisconsin                                             ill
## 13307                UWisconsin                                     immediately
## 13308                UWisconsin                                  implementation
## 13309                UWisconsin                                      importance
## 13310                UWisconsin                                       improving
## 13311                UWisconsin                                         include
## 13312                UWisconsin                                        includes
## 13313                UWisconsin                                          income
## 13314                UWisconsin                                        incoming
## 13315                UWisconsin                                      incomplete
## 13316                UWisconsin                                         indexes
## 13317                UWisconsin                                      individual
## 13318                UWisconsin                                      influenced
## 13319                UWisconsin                                         initial
## 13320                UWisconsin                                        initiate
## 13321                UWisconsin                                           inmon
## 13322                UWisconsin                                     instructors
## 13323                UWisconsin                                        internet
## 13324                UWisconsin                                          issues
## 13325                UWisconsin                                            item
## 13326                UWisconsin                                          jeanne
## 13327                UWisconsin                                              jl
## 13328                UWisconsin                                             job
## 13329                UWisconsin                                            join
## 13330                UWisconsin                                        judgment
## 13331                UWisconsin                                        kabacoff
## 13332                UWisconsin                                        kaufmann
## 13333                UWisconsin                                     khachatryan
## 13334                UWisconsin                                            kier
## 13335                UWisconsin                                           kinds
## 13336                UWisconsin                                         kothari
## 13337                UWisconsin                                            kunk
## 13338                UWisconsin                                             lay
## 13339                UWisconsin                                      lcontenvds
## 13340                UWisconsin                                            ld2l
## 13341                UWisconsin                                          linked
## 13342                UWisconsin                                        linstedt
## 13343                UWisconsin                                            list
## 13344                UWisconsin                                     littlefield
## 13345                UWisconsin                                     lncompletes
## 13346                UWisconsin                                       logistics
## 13347                UWisconsin                                           loops
## 13348                UWisconsin                                             lpj
## 13349                UWisconsin                                           m_ore
## 13350                UWisconsin                                    mailto:nbutz
## 13351                UWisconsin                                        maintain
## 13352                UWisconsin                                          manage
## 13353                UWisconsin                                         mapping
## 13354                UWisconsin                                         mastery
## 13355                UWisconsin                                       materials
## 13356                UWisconsin                                         message
## 13357                UWisconsin                                   mhlxqxeuqr86l
## 13358                UWisconsin                                       microsoft
## 13359                UWisconsin                                        mistakes
## 13360                UWisconsin                                          misuse
## 13361                UWisconsin                                           model
## 13362                UWisconsin                                        modeling
## 13363                UWisconsin                                          monday
## 13364                UWisconsin                                          morgan
## 13365                UWisconsin                                         morison
## 13366                UWisconsin                                           mount
## 13367                UWisconsin                                          nature
## 13368                UWisconsin                                           nbutz
## 13369                UWisconsin                                    necessitates
## 13370                UWisconsin                                            neha
## 13371                UWisconsin                                        nikolaus
## 13372                UWisconsin                                            nina
## 13373                UWisconsin                                          norton
## 13374                UWisconsin                                            note
## 13375                UWisconsin                                      objectives
## 13376                UWisconsin                                             ode
## 13377                UWisconsin                                       offerings
## 13378                UWisconsin                                        oibfz501
## 13379                UWisconsin                                          online
## 13380                UWisconsin                                      operations
## 13381                UWisconsin                                     opportunity
## 13382                UWisconsin                                   organizations
## 13383                UWisconsin                                          origin
## 13384                UWisconsin                                        original
## 13385                UWisconsin                                        outlined
## 13386                UWisconsin                                             p.m
## 13387                UWisconsin                                            page
## 13388                UWisconsin                                         partial
## 13389                UWisconsin                                          payton
## 13390                UWisconsin                                        personal
## 13391                UWisconsin                                           phone
## 13392                UWisconsin                                          piazza
## 13393                UWisconsin                                          pillay
## 13394                UWisconsin                                              pj
## 13395                UWisconsin                                    plagiarizing
## 13396                UWisconsin                                           plots
## 13397                UWisconsin                                          posted
## 13398                UWisconsin                                      powerpoint
## 13399                UWisconsin                                       preferred
## 13400                UWisconsin                                        pregnant
## 13401                UWisconsin                                     preparation
## 13402                UWisconsin                                      previously
## 13403                UWisconsin                                           prior
## 13404                UWisconsin                                       proactive
## 13405                UWisconsin                                      processing
## 13406                UWisconsin                                         product
## 13407                UWisconsin                                    professional
## 13408                UWisconsin                                         profile
## 13409                UWisconsin                                     programming
## 13410                UWisconsin                                      properties
## 13411                UWisconsin                                      protecting
## 13412                UWisconsin                                    publications
## 13413                UWisconsin                                      publishers
## 13414                UWisconsin                                      publishing
## 13415                UWisconsin                                            quic
## 13416                UWisconsin                                   quicklink.d2i
## 13417                UWisconsin                                           rcode
## 13418                UWisconsin                                            rdue
## 13419                UWisconsin                                     recognizing
## 13420                UWisconsin                                  rehabilitation
## 13421                UWisconsin                                       remaining
## 13422                UWisconsin                                         remarks
## 13423                UWisconsin                                         replies
## 13424                UWisconsin                                         reprint
## 13425                UWisconsin                                      requesting
## 13426                UWisconsin                                    requirements
## 13427                UWisconsin                                        requires
## 13428                UWisconsin                                        reserves
## 13429                UWisconsin                                       reserves_
## 13430                UWisconsin                                        resource
## 13431                UWisconsin                                       responses
## 13432                UWisconsin                                          result
## 13433                UWisconsin                                        retrieve
## 13434                UWisconsin                                          rights
## 13435                UWisconsin                                            rise
## 13436                UWisconsin                                            risk
## 13437                UWisconsin                                          rowman
## 13438                UWisconsin                                            sasi
## 13439                UWisconsin                                           scale
## 13440                UWisconsin                                        schedule
## 13441                UWisconsin                                        sciences
## 13442                UWisconsin                                     sciencewith
## 13443                UWisconsin                                        sections
## 13444                UWisconsin                                        security
## 13445                UWisconsin                                            seek
## 13446                UWisconsin                                        semester
## 13447                UWisconsin                                          senior
## 13448                UWisconsin                                         sexiest
## 13449                UWisconsin                                           share
## 13450                UWisconsin                                          social
## 13451                UWisconsin                                           solve
## 13452                UWisconsin                                    spreadsheets
## 13453                UWisconsin                                       staggered
## 13454                UWisconsin                                       standards
## 13455                UWisconsin                                       statement
## 13456                UWisconsin                                      statisllcs
## 13457                UWisconsin                                         staying
## 13458                UWisconsin                                           steps
## 13459                UWisconsin                                         stevens
## 13460                UWisconsin                                      stipulated
## 13461                UWisconsin                                       strengths
## 13462                UWisconsin                                        strongly
## 13463                UWisconsin                                      submission
## 13464                UWisconsin                                       submitted
## 13465                UWisconsin                                        subtract
## 13466                UWisconsin                                         summary
## 13467                UWisconsin                                          sunday
## 13468                UWisconsin                                          survey
## 13469                UWisconsin                                         surveys
## 13470                UWisconsin                                          syntax
## 13471                UWisconsin                                          system
## 13472                UWisconsin                                          target
## 13473                UWisconsin                                        teamwork
## 13474                UWisconsin                                       technical
## 13475                UWisconsin                                    technologies
## 13476                UWisconsin                                             ted
## 13477                UWisconsin                                           terms
## 13478                UWisconsin                                         theresa
## 13479                UWisconsin                                         threats
## 13480                UWisconsin                                           timed
## 13481                UWisconsin                                           times
## 13482                UWisconsin                                             tom
## 13483                UWisconsin                                            tool
## 13484                UWisconsin                                             top
## 13485                UWisconsin                                           total
## 13486                UWisconsin                                            tour
## 13487                UWisconsin                        tquicklinklquicklink.d2i
## 13488                UWisconsin                                        triggers
## 13489                UWisconsin                                      turnaround
## 13490                UWisconsin                                      understand
## 13491                UWisconsin                                             unf
## 13492                UWisconsin                                      uniqueness
## 13493                UWisconsin                                         unusual
## 13494                UWisconsin                                              uw
## 13495                UWisconsin                        uwconaborativestorelhome
## 13496                UWisconsin                                             uws
## 13497                UWisconsin                                            uws1
## 13498                UWisconsin                                      validation
## 13499                UWisconsin                                         variety
## 13500                UWisconsin                                           vault
## 13501                UWisconsin                                         virtual
## 13502                UWisconsin                                           visit
## 13503                UWisconsin                                          volume
## 13504                UWisconsin                                       warehouse
## 13505                UWisconsin                                      weaknesses
## 13506                UWisconsin                                            week
## 13507                UWisconsin                                          weekly
## 13508                UWisconsin                                            whee
## 13509                UWisconsin                                         wheelan
## 13510                UWisconsin                                           wiley
## 13511                UWisconsin                                       wisconsin
## 13512                UWisconsin                                           world
## 13513                UWisconsin                                   www.bkstr.com
## 13514                UWisconsin                                    www.uwsp.edu
## 13515                UWisconsin                                           zumel
## 13516                   UZurich                                        accuracy
## 13517                   UZurich                                          action
## 13518                   UZurich                                          active
## 13519                   UZurich                                          adding
## 13520                   UZurich                                        addition
## 13521                   UZurich                                       advantage
## 13522                   UZurich                                     application
## 13523                   UZurich                                           apply
## 13524                   UZurich                                        approach
## 13525                   UZurich                                   approximation
## 13526                   UZurich                                         aspects
## 13527                   UZurich                                        aurélien
## 13528                   UZurich                                         authors
## 13529                   UZurich                                       automatic
## 13530                   UZurich                                           avoid
## 13531                   UZurich                                 backpropagation
## 13532                   UZurich                                    backtracking
## 13533                   UZurich                                        backward
## 13534                   UZurich                                           balls
## 13535                   UZurich                                          basics
## 13536                   UZurich                                           batch
## 13537                   UZurich                                          bengio
## 13538                   UZurich                                       bernoulli
## 13539                   UZurich                                          biases
## 13540                   UZurich                                          binary
## 13541                   UZurich                                        binomial
## 13542                   UZurich                                          bishop
## 13543                   UZurich                                            boyd
## 13544                   UZurich                                         breiman
## 13545                   UZurich                                           build
## 13546                   UZurich                                            buzz
## 13547                   UZurich                                       cambridge
## 13548                   UZurich                                           chain
## 13549                   UZurich                                  characteristic
## 13550                   UZurich                                          choose
## 13551                   UZurich                                         classes
## 13552                   UZurich                                      classifier
## 13553                   UZurich                                     coefficient
## 13554                   UZurich                                   collaborative
## 13555                   UZurich                                          common
## 13556                   UZurich                                      comparison
## 13557                   UZurich                                      complexity
## 13558                   UZurich                                      components
## 13559                   UZurich                                     computation
## 13560                   UZurich                                       computing
## 13561                   UZurich                                         concern
## 13562                   UZurich                                     conditional
## 13563                   UZurich                                            cone
## 13564                   UZurich                                         consult
## 13565                   UZurich                                         contact
## 13566                   UZurich                                     convolution
## 13567                   UZurich                                      correcting
## 13568                   UZurich                                     correlation
## 13569                   UZurich                                         courses
## 13570                   UZurich                                       courville
## 13571                   UZurich                                      covariance
## 13572                   UZurich                                        critical
## 13573                   UZurich                                        cultures
## 13574                   UZurich                                    definiteness
## 13575                   UZurich                                      department
## 13576                   UZurich                                     derivatives
## 13577                   UZurich                                        deriving
## 13578                   UZurich                                          design
## 13579                   UZurich                                       detecting
## 13580                   UZurich                                       detection
## 13581                   UZurich                                      developing
## 13582                   UZurich                                       deviation
## 13583                   UZurich                                  differentiable
## 13584                   UZurich                                 differentiating
## 13585                   UZurich                                    difficulties
## 13586                   UZurich                                          digits
## 13587                   UZurich                                      dimensions
## 13588                   UZurich                                       direction
## 13589                   UZurich                                        discrete
## 13590                   UZurich                                  disctributions
## 13591                   UZurich                                   dissimilarity
## 13592                   UZurich                                    distribution
## 13593                   UZurich                                   distributions
## 13594                   UZurich                                        download
## 13595                   UZurich                                         dropout
## 13596                   UZurich                                           dying
## 13597                   UZurich                                          effect
## 13598                   UZurich                                      eigenfaces
## 13599                   UZurich                                     eigenvalues
## 13600                   UZurich                                    eigenvectors
## 13601                   UZurich                                         elastic
## 13602                   UZurich                                        elements
## 13603                   UZurich                                        embedded
## 13604                   UZurich                                        encoding
## 13605                   UZurich                                     engineering
## 13606                   UZurich                                         entropy
## 13607                   UZurich                                       equations
## 13608                   UZurich                                       estimates
## 13609                   UZurich                                      estimation
## 13610                   UZurich                                       euclidean
## 13611                   UZurich                                       evolution
## 13612                   UZurich                                            exam
## 13613                   UZurich                                     expectation
## 13614                   UZurich                                     expressions
## 13615                   UZurich                                         extrema
## 13616                   UZurich                                     familiarity
## 13617                   UZurich                                          filter
## 13618                   UZurich                                       filtering
## 13619                   UZurich                                         filters
## 13620                   UZurich                                        flavours
## 13621                   UZurich                                            fold
## 13622                   UZurich                                         formats
## 13623                   UZurich                                           found
## 13624                   UZurich                                            free
## 13625                   UZurich                                        friedman
## 13626                   UZurich                                        function
## 13627                   UZurich                                          future
## 13628                   UZurich                                  generalisation
## 13629                   UZurich                                       ggradient
## 13630                   UZurich                                            goal
## 13631                   UZurich                                      goodfellow
## 13632                   UZurich                                       gradients
## 13633                   UZurich                                       gradually
## 13634                   UZurich                                            grid
## 13635                   UZurich                                           géron
## 13636                   UZurich                                           hacks
## 13637                   UZurich                                           hands
## 13638                   UZurich                                     handwritten
## 13639                   UZurich                                          hastie
## 13640                   UZurich                                    hierarchical
## 13641                   UZurich                                            home
## 13642                   UZurich                                             hot
## 13643                   UZurich                                           house
## 13644                   UZurich                                  hyperparameter
## 13645                   UZurich                                 hyperparameters
## 13646                   UZurich                                           image
## 13647                   UZurich                                        increase
## 13648                   UZurich                                    inequalities
## 13649                   UZurich                                     informatics
## 13650                   UZurich                                     information
## 13651                   UZurich                                    initialising
## 13652                   UZurich                                           input
## 13653                   UZurich                                     intelligent
## 13654                   UZurich                                      introduces
## 13655                   UZurich                                    introductory
## 13656                   UZurich                                       iterative
## 13657                   UZurich                                     iteratively
## 13658                   UZurich                                        jacobian
## 13659                   UZurich                                           joint
## 13660                   UZurich                                          kaggle
## 13661                   UZurich                                          karush
## 13662                   UZurich                                           keras
## 13663                   UZurich                                            kuhn
## 13664                   UZurich                                           label
## 13665                   UZurich                                        lagrange
## 13666                   UZurich                                      lagrangian
## 13667                   UZurich                                       languages
## 13668                   UZurich                                          latent
## 13669                   UZurich                                          layers
## 13670                   UZurich                                           leaky
## 13671                   UZurich                                    learderboard
## 13672                   UZurich                                         lecture
## 13673                   UZurich                                        lectures
## 13674                   UZurich                                            line
## 13675                   UZurich                                        linearly
## 13676                   UZurich                                           lines
## 13677                   UZurich                                         linkage
## 13678                   UZurich                                           major
## 13679                   UZurich                                          margin
## 13680                   UZurich                                        material
## 13681                   UZurich                                           means
## 13682                   UZurich                                       measuring
## 13683                   UZurich                                           media
## 13684                   UZurich                                          mercer
## 13685                   UZurich                                            mini
## 13686                   UZurich                                      minimising
## 13687                   UZurich                                           minor
## 13688                   UZurich                                         missing
## 13689                   UZurich                                           mnist
## 13690                   UZurich                                      motivation
## 13691                   UZurich                                             msc
## 13692                   UZurich                                multidimensional
## 13693                   UZurich                                        multiple
## 13694                   UZurich                                     multipliers
## 13695                   UZurich                                          murphy
## 13696                   UZurich                                          mutual
## 13697                   UZurich                                           naïve
## 13698                   UZurich                                             net
## 13699                   UZurich                                            nets
## 13700                   UZurich                                          newton
## 13701                   UZurich                                        newton's
## 13702                   UZurich                                         nielsen
## 13703                   UZurich                                            norm
## 13704                   UZurich                                          normal
## 13705                   UZurich                                           norms
## 13706                   UZurich                                        notation
## 13707                   UZurich                                        notebook
## 13708                   UZurich                                       notebooks
## 13709                   UZurich                                        o'reilly
## 13710                   UZurich                                          object
## 13711                   UZurich                                           occur
## 13712                   UZurich                                          online
## 13713                   UZurich                                       operating
## 13714                   UZurich                                      operations
## 13715                   UZurich                                        operator
## 13716                   UZurich                                          optima
## 13717                   UZurich                                         optimal
## 13718                   UZurich                                      optimality
## 13719                   UZurich                                      optimising
## 13720                   UZurich                                    optimization
## 13721                   UZurich                                         origins
## 13722                   UZurich                                        outcomes
## 13723                   UZurich                                        outliers
## 13724                   UZurich                                       outlliers
## 13725                   UZurich                                        overview
## 13726                   UZurich                                            page
## 13727                   UZurich                                       parameter
## 13728                   UZurich                                       paramters
## 13729                   UZurich                                         partial
## 13730                   UZurich                                             pca
## 13731                   UZurich                                         pearson
## 13732                   UZurich                                     perceptrons
## 13733                   UZurich                                     performance
## 13734                   UZurich                                     perspective
## 13735                   UZurich                                             phd
## 13736                   UZurich                                       polyhedra
## 13737                   UZurich                                         pooling
## 13738                   UZurich                                        positive
## 13739                   UZurich                                      predicting
## 13740                   UZurich                                          prefer
## 13741                   UZurich                                         premise
## 13742                   UZurich                                     preparation
## 13743                   UZurich                                   prerequisites
## 13744                   UZurich                                        presence
## 13745                   UZurich                                           price
## 13746                   UZurich                                          primal
## 13747                   UZurich                                   probabilities
## 13748                   UZurich                                         product
## 13749                   UZurich                                       projected
## 13750                   UZurich                                           proof
## 13751                   UZurich                                      protection
## 13752                   UZurich                                         proving
## 13753                   UZurich                                             psd
## 13754                   UZurich                                   quadratically
## 13755                   UZurich                                          radial
## 13756                   UZurich                                          random
## 13757                   UZurich                                           range
## 13758                   UZurich                                         reading
## 13759                   UZurich                                            real
## 13760                   UZurich                                        receiver
## 13761                   UZurich                                     recognition
## 13762                   UZurich                                       rectified
## 13763                   UZurich                                          reduce
## 13764                   UZurich                                   reinforcement
## 13765                   UZurich                                   relationships
## 13766                   UZurich                                       represent
## 13767                   UZurich                                         require
## 13768                   UZurich                                            rest
## 13769                   UZurich                                           rsita
## 13770                   UZurich                                      saturation
## 13771                   UZurich                                         scaling
## 13772                   UZurich                                        semantic
## 13773                   UZurich                                     sensitivity
## 13774                   UZurich                                       separable
## 13775                   UZurich                                         session
## 13776                   UZurich                                       shrinkage
## 13777                   UZurich                                         sigmoid
## 13778                   UZurich                                           sitas
## 13779                   UZurich                                            site
## 13780                   UZurich                                            size
## 13781                   UZurich                                        solution
## 13782                   UZurich                                          spaces
## 13783                   UZurich                                     specificity
## 13784                   UZurich                                        spectral
## 13785                   UZurich                                        standard
## 13786                   UZurich                                       statement
## 13787                   UZurich                                     statistical
## 13788                   UZurich                                      statistics
## 13789                   UZurich                                        steepest
## 13790                   UZurich                                            step
## 13791                   UZurich                                        stepwise
## 13792                   UZurich                                      stochastic
## 13793                   UZurich                                        stopping
## 13794                   UZurich                                      strengthen
## 13795                   UZurich                                          string
## 13796                   UZurich                                        studying
## 13797                   UZurich                                   supplementary
## 13798                   UZurich                                             svm
## 13799                   UZurich                                          target
## 13800                   UZurich                                          taught
## 13801                   UZurich                                          taylor
## 13802                   UZurich                                        teaching
## 13803                   UZurich                                         testing
## 13804                   UZurich                                         theorem
## 13805                   UZurich                                     theoretical
## 13806                   UZurich                                      tibshirani
## 13807                   UZurich                                           tools
## 13808                   UZurich                                          topics
## 13809                   UZurich                                        tradeoff
## 13810                   UZurich                                    transforming
## 13811                   UZurich                                           trick
## 13812                   UZurich                                          tucker
## 13813                   UZurich                                           tukey
## 13814                   UZurich                                        underpin
## 13815                   UZurich                                             uzh
## 13816                   UZurich                                    vandenberghe
## 13817                   UZurich                                       vanishing
## 13818                   UZurich                                           views
## 13819                   UZurich                                          wealth
## 13820                   UZurich                                             web
## 13821                   UZurich                                        weighted
## 13822                   UZurich                                           world
## 13823                   UZurich                                         wrapper
## 13824                   UZurich                                         written
## 13825                   UZurich                                          zurich
## 13826                   UZurich                                          zürich
## 13827                   UZurich                                       zürichuzh
## 13828            UniSys_Georgia                                        accuracy
## 13829            UniSys_Georgia                                        accurate
## 13830            UniSys_Georgia                                     acknowledge
## 13831            UniSys_Georgia                                      actionable
## 13832            UniSys_Georgia                                       addresses
## 13833            UniSys_Georgia                                        adhikari
## 13834            UniSys_Georgia                                             ani
## 13835            UniSys_Georgia                                         anomaly
## 13836            UniSys_Georgia                                     application
## 13837            UniSys_Georgia                                   appropriately
## 13838            UniSys_Georgia                                 appropriateness
## 13839            UniSys_Georgia                                          arrays
## 13840            UniSys_Georgia                                         aspects
## 13841            UniSys_Georgia                                       assessing
## 13842            UniSys_Georgia                                    associations
## 13843            UniSys_Georgia                                         bagging
## 13844            UniSys_Georgia                                          basket
## 13845            UniSys_Georgia                                        berkeley
## 13846            UniSys_Georgia                                       bivariate
## 13847            UniSys_Georgia                                      california
## 13848            UniSys_Georgia                                       causality
## 13849            UniSys_Georgia                                         central
## 13850            UniSys_Georgia                                          chance
## 13851            UniSys_Georgia                                          charts
## 13852            UniSys_Georgia                                  classification
## 13853            UniSys_Georgia                                      clustering
## 13854            UniSys_Georgia                                         collect
## 13855            UniSys_Georgia                                      collection
## 13856            UniSys_Georgia                                   communication
## 13857            UniSys_Georgia                                      completing
## 13858            UniSys_Georgia                                   computational
## 13859            UniSys_Georgia                                         concise
## 13860            UniSys_Georgia                                     conclusions
## 13861            UniSys_Georgia                                      confidence
## 13862            UniSys_Georgia                                    consequences
## 13863            UniSys_Georgia                                      converting
## 13864            UniSys_Georgia                                     correlation
## 13865            UniSys_Georgia                                            cost
## 13866            UniSys_Georgia                                          credit
## 13867            UniSys_Georgia                                       decisions
## 13868            UniSys_Georgia                                          denero
## 13869            UniSys_Georgia                                     description
## 13870            UniSys_Georgia                                     descriptive
## 13871            UniSys_Georgia                                       detection
## 13872            UniSys_Georgia                                   differentiate
## 13873            UniSys_Georgia                                            draw
## 13874            UniSys_Georgia                                          driven
## 13875            UniSys_Georgia                                     effectively
## 13876            UniSys_Georgia                                       empirical
## 13877            UniSys_Georgia                                           error
## 13878            UniSys_Georgia                                          errors
## 13879            UniSys_Georgia                                      evaluation
## 13880            UniSys_Georgia                                     expressions
## 13881            UniSys_Georgia                                           field
## 13882            UniSys_Georgia                                         focused
## 13883            UniSys_Georgia                                       formulate
## 13884            UniSys_Georgia                                     foundations
## 13885            UniSys_Georgia                                            free
## 13886            UniSys_Georgia                                        frequent
## 13887            UniSys_Georgia                                       functions
## 13888            UniSys_Georgia                                           goals
## 13889            UniSys_Georgia                                          graphs
## 13890            UniSys_Georgia                                           hands
## 13891            UniSys_Georgia                                      histograms
## 13892            UniSys_Georgia                                      hypotheses
## 13893            UniSys_Georgia                                      hypothesis
## 13894            UniSys_Georgia                                      importance
## 13895            UniSys_Georgia                                       inference
## 13896            UniSys_Georgia                                     inferential
## 13897            UniSys_Georgia                                        insights
## 13898            UniSys_Georgia                                        intended
## 13899            UniSys_Georgia                                  interpretation
## 13900            UniSys_Georgia                                    interpreting
## 13901            UniSys_Georgia                                            john
## 13902            UniSys_Georgia                                           joins
## 13903            UniSys_Georgia                                             low
## 13904            UniSys_Georgia                                    manipulation
## 13905            UniSys_Georgia                                           means
## 13906            UniSys_Georgia                                      measurable
## 13907            UniSys_Georgia                                        measures
## 13908            UniSys_Georgia                                           media
## 13909            UniSys_Georgia                                            mine
## 13910            UniSys_Georgia                                          mining
## 13911            UniSys_Georgia                               misrepresentation
## 13912            UniSys_Georgia                                        modeling
## 13913            UniSys_Georgia                                        multiple
## 13914            UniSys_Georgia                                           names
## 13915            UniSys_Georgia                                             oer
## 13916            UniSys_Georgia                                       optimally
## 13917            UniSys_Georgia                                        optional
## 13918            UniSys_Georgia                                        patterns
## 13919            UniSys_Georgia                                      population
## 13920            UniSys_Georgia                                        possibly
## 13921            UniSys_Georgia                                       potential
## 13922            UniSys_Georgia                                     potentially
## 13923            UniSys_Georgia                                      prediction
## 13924            UniSys_Georgia                                      predictive
## 13925            UniSys_Georgia                                         prepare
## 13926            UniSys_Georgia                                         privacy
## 13927            UniSys_Georgia                                   probabilities
## 13928            UniSys_Georgia                                         process
## 13929            UniSys_Georgia                                        projects
## 13930            UniSys_Georgia                                         provide
## 13931            UniSys_Georgia                                     qualitative
## 13932            UniSys_Georgia                                    quantitative
## 13933            UniSys_Georgia                                            real
## 13934            UniSys_Georgia                                      regression
## 13935            UniSys_Georgia                                   relationships
## 13936            UniSys_Georgia                                        required
## 13937            UniSys_Georgia                                         results
## 13938            UniSys_Georgia                                       retrieval
## 13939            UniSys_Georgia                                        sampling
## 13940            UniSys_Georgia                                        sections
## 13941            UniSys_Georgia                                        security
## 13942            UniSys_Georgia                                             set
## 13943            UniSys_Georgia                                        shopping
## 13944            UniSys_Georgia                                     simulations
## 13945            UniSys_Georgia                                          skills
## 13946            UniSys_Georgia                                           slope
## 13947            UniSys_Georgia                                          social
## 13948            UniSys_Georgia                                          spread
## 13949            UniSys_Georgia                                         squares
## 13950            UniSys_Georgia                                       statement
## 13951            UniSys_Georgia                                          tables
## 13952            UniSys_Georgia                                        tendency
## 13953            UniSys_Georgia                                            text
## 13954            UniSys_Georgia                                       textbooks
## 13955            UniSys_Georgia                                           texts
## 13956            UniSys_Georgia                                       transform
## 13957            UniSys_Georgia                                            true
## 13958            UniSys_Georgia                                       unethical
## 13959            UniSys_Georgia                                      university
## 13960            UniSys_Georgia                                         variety
## 13961            UniSys_Georgia                                   visualization
## 13962            UniSys_Georgia                                       visualize
## 13963            UniSys_Georgia                                           world
## 13964          Washington_State                                            00pm
## 13965          Washington_State                                    acadcal.aspx
## 13966          Washington_State                                        accepted
## 13967          Washington_State                            accesscenter.wsu.edu
## 13968          Washington_State                                  accountability
## 13969          Washington_State                                      additional
## 13970          Washington_State                                    additionally
## 13971          Washington_State                                        adjusted
## 13972          Washington_State                                         advisor
## 13973          Washington_State                                   alert.wsu.edu
## 13974          Washington_State                                         algebra
## 13975          Washington_State                                       algorithm
## 13976          Washington_State                                         allowed
## 13977          Washington_State                                     alternative
## 13978          Washington_State                                       analyzing
## 13979          Washington_State                                           anand
## 13980          Washington_State                                   announcements
## 13981          Washington_State                                         applied
## 13982          Washington_State                                      approaches
## 13983          Washington_State                                        approved
## 13984          Washington_State                                            apps
## 13985          Washington_State                                     arrangement
## 13986          Washington_State                                        audience
## 13987          Washington_State                                         average
## 13988          Washington_State                                           avrim
## 13989          Washington_State                                           aware
## 13990          Washington_State                                      background
## 13991          Washington_State                                           based
## 13992          Washington_State                                            blum
## 13993          Washington_State                                   brainstorming
## 13994          Washington_State                                        branches
## 13995          Washington_State                                         breadth
## 13996          Washington_State                                            call
## 13997          Washington_State                                       carefully
## 13998          Washington_State                                         carries
## 13999          Washington_State                                           cathy
## 14000          Washington_State                                          change
## 14001          Washington_State                                        cheating
## 14002          Washington_State                                         closure
## 14003          Washington_State                                      clustering
## 14004          Washington_State                                         collect
## 14005          Washington_State                                      collection
## 14006          Washington_State                                       committed
## 14007          Washington_State                                          common
## 14008          Washington_State                                        commonly
## 14009          Washington_State                                     communicate
## 14010          Washington_State                                   communication
## 14011          Washington_State                                     communities
## 14012          Washington_State                                       community
## 14013          Washington_State                                       competent
## 14014          Washington_State                                       completed
## 14015          Washington_State                                      completing
## 14016          Washington_State                                       component
## 14017          Washington_State                                   comprehensive
## 14018          Washington_State                                     computation
## 14019          Washington_State                                   computational
## 14020          Washington_State                                      conclusion
## 14021          Washington_State                                 conduct.wsu.edu
## 14022          Washington_State                                        consists
## 14023          Washington_State                                      constitute
## 14024          Washington_State                                      contextual
## 14025          Washington_State                                         counted
## 14026          Washington_State                                        course's
## 14027          Washington_State                                         cpts483
## 14028          Washington_State                                           craft
## 14029          Washington_State                                        creating
## 14030          Washington_State                                        creation
## 14031          Washington_State                                          credit
## 14032          Washington_State                                        critical
## 14033          Washington_State                                         current
## 14034          Washington_State                                        customer
## 14035          Washington_State                                       databases
## 14036          Washington_State                                    datafication
## 14037          Washington_State                                            date
## 14038          Washington_State                                           dates
## 14039          Washington_State                                            deal
## 14040          Washington_State                                         defined
## 14041          Washington_State                                       depending
## 14042          Washington_State                                           depth
## 14043          Washington_State                                     description
## 14044          Washington_State                                     descriptive
## 14045          Washington_State                                      determined
## 14046          Washington_State                                          direct
## 14047          Washington_State                                    disabilities
## 14048          Washington_State                                     disciplines
## 14049          Washington_State                                       discovery
## 14050          Washington_State                                      documented
## 14051          Washington_State                                          domain
## 14052          Washington_State                                           draft
## 14053          Washington_State                                             e.g
## 14054          Washington_State                                     effectively
## 14055          Washington_State                                          effort
## 14056          Washington_State                                      eigenvalue
## 14057          Washington_State                                      electrical
## 14058          Washington_State                                        elements
## 14059          Washington_State                                             eme
## 14060          Washington_State                                        emphasis
## 14061          Washington_State                                        enforced
## 14062          Washington_State                                        engineer
## 14063          Washington_State                                       enhancing
## 14064          Washington_State                                          ensure
## 14065          Washington_State                                           equip
## 14066          Washington_State                                      equivalent
## 14067          Washington_State                                          estate
## 14068          Washington_State                                          ethics
## 14069          Washington_State                                      evaluation
## 14070          Washington_State                                            exam
## 14071          Washington_State                                        examples
## 14072          Washington_State                                       exercises
## 14073          Washington_State                                      experience
## 14074          Washington_State                                     experiments
## 14075          Washington_State                                       expertise
## 14076          Washington_State                                           extra
## 14077          Washington_State                                      extracting
## 14078          Washington_State                                      extraction
## 14079          Washington_State                                          facets
## 14080          Washington_State                                          facing
## 14081          Washington_State                                         faculty
## 14082          Washington_State                                            fall
## 14083          Washington_State                                     familiarity
## 14084          Washington_State                                         fawcett
## 14085          Washington_State                                           field
## 14086          Washington_State                                          fields
## 14087          Washington_State                                            fill
## 14088          Washington_State                                            firm
## 14089          Washington_State                                             fit
## 14090          Washington_State                                         fitting
## 14091          Washington_State                                           focus
## 14092          Washington_State                                           forms
## 14093          Washington_State                                     formulation
## 14094          Washington_State                                          foster
## 14095          Washington_State                                           found
## 14096          Washington_State                                        frequent
## 14097          Washington_State                                        friedman
## 14098          Washington_State                                       frontline
## 14099          Washington_State                                            gaps
## 14100          Washington_State                                     gebremedhin
## 14101          Washington_State                                   generalizable
## 14102          Washington_State                                          grades
## 14103          Washington_State                                        graduate
## 14104          Washington_State                                         growing
## 14105          Washington_State                                           guide
## 14106          Washington_State                                             han
## 14107          Washington_State                                            hand
## 14108          Washington_State                                         handled
## 14109          Washington_State                                        handling
## 14110          Washington_State                                          hastie
## 14111          Washington_State                                          health
## 14112          Washington_State                                         heavily
## 14113          Washington_State                                          highly
## 14114          Washington_State                                        homepage
## 14115          Washington_State                                        hopcroft
## 14116          Washington_State                                           ideas
## 14117          Washington_State                                     imagination
## 14118          Washington_State                                   inadvertently
## 14119          Washington_State                                    individually
## 14120          Washington_State                                        industry
## 14121          Washington_State                                       inspiring
## 14122          Washington_State                                      integrated
## 14123          Washington_State                                        intended
## 14124          Washington_State                                        interact
## 14125          Washington_State                                           intro
## 14126          Washington_State                                       introduce
## 14127          Washington_State                                        involves
## 14128          Washington_State                                            item
## 14129          Washington_State                                           items
## 14130          Washington_State                                         jeffrey
## 14131          Washington_State                                          jerome
## 14132          Washington_State                                            jian
## 14133          Washington_State                                          jiawei
## 14134          Washington_State                                            john
## 14135          Washington_State                                              jr
## 14136          Washington_State                                            jure
## 14137          Washington_State                                          kamber
## 14138          Washington_State                                          kannan
## 14139          Washington_State                                           kevin
## 14140          Washington_State                                       landscape
## 14141          Washington_State                                        lectures
## 14142          Washington_State                                        leskovek
## 14143          Washington_State                                          letter
## 14144          Washington_State                                           level
## 14145          Washington_State                                           links
## 14146          Washington_State                                         listing
## 14147          Washington_State                                        location
## 14148          Washington_State                                         massive
## 14149          Washington_State                                    mathematical
## 14150          Washington_State                                         meaning
## 14151          Washington_State                                         meeting
## 14152          Washington_State                                         methods
## 14153          Washington_State                                       micheline
## 14154          Washington_State                                           miera
## 14155          Washington_State                                             min
## 14156          Washington_State                                         mindset
## 14157          Washington_State                                          modern
## 14158          Washington_State                                        mohammed
## 14159          Washington_State                                          murphy
## 14160          Washington_State                                             mwf
## 14161          Washington_State                                    neighborhood
## 14162          Washington_State                                         network
## 14163          Washington_State                                        networks
## 14164          Washington_State                                            note
## 14165          Washington_State                                          o'neil
## 14166          Washington_State                                        o'reilly
## 14167          Washington_State                                     oem.wsu.edu
## 14168          Washington_State                                   opportunities
## 14169          Washington_State                                          option
## 14170          Washington_State                                       osble.org
## 14171          Washington_State                                        outcomes
## 14172          Washington_State                                         outline
## 14173          Washington_State                                     parenthesis
## 14174          Washington_State                                     participate
## 14175          Washington_State                                   participation
## 14176          Washington_State                                    partitioning
## 14177          Washington_State                                            past
## 14178          Washington_State                                             pdf
## 14179          Washington_State                                             pei
## 14180          Washington_State                                         penalty
## 14181          Washington_State                                     percentages
## 14182          Washington_State                                     performance
## 14183          Washington_State                                     perspective
## 14184          Washington_State                                    perspectives
## 14185          Washington_State                                        persuade
## 14186          Washington_State                                      philosophy
## 14187          Washington_State                                            plan
## 14188          Washington_State                                     populations
## 14189          Washington_State                                          portal
## 14190          Washington_State                                         posting
## 14191          Washington_State                                        practice
## 14192          Washington_State                                       practices
## 14193          Washington_State                                   prerequisites
## 14194          Washington_State                                         primary
## 14195          Washington_State                                           prior
## 14196          Washington_State                                   probabilistic
## 14197          Washington_State                                      procedures
## 14198          Washington_State                                        proceeds
## 14199          Washington_State                                     programming
## 14200          Washington_State                                      properties
## 14201          Washington_State                                         provost
## 14202          Washington_State                                          rachel
## 14203          Washington_State                                       rajaraman
## 14204          Washington_State                                         rapidly
## 14205          Washington_State                                       ravindran
## 14206          Washington_State                                            read
## 14207          Washington_State                                      realdirect
## 14208          Washington_State                                          reason
## 14209          Washington_State                                         receice
## 14210          Washington_State                                     recommended
## 14211          Washington_State                                           refer
## 14212          Washington_State                                      references
## 14213          Washington_State                                       registrar
## 14214          Washington_State                                        relating
## 14215          Washington_State                                        relevant
## 14216          Washington_State                                        reported
## 14217          Washington_State                                        requires
## 14218          Washington_State                                        resource
## 14219          Washington_State                                       retention
## 14220          Washington_State                                          review
## 14221          Washington_State                                          robert
## 14222          Washington_State                                            role
## 14223          Washington_State                              safetyplan.wsu.edu
## 14224          Washington_State                                         samples
## 14225          Washington_State                                           scale
## 14226          Washington_State                                          schutt
## 14227          Washington_State                                        sciences
## 14228          Washington_State                                      scientists
## 14229          Washington_State                                           scrap
## 14230          Washington_State                                       scrapping
## 14231          Washington_State                                        security
## 14232          Washington_State                                    significance
## 14233          Washington_State                                            site
## 14234          Washington_State                                           sloan
## 14235          Washington_State                                        software
## 14236          Washington_State                                        solution
## 14237          Washington_State                                       solutions
## 14238          Washington_State                                         solving
## 14239          Washington_State                                         sources
## 14240          Washington_State                                        spanning
## 14241          Washington_State                                           staff
## 14242          Washington_State                                        straight
## 14243          Washington_State                                        strongly
## 14244          Washington_State                                      structures
## 14245          Washington_State                                         subject
## 14246          Washington_State                                          submit
## 14247          Washington_State                                       submitted
## 14248          Washington_State                                        suitable
## 14249          Washington_State                                    supplemented
## 14250          Washington_State                                    synergically
## 14251          Washington_State                                       synthesis
## 14252          Washington_State                                          taking
## 14253          Washington_State                                       tentative
## 14254          Washington_State                                           terms
## 14255          Washington_State                                        textbook
## 14256          Washington_State                                     theoretical
## 14257          Washington_State                                        thinking
## 14258          Washington_State                                      tibshirani
## 14259          Washington_State                                            time
## 14260          Washington_State                                             tom
## 14261          Washington_State                                       treatment
## 14262          Washington_State                                          trevor
## 14263          Washington_State                                        tuesdays
## 14264          Washington_State                                          ullman
## 14265          Washington_State                                   undergraduate
## 14266          Washington_State                                   understanding
## 14267          Washington_State                                    university's
## 14268          Washington_State                                         updates
## 14269          Washington_State                                           upper
## 14270          Washington_State                                           usage
## 14271          Washington_State                                            v2.1
## 14272          Washington_State                                         variety
## 14273          Washington_State                                          vector
## 14274          Washington_State                                         violate
## 14275          Washington_State                                        violates
## 14276          Washington_State                                        visitors
## 14277          Washington_State                                             wac
## 14278          Washington_State                                          wagner
## 14279          Washington_State                                         webpage
## 14280          Washington_State                                            week
## 14281          Washington_State                                          weight
## 14282          Washington_State                                         welfare
## 14283          Washington_State                                        withdraw
## 14284          Washington_State                                       wrangling
## 14285          Washington_State                                         written
## 14286          Washington_State                                           wsu's
## 14287          Washington_State                                         wsu.edu
## 14288          Washington_State                           www.registrar.wsu.edu
## 14289          Washington_State                                            zaki
## 14290          William_and_Mary                              academicscheduling
## 14291          William_and_Mary                                   accessibility
## 14292          William_and_Mary                                     accommodate
## 14293          William_and_Mary                                      accordance
## 14294          William_and_Mary                                        adapting
## 14295          William_and_Mary                                             add
## 14296          William_and_Mary                                          adjust
## 14297          William_and_Mary                                     adjustments
## 14298          William_and_Mary                                   agglomerative
## 14299          William_and_Mary                                           ahead
## 14300          William_and_Mary                                       algorithm
## 14301          William_and_Mary                                         allowed
## 14302          William_and_Mary                                          amount
## 14303          William_and_Mary                                        anaconda
## 14304          William_and_Mary                                       answering
## 14305          William_and_Mary                                         applied
## 14306          William_and_Mary                                           apply
## 14307          William_and_Mary                                    appointments
## 14308          William_and_Mary                                      approaches
## 14309          William_and_Mary                                             art
## 14310          William_and_Mary                                         aspects
## 14311          William_and_Mary                                          assess
## 14312          William_and_Mary                                       attention
## 14313          William_and_Mary                                          basics
## 14314          William_and_Mary                                             bit
## 14315          William_and_Mary                               blackboard.wm.edu
## 14316          William_and_Mary                                             box
## 14317          William_and_Mary                                           break
## 14318          William_and_Mary                                       breakdown
## 14319          William_and_Mary                                         browser
## 14320          William_and_Mary                                          campus
## 14321          William_and_Mary                                        canceled
## 14322          William_and_Mary                                         careful
## 14323          William_and_Mary                                       carefully
## 14324          William_and_Mary                                         catalog
## 14325          William_and_Mary                                          caused
## 14326          William_and_Mary                                          center
## 14327          William_and_Mary                                         central
## 14328          William_and_Mary                                         chances
## 14329          William_and_Mary                                           chats
## 14330          William_and_Mary                                           check
## 14331          William_and_Mary                                         chronic
## 14332          William_and_Mary                                         classic
## 14333          William_and_Mary                                      classmates
## 14334          William_and_Mary                                             cnn
## 14335          William_and_Mary                                          coding
## 14336          William_and_Mary                                      collection
## 14337          William_and_Mary                                          common
## 14338          William_and_Mary                                       community
## 14339          William_and_Mary                                        complete
## 14340          William_and_Mary                                       component
## 14341          William_and_Mary                                   computational
## 14342          William_and_Mary                                         compute
## 14343          William_and_Mary                                      conceptual
## 14344          William_and_Mary                                      concurrent
## 14345          William_and_Mary                                      conditions
## 14346          William_and_Mary                                      conducting
## 14347          William_and_Mary                                            cons
## 14348          William_and_Mary                                         consist
## 14349          William_and_Mary                                         contact
## 14350          William_and_Mary                                      contacting
## 14351          William_and_Mary                                         context
## 14352          William_and_Mary                                     contrasting
## 14353          William_and_Mary                                     cooperation
## 14354          William_and_Mary                                     corrections
## 14355          William_and_Mary                                       coworkers
## 14356          William_and_Mary                                          create
## 14357          William_and_Mary                                        creative
## 14358          William_and_Mary                                             crn
## 14359          William_and_Mary                                      cumulative
## 14360          William_and_Mary                                     cwm.zoom.us
## 14361          William_and_Mary                                          daniel
## 14362          William_and_Mary                                         data146
## 14363          William_and_Mary                                       dataframe
## 14364          William_and_Mary                                            date
## 14365          William_and_Mary                                           dates
## 14366          William_and_Mary                                          dbscan
## 14367          William_and_Mary                                  deanofstudents
## 14368          William_and_Mary                                             def
## 14369          William_and_Mary                                      deliberate
## 14370          William_and_Mary                                     demonstrate
## 14371          William_and_Mary                                  demonstrations
## 14372          William_and_Mary                                          depend
## 14373          William_and_Mary                                     descriptive
## 14374          William_and_Mary                                          detail
## 14375          William_and_Mary                                     development
## 14376          William_and_Mary                                         devices
## 14377          William_and_Mary                                          devote
## 14378          William_and_Mary                                       diagnosed
## 14379          William_and_Mary                                       diagnosis
## 14380          William_and_Mary                                     differences
## 14381          William_and_Mary                                    disabilities
## 14382          William_and_Mary                                       discussed
## 14383          William_and_Mary                                      discussion
## 14384          William_and_Mary                                     discussions
## 14385          William_and_Mary                                            disk
## 14386          William_and_Mary                                    distribution
## 14387          William_and_Mary                                             dot
## 14388          William_and_Mary                                          double
## 14389          William_and_Mary                                            drop
## 14390          William_and_Mary                                          easier
## 14391          William_and_Mary                                          editor
## 14392          William_and_Mary                                       efficient
## 14393          William_and_Mary                                             ego
## 14394          William_and_Mary                                        ensemble
## 14395          William_and_Mary                                         ensures
## 14396          William_and_Mary                                          entire
## 14397          William_and_Mary                                           exact
## 14398          William_and_Mary                                            exam
## 14399          William_and_Mary                                         exhibit
## 14400          William_and_Mary                                          expect
## 14401          William_and_Mary                                    expectations
## 14402          William_and_Mary                                        expected
## 14403          William_and_Mary                                          expert
## 14404          William_and_Mary                                         explore
## 14405          William_and_Mary                                       extensive
## 14406          William_and_Mary                                        external
## 14407          William_and_Mary                                      facilitate
## 14408          William_and_Mary                                        facstaff
## 14409          William_and_Mary                                         faculty
## 14410          William_and_Mary                                         feature
## 14411          William_and_Mary                                        features
## 14412          William_and_Mary                                        february
## 14413          William_and_Mary                                         federal
## 14414          William_and_Mary                                        feedback
## 14415          William_and_Mary                                           feels
## 14416          William_and_Mary                                           files
## 14417          William_and_Mary                                             fit
## 14418          William_and_Mary                                           float
## 14419          William_and_Mary                                          forest
## 14420          William_and_Mary                                          format
## 14421          William_and_Mary                                              fr
## 14422          William_and_Mary                                         frazier
## 14423          William_and_Mary                                          friday
## 14424          William_and_Mary                                         fridays
## 14425          William_and_Mary                                         friends
## 14426          William_and_Mary                                        function
## 14427          William_and_Mary                                       functions
## 14428          William_and_Mary                                    fundamentals
## 14429          William_and_Mary                                          future
## 14430          William_and_Mary                                              gb
## 14431          William_and_Mary                                      geospatial
## 14432          William_and_Mary                                            gini
## 14433          William_and_Mary                                            goal
## 14434          William_and_Mary                                           goals
## 14435          William_and_Mary                                          graded
## 14436          William_and_Mary                                      guaranteed
## 14437          William_and_Mary                                          guided
## 14438          William_and_Mary                                          handle
## 14439          William_and_Mary                                      headphones
## 14440          William_and_Mary                                          health
## 14441          William_and_Mary                                            held
## 14442          William_and_Mary                                          hidden
## 14443          William_and_Mary                                    hierarchical
## 14444          William_and_Mary                                       histogram
## 14445          William_and_Mary                                         history
## 14446          William_and_Mary                                             hub
## 14447          William_and_Mary                                  hyperparameter
## 14448          William_and_Mary                                             ide
## 14449          William_and_Mary                                            idea
## 14450          William_and_Mary                                       identical
## 14451          William_and_Mary                                          impact
## 14452          William_and_Mary                                      importance
## 14453          William_and_Mary                                     importantly
## 14454          William_and_Mary                                        impurity
## 14455          William_and_Mary                                    inaccuracies
## 14456          William_and_Mary                                   inappropriate
## 14457          William_and_Mary                                         include
## 14458          William_and_Mary                                       index.php
## 14459          William_and_Mary                                          inputs
## 14460          William_and_Mary                                    installation
## 14461          William_and_Mary                                 instr_del_catgs
## 14462          William_and_Mary                                        interact
## 14463          William_and_Mary                                       interfere
## 14464          William_and_Mary                                        internal
## 14465          William_and_Mary                                        internet
## 14466          William_and_Mary                                    interpreting
## 14467          William_and_Mary                                       introduce
## 14468          William_and_Mary                                    introduction
## 14469          William_and_Mary                                       inundated
## 14470          William_and_Mary                                      invitation
## 14471          William_and_Mary                                         invited
## 14472          William_and_Mary                                           ipynb
## 14473          William_and_Mary                                       isolation
## 14474          William_and_Mary                                          issues
## 14475          William_and_Mary                                             jan
## 14476          William_and_Mary                                         jupyter
## 14477          William_and_Mary                               jupyterhub.wm.edu
## 14478          William_and_Mary                                            keen
## 14479          William_and_Mary                                        language
## 14480          William_and_Mary                                          laptop
## 14481          William_and_Mary                                            laws
## 14482          William_and_Mary                                           layer
## 14483          William_and_Mary                                       learn.org
## 14484          William_and_Mary                                          length
## 14485          William_and_Mary                                         lessons
## 14486          William_and_Mary                                           level
## 14487          William_and_Mary                                        leverage
## 14488          William_and_Mary                                       libraries
## 14489          William_and_Mary                                         library
## 14490          William_and_Mary                                            life
## 14491          William_and_Mary                                        lifelong
## 14492          William_and_Mary                                          limits
## 14493          William_and_Mary                                           lines
## 14494          William_and_Mary                                          linked
## 14495          William_and_Mary                                           linux
## 14496          William_and_Mary                                        location
## 14497          William_and_Mary                                        logistic
## 14498          William_and_Mary                                             mac
## 14499          William_and_Mary                                         machine
## 14500          William_and_Mary                                            mail
## 14501          William_and_Mary                                      mailto:sas
## 14502          William_and_Mary                                           makes
## 14503          William_and_Mary                                           march
## 14504          William_and_Mary                                      matplotlib
## 14505          William_and_Mary                                              mb
## 14506          William_and_Mary                                         meeting
## 14507          William_and_Mary                                          memory
## 14508          William_and_Mary                                         message
## 14509          William_and_Mary                                       messaging
## 14510          William_and_Mary                                             met
## 14511          William_and_Mary                                      microphone
## 14512          William_and_Mary                                        minimize
## 14513          William_and_Mary                                         minimum
## 14514          William_and_Mary                                          missed
## 14515          William_and_Mary                                         mixture
## 14516          William_and_Mary                                             mlp
## 14517          William_and_Mary                                              mo
## 14518          William_and_Mary                                          mobile
## 14519          William_and_Mary                                          modern
## 14520          William_and_Mary                                         modules
## 14521          William_and_Mary                                         mondays
## 14522          William_and_Mary                                       motivated
## 14523          William_and_Mary                                          moving
## 14524          William_and_Mary                                         nearest
## 14525          William_and_Mary                                     necessarily
## 14526          William_and_Mary                                       neighbors
## 14527          William_and_Mary                                          nicely
## 14528          William_and_Mary                                        notebook
## 14529          William_and_Mary                                          notify
## 14530          William_and_Mary                                         nuances
## 14531          William_and_Mary                                       numerical
## 14532          William_and_Mary                                          obtain
## 14533          William_and_Mary                                        official
## 14534          William_and_Mary                                          online
## 14535          William_and_Mary                                         options
## 14536          William_and_Mary                                       organized
## 14537          William_and_Mary                                              os
## 14538          William_and_Mary                                          output
## 14539          William_and_Mary                                         outputs
## 14540          William_and_Mary                                         overfit
## 14541          William_and_Mary                                     overfitting
## 14542          William_and_Mary                                          pandas
## 14543          William_and_Mary                                         passing
## 14544          William_and_Mary                                              pc
## 14545          William_and_Mary                                      percentile
## 14546          William_and_Mary                                         perform
## 14547          William_and_Mary                                          period
## 14548          William_and_Mary                                        period's
## 14549          William_and_Mary                                        personal
## 14550          William_and_Mary                                           phone
## 14551          William_and_Mary                                          piazza
## 14552          William_and_Mary                                      piazza.com
## 14553          William_and_Mary                                        planning
## 14554          William_and_Mary                                       potential
## 14555          William_and_Mary                                           power
## 14556          William_and_Mary                                             pre
## 14557          William_and_Mary                                   predominantly
## 14558          William_and_Mary                                          prefer
## 14559          William_and_Mary                                     preferences
## 14560          William_and_Mary                                       preferred
## 14561          William_and_Mary                                       presently
## 14562          William_and_Mary                                         prevent
## 14563          William_and_Mary                                        previous
## 14564          William_and_Mary                                           pride
## 14565          William_and_Mary                                       primarily
## 14566          William_and_Mary                                         primary
## 14567          William_and_Mary                                       principal
## 14568          William_and_Mary                                           prior
## 14569          William_and_Mary                                       privately
## 14570          William_and_Mary                                       procedure
## 14571          William_and_Mary                                       processes
## 14572          William_and_Mary                                      processing
## 14573          William_and_Mary                                         produce
## 14574          William_and_Mary                                      professors
## 14575          William_and_Mary                                         program
## 14576          William_and_Mary                                        progress
## 14577          William_and_Mary                                            pros
## 14578          William_and_Mary                                     psychiatric
## 14579          William_and_Mary                                        publicly
## 14580          William_and_Mary                                        purposes
## 14581          William_and_Mary                                      qualifying
## 14582          William_and_Mary                                        quantile
## 14583          William_and_Mary                                           quick
## 14584          William_and_Mary                                            real
## 14585          William_and_Mary                                         receive
## 14586          William_and_Mary                                        recorded
## 14587          William_and_Mary                                       recording
## 14588          William_and_Mary                                       recurring
## 14589          William_and_Mary                                        referred
## 14590          William_and_Mary                                       registrar
## 14591          William_and_Mary                                         regular
## 14592          William_and_Mary                                       remainder
## 14593          William_and_Mary                                          remote
## 14594          William_and_Mary                                       reporting
## 14595          William_and_Mary                                      requisites
## 14596          William_and_Mary                                     rescheduled
## 14597          William_and_Mary                                       responses
## 14598          William_and_Mary                                     responsible
## 14599          William_and_Mary                                        retrieve
## 14600          William_and_Mary                                         returns
## 14601          William_and_Mary                                              rm
## 14602          William_and_Mary                                             ron
## 14603          William_and_Mary                                            rsof
## 14604          William_and_Mary                                             run
## 14605          William_and_Mary                                          safari
## 14606          William_and_Mary                                         scaling
## 14607          William_and_Mary                                         scatter
## 14608          William_and_Mary                                       scheduled
## 14609          William_and_Mary                                          screen
## 14610          William_and_Mary                                         section
## 14611          William_and_Mary                                        selected
## 14612          William_and_Mary                                           serve
## 14613          William_and_Mary                                        sessions
## 14614          William_and_Mary                                             set
## 14615          William_and_Mary                                           short
## 14616          William_and_Mary                                         shyness
## 14617          William_and_Mary                                          single
## 14618          William_and_Mary                                       slack.com
## 14619          William_and_Mary                                           smith
## 14620          William_and_Mary                                           snail
## 14621          William_and_Mary                                           solid
## 14622          William_and_Mary                                         solving
## 14623          William_and_Mary                                           space
## 14624          William_and_Mary                                            span
## 14625          William_and_Mary                                        specific
## 14626          William_and_Mary                                      spring2021
## 14627          William_and_Mary                                          stable
## 14628          William_and_Mary                                        starting
## 14629          William_and_Mary                                       statistic
## 14630          William_and_Mary                                             str
## 14631          William_and_Mary                                          strong
## 14632          William_and_Mary                                        strongly
## 14633          William_and_Mary                    studentaccessibilityservices
## 14634          William_and_Mary                                      submission
## 14635          William_and_Mary                                          submit
## 14636          William_and_Mary                                        suitable
## 14637          William_and_Mary                                         support
## 14638          William_and_Mary                                            swem
## 14639          William_and_Mary                                            talk
## 14640          William_and_Mary                                          taught
## 14641          William_and_Mary                                        teaching
## 14642          William_and_Mary                                       technical
## 14643          William_and_Mary                                       technique
## 14644          William_and_Mary                                        tendency
## 14645          William_and_Mary                                            test
## 14646          William_and_Mary                                           theme
## 14647          William_and_Mary                                           times
## 14648          William_and_Mary                                           tools
## 14649          William_and_Mary                                        tracking
## 14650          William_and_Mary                                            tree
## 14651          William_and_Mary                                    troubleshoot
## 14652          William_and_Mary                                         tuesday
## 14653          William_and_Mary                                            type
## 14654          William_and_Mary                                       typically
## 14655          William_and_Mary                                        uncommon
## 14656          William_and_Mary                                   underestimate
## 14657          William_and_Mary                                     variability
## 14658          William_and_Mary                                         variety
## 14659          William_and_Mary                                         vasiliu
## 14660          William_and_Mary                                            walk
## 14661          William_and_Mary                                       warranted
## 14662          William_and_Mary                                           watch
## 14663          William_and_Mary                                             web
## 14664          William_and_Mary                                       wednesday
## 14665          William_and_Mary                                      wednesdays
## 14666          William_and_Mary                                            week
## 14667          William_and_Mary                                          weekly
## 14668          William_and_Mary                                       whichever
## 14669          William_and_Mary                                            wise
## 14670          William_and_Mary                                        withdraw
## 14671          William_and_Mary                                           world
## 14672          William_and_Mary                                         written
##         n total
## 1     113  1970
## 2      70  1531
## 3      68  1168
## 4      51  1590
## 5      45  1970
## 6      45  1168
## 7      44   753
## 8      42   890
## 9      42   878
## 10     41   967
## 11     38   289
## 12     37  1416
## 13     35  1590
## 14     33  1608
## 15     32   850
## 16     32  1817
## 17     31   584
## 18     30  1608
## 19     29   850
## 20     29   988
## 21     28  1168
## 22     28   890
## 23     28  1531
## 24     25   908
## 25     24   750
## 26     24   750
## 27     24   584
## 28     24   850
## 29     24  1416
## 30     23   616
## 31     23  1416
## 32     23  1416
## 33     23  1817
## 34     23  1531
## 35     22   539
## 36     22   358
## 37     22  1531
## 38     22  1531
## 39     21   292
## 40     21   584
## 41     21   407
## 42     21   967
## 43     21  1416
## 44     21  1531
## 45     21   878
## 46     20   456
## 47     20  1168
## 48     20  1608
## 49     20  1416
## 50     20   825
## 51     20   539
## 52     20  1590
## 53     20  1531
## 54     19   423
## 55     19   344
## 56     19  1608
## 57     19  1416
## 58     19   890
## 59     19   988
## 60     18   753
## 61     18   967
## 62     18   539
## 63     18  1531
## 64     17  1970
## 65     17  1970
## 66     17   401
## 67     17   584
## 68     17   850
## 69     17  1608
## 70     17  1608
## 71     17   539
## 72     17   890
## 73     17  1531
## 74     17   908
## 75     16   456
## 76     16   750
## 77     16  1168
## 78     16   850
## 79     16  1608
## 80     16  1608
## 81     16  1608
## 82     16   967
## 83     16  1817
## 84     15   940
## 85     15   753
## 86     15   616
## 87     15  1168
## 88     15  1608
## 89     15  1608
## 90     15  1416
## 91     15  1416
## 92     15   825
## 93     15   220
## 94     15  1531
## 95     14   940
## 96     14   940
## 97     14  1970
## 98     14  1970
## 99     14  1970
## 100    14   401
## 101    14  1608
## 102    14  1416
## 103    14   539
## 104    14  1590
## 105    14  1531
## 106    14  1531
## 107    14  1531
## 108    14   908
## 109    14   908
## 110    13   940
## 111    13  1970
## 112    13  1970
## 113    13  1970
## 114    13   753
## 115    13   616
## 116    13   584
## 117    13   850
## 118    13  1416
## 119    13  1416
## 120    13  1416
## 121    13   825
## 122    13   825
## 123    13  1817
## 124    13  1817
## 125    13  1817
## 126    13  1817
## 127    13  1817
## 128    13   890
## 129    13  1590
## 130    13  1531
## 131    13   908
## 132    13   988
## 133    12   559
## 134    12  1168
## 135    12   584
## 136    12   850
## 137    12  1608
## 138    12  1608
## 139    12  1608
## 140    12   371
## 141    12   967
## 142    12  1416
## 143    12  1590
## 144    12  1531
## 145    12   908
## 146    12   878
## 147    12   988
## 148    12   988
## 149    11   292
## 150    11  1970
## 151    11   750
## 152    11   401
## 153    11   401
## 154    11  1168
## 155    11  1168
## 156    11  1608
## 157    11  1608
## 158    11  1608
## 159    11  1608
## 160    11  1608
## 161    11  1608
## 162    11  1608
## 163    11  1608
## 164    11  1608
## 165    11   379
## 166    11   967
## 167    11  1416
## 168    11  1416
## 169    11   220
## 170    11  1817
## 171    11  1817
## 172    11   335
## 173    11  1590
## 174    11  1590
## 175    11  1590
## 176    11  1590
## 177    11  1590
## 178    11  1590
## 179    11  1590
## 180    11  1531
## 181    11  1531
## 182    11  1531
## 183    11   908
## 184    10   726
## 185    10   940
## 186    10  1970
## 187    10  1970
## 188    10   753
## 189    10   753
## 190    10   753
## 191    10   753
## 192    10   753
## 193    10   616
## 194    10  1168
## 195    10   344
## 196    10  1608
## 197    10  1608
## 198    10  1608
## 199    10   967
## 200    10   967
## 201    10   967
## 202    10   967
## 203    10  1416
## 204    10  1416
## 205    10  1416
## 206    10  1817
## 207    10  1817
## 208    10  1817
## 209    10  1817
## 210    10   890
## 211    10   335
## 212    10  1590
## 213    10  1590
## 214    10  1590
## 215    10  1590
## 216    10  1531
## 217    10  1531
## 218    10  1531
## 219    10  1531
## 220    10  1531
## 221    10   908
## 222    10   908
## 223    10   908
## 224    10   988
## 225     9   940
## 226     9   940
## 227     9  1970
## 228     9  1970
## 229     9   750
## 230     9   750
## 231     9   616
## 232     9  1168
## 233     9  1168
## 234     9   850
## 235     9  1608
## 236     9  1608
## 237     9  1608
## 238     9  1608
## 239     9  1608
## 240     9  1608
## 241     9  1608
## 242     9   371
## 243     9   379
## 244     9   967
## 245     9  1416
## 246     9   825
## 247     9   539
## 248     9  1817
## 249     9  1817
## 250     9  1590
## 251     9  1590
## 252     9  1590
## 253     9  1531
## 254     9  1531
## 255     9  1531
## 256     9   988
## 257     8   726
## 258     8   726
## 259     8   726
## 260     8   726
## 261     8   559
## 262     8   940
## 263     8   940
## 264     8  1970
## 265     8  1970
## 266     8  1970
## 267     8  1970
## 268     8  1970
## 269     8  1970
## 270     8   456
## 271     8   456
## 272     8   456
## 273     8   456
## 274     8   753
## 275     8   753
## 276     8   753
## 277     8   753
## 278     8   753
## 279     8   750
## 280     8   750
## 281     8   401
## 282     8   401
## 283     8   616
## 284     8   616
## 285     8   584
## 286     8   584
## 287     8   850
## 288     8   850
## 289     8   850
## 290     8   850
## 291     8   407
## 292     8   407
## 293     8   344
## 294     8   344
## 295     8  1608
## 296     8  1608
## 297     8  1608
## 298     8  1608
## 299     8   371
## 300     8   379
## 301     8  1416
## 302     8  1416
## 303     8  1416
## 304     8  1416
## 305     8  1416
## 306     8  1416
## 307     8  1416
## 308     8   825
## 309     8   825
## 310     8   825
## 311     8   220
## 312     8   220
## 313     8   539
## 314     8  1817
## 315     8  1817
## 316     8  1817
## 317     8  1817
## 318     8  1817
## 319     8  1817
## 320     8  1817
## 321     8   890
## 322     8   890
## 323     8   890
## 324     8   335
## 325     8   358
## 326     8  1590
## 327     8  1590
## 328     8  1590
## 329     8  1590
## 330     8  1590
## 331     8  1590
## 332     8  1590
## 333     8  1590
## 334     8  1590
## 335     8  1590
## 336     8  1590
## 337     8  1531
## 338     8  1531
## 339     8  1531
## 340     8  1531
## 341     8  1531
## 342     8  1531
## 343     8  1531
## 344     8  1531
## 345     8  1531
## 346     8  1531
## 347     8  1531
## 348     8   908
## 349     8   908
## 350     8   908
## 351     8   878
## 352     8   878
## 353     8   878
## 354     8   988
## 355     8   988
## 356     7   726
## 357     7   726
## 358     7   726
## 359     7   559
## 360     7   559
## 361     7   292
## 362     7   423
## 363     7   423
## 364     7   940
## 365     7   940
## 366     7   940
## 367     7   940
## 368     7  1970
## 369     7  1970
## 370     7  1970
## 371     7  1970
## 372     7  1970
## 373     7  1970
## 374     7  1970
## 375     7   456
## 376     7   456
## 377     7   753
## 378     7   753
## 379     7   753
## 380     7   753
## 381     7   750
## 382     7   401
## 383     7   616
## 384     7   616
## 385     7  1168
## 386     7  1168
## 387     7  1168
## 388     7  1168
## 389     7  1168
## 390     7  1168
## 391     7  1168
## 392     7  1168
## 393     7  1168
## 394     7   584
## 395     7   850
## 396     7   850
## 397     7   850
## 398     7   850
## 399     7   850
## 400     7   344
## 401     7  1608
## 402     7  1608
## 403     7  1608
## 404     7  1608
## 405     7  1608
## 406     7  1416
## 407     7  1416
## 408     7  1416
## 409     7  1416
## 410     7   825
## 411     7   825
## 412     7   825
## 413     7   825
## 414     7   220
## 415     7   220
## 416     7   539
## 417     7   539
## 418     7   539
## 419     7   539
## 420     7  1817
## 421     7  1817
## 422     7  1817
## 423     7  1817
## 424     7  1817
## 425     7  1817
## 426     7  1817
## 427     7  1817
## 428     7  1817
## 429     7  1817
## 430     7  1817
## 431     7  1817
## 432     7   890
## 433     7   358
## 434     7  1590
## 435     7  1590
## 436     7  1590
## 437     7  1590
## 438     7  1590
## 439     7  1590
## 440     7  1590
## 441     7  1590
## 442     7  1590
## 443     7  1590
## 444     7  1590
## 445     7  1531
## 446     7  1531
## 447     7  1531
## 448     7  1531
## 449     7  1531
## 450     7  1531
## 451     7  1531
## 452     7  1531
## 453     7   908
## 454     7   908
## 455     7   908
## 456     7   908
## 457     7   289
## 458     7   878
## 459     7   988
## 460     7   988
## 461     7   988
## 462     7   988
## 463     6   726
## 464     6   559
## 465     6   559
## 466     6   292
## 467     6   423
## 468     6   423
## 469     6   940
## 470     6   940
## 471     6   940
## 472     6   940
## 473     6   940
## 474     6   940
## 475     6   940
## 476     6   940
## 477     6   940
## 478     6   940
## 479     6   940
## 480     6   940
## 481     6   940
## 482     6   940
## 483     6  1970
## 484     6  1970
## 485     6  1970
## 486     6  1970
## 487     6  1970
## 488     6  1970
## 489     6  1970
## 490     6  1970
## 491     6  1970
## 492     6  1970
## 493     6  1970
## 494     6  1970
## 495     6   753
## 496     6   753
## 497     6   753
## 498     6   750
## 499     6   750
## 500     6   750
## 501     6   750
## 502     6   750
## 503     6   616
## 504     6   616
## 505     6   616
## 506     6   616
## 507     6   616
## 508     6  1168
## 509     6  1168
## 510     6  1168
## 511     6  1168
## 512     6  1168
## 513     6  1168
## 514     6  1168
## 515     6  1168
## 516     6  1168
## 517     6  1168
## 518     6  1168
## 519     6  1168
## 520     6   584
## 521     6   850
## 522     6   850
## 523     6   850
## 524     6   850
## 525     6   850
## 526     6  1608
## 527     6  1608
## 528     6  1608
## 529     6  1608
## 530     6  1608
## 531     6  1608
## 532     6  1608
## 533     6   371
## 534     6   379
## 535     6   379
## 536     6   967
## 537     6   967
## 538     6   967
## 539     6   967
## 540     6   967
## 541     6  1416
## 542     6  1416
## 543     6  1416
## 544     6  1416
## 545     6  1416
## 546     6  1416
## 547     6  1416
## 548     6  1416
## 549     6  1416
## 550     6  1416
## 551     6  1416
## 552     6   825
## 553     6   825
## 554     6   825
## 555     6   220
## 556     6   220
## 557     6   220
## 558     6   539
## 559     6   539
## 560     6   539
## 561     6  1817
## 562     6  1817
## 563     6  1817
## 564     6  1817
## 565     6  1817
## 566     6  1817
## 567     6  1817
## 568     6  1817
## 569     6  1817
## 570     6  1817
## 571     6  1817
## 572     6  1817
## 573     6  1817
## 574     6  1817
## 575     6  1817
## 576     6  1817
## 577     6   890
## 578     6   890
## 579     6   358
## 580     6   358
## 581     6  1590
## 582     6  1590
## 583     6  1590
## 584     6  1590
## 585     6  1590
## 586     6  1590
## 587     6  1590
## 588     6  1590
## 589     6  1531
## 590     6  1531
## 591     6  1531
## 592     6  1531
## 593     6  1531
## 594     6  1531
## 595     6  1531
## 596     6  1531
## 597     6  1531
## 598     6  1531
## 599     6   908
## 600     6   908
## 601     6   908
## 602     6   908
## 603     6   908
## 604     6   908
## 605     6   908
## 606     6   289
## 607     6   289
## 608     6   878
## 609     6   878
## 610     6   878
## 611     6   878
## 612     6   878
## 613     6   988
## 614     6   988
## 615     6   988
## 616     6   988
## 617     6   988
## 618     5   726
## 619     5   726
## 620     5   726
## 621     5   726
## 622     5   726
## 623     5   726
## 624     5   726
## 625     5   726
## 626     5   559
## 627     5   559
## 628     5   292
## 629     5   423
## 630     5   423
## 631     5   423
## 632     5   423
## 633     5   940
## 634     5   940
## 635     5   940
## 636     5   940
## 637     5   940
## 638     5   940
## 639     5   940
## 640     5   940
## 641     5   940
## 642     5   940
## 643     5   940
## 644     5   940
## 645     5  1970
## 646     5  1970
## 647     5  1970
## 648     5  1970
## 649     5  1970
## 650     5  1970
## 651     5  1970
## 652     5  1970
## 653     5  1970
## 654     5  1970
## 655     5  1970
## 656     5  1970
## 657     5  1970
## 658     5  1970
## 659     5  1970
## 660     5   456
## 661     5   753
## 662     5   753
## 663     5   753
## 664     5   753
## 665     5   753
## 666     5   753
## 667     5   753
## 668     5   753
## 669     5   750
## 670     5   750
## 671     5   401
## 672     5   401
## 673     5   401
## 674     5   616
## 675     5   616
## 676     5   616
## 677     5   616
## 678     5  1168
## 679     5  1168
## 680     5  1168
## 681     5  1168
## 682     5  1168
## 683     5  1168
## 684     5  1168
## 685     5  1168
## 686     5  1168
## 687     5  1168
## 688     5   584
## 689     5   584
## 690     5   584
## 691     5   584
## 692     5   850
## 693     5   850
## 694     5   850
## 695     5   850
## 696     5   850
## 697     5   850
## 698     5   850
## 699     5   407
## 700     5   407
## 701     5   407
## 702     5   407
## 703     5   407
## 704     5   344
## 705     5  1608
## 706     5  1608
## 707     5  1608
## 708     5  1608
## 709     5  1608
## 710     5  1608
## 711     5  1608
## 712     5  1608
## 713     5  1608
## 714     5  1608
## 715     5  1608
## 716     5  1608
## 717     5  1608
## 718     5  1608
## 719     5  1608
## 720     5  1608
## 721     5  1608
## 722     5  1608
## 723     5  1608
## 724     5  1608
## 725     5  1608
## 726     5   371
## 727     5   371
## 728     5   371
## 729     5   379
## 730     5   967
## 731     5   967
## 732     5   967
## 733     5   967
## 734     5   967
## 735     5   967
## 736     5   967
## 737     5   967
## 738     5   967
## 739     5   967
## 740     5   967
## 741     5   967
## 742     5   967
## 743     5   967
## 744     5  1416
## 745     5  1416
## 746     5  1416
## 747     5  1416
## 748     5  1416
## 749     5  1416
## 750     5  1416
## 751     5  1416
## 752     5  1416
## 753     5  1416
## 754     5  1416
## 755     5  1416
## 756     5  1416
## 757     5  1416
## 758     5   825
## 759     5   825
## 760     5   825
## 761     5   825
## 762     5   825
## 763     5   825
## 764     5   825
## 765     5   825
## 766     5   220
## 767     5   539
## 768     5   539
## 769     5   539
## 770     5   539
## 771     5   539
## 772     5  1817
## 773     5  1817
## 774     5  1817
## 775     5  1817
## 776     5  1817
## 777     5  1817
## 778     5  1817
## 779     5  1817
## 780     5  1817
## 781     5  1817
## 782     5  1817
## 783     5  1817
## 784     5  1817
## 785     5  1817
## 786     5  1817
## 787     5  1817
## 788     5   890
## 789     5   890
## 790     5   890
## 791     5   890
## 792     5   890
## 793     5   890
## 794     5   335
## 795     5   335
## 796     5   335
## 797     5   164
## 798     5   358
## 799     5   358
## 800     5   358
## 801     5   358
## 802     5  1590
## 803     5  1590
## 804     5  1590
## 805     5  1590
## 806     5  1590
## 807     5  1590
## 808     5  1590
## 809     5  1590
## 810     5  1590
## 811     5  1590
## 812     5  1590
## 813     5  1590
## 814     5  1590
## 815     5  1590
## 816     5  1590
## 817     5  1590
## 818     5  1590
## 819     5  1590
## 820     5  1590
## 821     5  1531
## 822     5  1531
## 823     5  1531
## 824     5  1531
## 825     5  1531
## 826     5  1531
## 827     5  1531
## 828     5  1531
## 829     5  1531
## 830     5  1531
## 831     5  1531
## 832     5  1531
## 833     5  1531
## 834     5  1531
## 835     5  1531
## 836     5  1531
## 837     5  1531
## 838     5   908
## 839     5   908
## 840     5   908
## 841     5   908
## 842     5   908
## 843     5   908
## 844     5   908
## 845     5   908
## 846     5   908
## 847     5   289
## 848     5   878
## 849     5   878
## 850     5   878
## 851     5   878
## 852     5   878
## 853     5   878
## 854     5   878
## 855     5   878
## 856     5   878
## 857     5   878
## 858     5   878
## 859     5   878
## 860     5   988
## 861     5   988
## 862     5   988
## 863     5   988
## 864     5   988
## 865     5   988
## 866     5   988
## 867     4   726
## 868     4   726
## 869     4   726
## 870     4   726
## 871     4   726
## 872     4   726
## 873     4   726
## 874     4   726
## 875     4   726
## 876     4   726
## 877     4   559
## 878     4   559
## 879     4   559
## 880     4   559
## 881     4   292
## 882     4   292
## 883     4   292
## 884     4   292
## 885     4   423
## 886     4   423
## 887     4   423
## 888     4   423
## 889     4   423
## 890     4   940
## 891     4   940
## 892     4   940
## 893     4   940
## 894     4   940
## 895     4   940
## 896     4   940
## 897     4   940
## 898     4   940
## 899     4   940
## 900     4   940
## 901     4   940
## 902     4   940
## 903     4   940
## 904     4   940
## 905     4   940
## 906     4   940
## 907     4   940
## 908     4   940
## 909     4   940
## 910     4   940
## 911     4   940
## 912     4   940
## 913     4  1970
## 914     4  1970
## 915     4  1970
## 916     4  1970
## 917     4  1970
## 918     4  1970
## 919     4  1970
## 920     4  1970
## 921     4  1970
## 922     4  1970
## 923     4  1970
## 924     4  1970
## 925     4  1970
## 926     4  1970
## 927     4  1970
## 928     4  1970
## 929     4  1970
## 930     4  1970
## 931     4  1970
## 932     4  1970
## 933     4  1970
## 934     4  1970
## 935     4  1970
## 936     4  1970
## 937     4  1970
## 938     4  1970
## 939     4  1970
## 940     4  1970
## 941     4  1970
## 942     4  1970
## 943     4  1970
## 944     4  1970
## 945     4  1970
## 946     4  1970
## 947     4  1970
## 948     4   456
## 949     4   456
## 950     4   456
## 951     4   456
## 952     4   456
## 953     4   456
## 954     4   456
## 955     4   456
## 956     4   456
## 957     4   456
## 958     4   456
## 959     4   753
## 960     4   753
## 961     4   753
## 962     4   753
## 963     4   753
## 964     4   753
## 965     4   753
## 966     4   753
## 967     4   753
## 968     4   753
## 969     4   753
## 970     4   753
## 971     4   753
## 972     4   753
## 973     4   753
## 974     4   753
## 975     4   750
## 976     4   750
## 977     4   750
## 978     4   750
## 979     4   750
## 980     4   750
## 981     4   750
## 982     4   750
## 983     4   401
## 984     4   401
## 985     4   401
## 986     4   401
## 987     4   401
## 988     4   401
## 989     4   401
## 990     4   616
## 991     4   616
## 992     4   616
## 993     4   616
## 994     4   616
## 995     4   616
## 996     4   616
## 997     4   616
## 998     4   616
## 999     4   616
## 1000    4  1168
## 1001    4  1168
## 1002    4  1168
## 1003    4  1168
## 1004    4  1168
## 1005    4  1168
## 1006    4  1168
## 1007    4  1168
## 1008    4  1168
## 1009    4  1168
## 1010    4  1168
## 1011    4  1168
## 1012    4  1168
## 1013    4  1168
## 1014    4  1168
## 1015    4  1168
## 1016    4  1168
## 1017    4  1168
## 1018    4  1168
## 1019    4  1168
## 1020    4  1168
## 1021    4  1168
## 1022    4  1168
## 1023    4   584
## 1024    4   584
## 1025    4   584
## 1026    4   584
## 1027    4   584
## 1028    4   584
## 1029    4   584
## 1030    4   584
## 1031    4   584
## 1032    4   584
## 1033    4   850
## 1034    4   850
## 1035    4   850
## 1036    4   850
## 1037    4   850
## 1038    4   850
## 1039    4   850
## 1040    4   850
## 1041    4   850
## 1042    4   850
## 1043    4   850
## 1044    4   850
## 1045    4   850
## 1046    4   850
## 1047    4   850
## 1048    4   850
## 1049    4   850
## 1050    4   850
## 1051    4   407
## 1052    4   407
## 1053    4   407
## 1054    4   407
## 1055    4   407
## 1056    4   407
## 1057    4   344
## 1058    4   344
## 1059    4   344
## 1060    4   344
## 1061    4   344
## 1062    4   344
## 1063    4  1608
## 1064    4  1608
## 1065    4  1608
## 1066    4  1608
## 1067    4  1608
## 1068    4  1608
## 1069    4  1608
## 1070    4  1608
## 1071    4  1608
## 1072    4  1608
## 1073    4  1608
## 1074    4  1608
## 1075    4  1608
## 1076    4  1608
## 1077    4  1608
## 1078    4  1608
## 1079    4  1608
## 1080    4  1608
## 1081    4  1608
## 1082    4  1608
## 1083    4   371
## 1084    4   371
## 1085    4   371
## 1086    4   371
## 1087    4   371
## 1088    4   371
## 1089    4   371
## 1090    4   371
## 1091    4   371
## 1092    4   371
## 1093    4   371
## 1094    4   379
## 1095    4   379
## 1096    4   379
## 1097    4   379
## 1098    4   379
## 1099    4   379
## 1100    4   379
## 1101    4   967
## 1102    4   967
## 1103    4   967
## 1104    4   967
## 1105    4   967
## 1106    4   967
## 1107    4   967
## 1108    4   967
## 1109    4   967
## 1110    4   967
## 1111    4   967
## 1112    4   967
## 1113    4   967
## 1114    4   967
## 1115    4   967
## 1116    4  1416
## 1117    4  1416
## 1118    4  1416
## 1119    4  1416
## 1120    4  1416
## 1121    4  1416
## 1122    4  1416
## 1123    4  1416
## 1124    4  1416
## 1125    4  1416
## 1126    4  1416
## 1127    4  1416
## 1128    4  1416
## 1129    4  1416
## 1130    4  1416
## 1131    4  1416
## 1132    4  1416
## 1133    4  1416
## 1134    4  1416
## 1135    4  1416
## 1136    4  1416
## 1137    4  1416
## 1138    4  1416
## 1139    4  1416
## 1140    4  1416
## 1141    4  1416
## 1142    4  1416
## 1143    4  1416
## 1144    4  1416
## 1145    4  1416
## 1146    4   825
## 1147    4   825
## 1148    4   825
## 1149    4   825
## 1150    4   825
## 1151    4   825
## 1152    4   825
## 1153    4   825
## 1154    4   825
## 1155    4   825
## 1156    4   825
## 1157    4   825
## 1158    4   825
## 1159    4   539
## 1160    4   539
## 1161    4   539
## 1162    4   539
## 1163    4   539
## 1164    4   539
## 1165    4   539
## 1166    4   539
## 1167    4   539
## 1168    4   539
## 1169    4   539
## 1170    4  1817
## 1171    4  1817
## 1172    4  1817
## 1173    4  1817
## 1174    4  1817
## 1175    4  1817
## 1176    4  1817
## 1177    4  1817
## 1178    4  1817
## 1179    4  1817
## 1180    4  1817
## 1181    4  1817
## 1182    4  1817
## 1183    4  1817
## 1184    4  1817
## 1185    4  1817
## 1186    4  1817
## 1187    4  1817
## 1188    4  1817
## 1189    4  1817
## 1190    4  1817
## 1191    4  1817
## 1192    4  1817
## 1193    4  1817
## 1194    4  1817
## 1195    4  1817
## 1196    4  1817
## 1197    4  1817
## 1198    4  1817
## 1199    4  1817
## 1200    4  1817
## 1201    4   890
## 1202    4   890
## 1203    4   890
## 1204    4   890
## 1205    4   890
## 1206    4   890
## 1207    4   890
## 1208    4   890
## 1209    4   890
## 1210    4   890
## 1211    4   890
## 1212    4   890
## 1213    4   890
## 1214    4   890
## 1215    4   890
## 1216    4   890
## 1217    4   335
## 1218    4   335
## 1219    4   335
## 1220    4   335
## 1221    4   164
## 1222    4   164
## 1223    4   164
## 1224    4   164
## 1225    4   358
## 1226    4   358
## 1227    4   358
## 1228    4   358
## 1229    4  1590
## 1230    4  1590
## 1231    4  1590
## 1232    4  1590
## 1233    4  1590
## 1234    4  1590
## 1235    4  1590
## 1236    4  1590
## 1237    4  1590
## 1238    4  1590
## 1239    4  1590
## 1240    4  1590
## 1241    4  1590
## 1242    4  1590
## 1243    4  1590
## 1244    4  1590
## 1245    4  1590
## 1246    4  1590
## 1247    4  1590
## 1248    4  1590
## 1249    4  1590
## 1250    4  1590
## 1251    4  1590
## 1252    4  1590
## 1253    4  1590
## 1254    4  1590
## 1255    4  1531
## 1256    4  1531
## 1257    4  1531
## 1258    4  1531
## 1259    4  1531
## 1260    4  1531
## 1261    4  1531
## 1262    4  1531
## 1263    4  1531
## 1264    4  1531
## 1265    4  1531
## 1266    4  1531
## 1267    4  1531
## 1268    4  1531
## 1269    4  1531
## 1270    4  1531
## 1271    4  1531
## 1272    4  1531
## 1273    4  1531
## 1274    4  1531
## 1275    4  1531
## 1276    4  1531
## 1277    4  1531
## 1278    4  1531
## 1279    4  1531
## 1280    4  1531
## 1281    4  1531
## 1282    4   908
## 1283    4   908
## 1284    4   908
## 1285    4   908
## 1286    4   908
## 1287    4   908
## 1288    4   908
## 1289    4   908
## 1290    4   908
## 1291    4   289
## 1292    4   289
## 1293    4   878
## 1294    4   878
## 1295    4   878
## 1296    4   878
## 1297    4   878
## 1298    4   878
## 1299    4   878
## 1300    4   878
## 1301    4   878
## 1302    4   878
## 1303    4   878
## 1304    4   878
## 1305    4   878
## 1306    4   878
## 1307    4   878
## 1308    4   878
## 1309    4   878
## 1310    4   878
## 1311    4   878
## 1312    4   878
## 1313    4   878
## 1314    4   878
## 1315    4   988
## 1316    4   988
## 1317    4   988
## 1318    4   988
## 1319    4   988
## 1320    4   988
## 1321    4   988
## 1322    4   988
## 1323    4   988
## 1324    4   988
## 1325    4   988
## 1326    4   988
## 1327    4   988
## 1328    4   988
## 1329    4   988
## 1330    4   988
## 1331    4   988
## 1332    4   988
## 1333    4   988
## 1334    4   988
## 1335    4   988
## 1336    4   988
## 1337    4   988
## 1338    3   726
## 1339    3   726
## 1340    3   726
## 1341    3   726
## 1342    3   726
## 1343    3   726
## 1344    3   726
## 1345    3   726
## 1346    3   726
## 1347    3   726
## 1348    3   726
## 1349    3   726
## 1350    3   726
## 1351    3   726
## 1352    3   726
## 1353    3   726
## 1354    3   726
## 1355    3   726
## 1356    3   726
## 1357    3   726
## 1358    3   726
## 1359    3   726
## 1360    3   726
## 1361    3   726
## 1362    3   726
## 1363    3   726
## 1364    3   726
## 1365    3   726
## 1366    3   559
## 1367    3   559
## 1368    3   559
## 1369    3   559
## 1370    3   559
## 1371    3   559
## 1372    3   559
## 1373    3   559
## 1374    3   559
## 1375    3   559
## 1376    3   559
## 1377    3   559
## 1378    3   559
## 1379    3   559
## 1380    3   559
## 1381    3   559
## 1382    3   559
## 1383    3   559
## 1384    3   559
## 1385    3   559
## 1386    3   292
## 1387    3   292
## 1388    3   292
## 1389    3   292
## 1390    3   292
## 1391    3   292
## 1392    3   292
## 1393    3   292
## 1394    3   292
## 1395    3   292
## 1396    3   292
## 1397    3   292
## 1398    3   292
## 1399    3   423
## 1400    3   423
## 1401    3   423
## 1402    3   423
## 1403    3   423
## 1404    3   423
## 1405    3   423
## 1406    3   423
## 1407    3   423
## 1408    3   423
## 1409    3   423
## 1410    3   423
## 1411    3   423
## 1412    3   423
## 1413    3   423
## 1414    3   423
## 1415    3   940
## 1416    3   940
## 1417    3   940
## 1418    3   940
## 1419    3   940
## 1420    3   940
## 1421    3   940
## 1422    3   940
## 1423    3   940
## 1424    3   940
## 1425    3   940
## 1426    3   940
## 1427    3   940
## 1428    3   940
## 1429    3   940
## 1430    3   940
## 1431    3   940
## 1432    3   940
## 1433    3   940
## 1434    3   940
## 1435    3   940
## 1436    3   940
## 1437    3   940
## 1438    3   940
## 1439    3   940
## 1440    3   940
## 1441    3   940
## 1442    3   940
## 1443    3   940
## 1444    3   940
## 1445    3   940
## 1446    3   940
## 1447    3  1970
## 1448    3  1970
## 1449    3  1970
## 1450    3  1970
## 1451    3  1970
## 1452    3  1970
## 1453    3  1970
## 1454    3  1970
## 1455    3  1970
## 1456    3  1970
## 1457    3  1970
## 1458    3  1970
## 1459    3  1970
## 1460    3  1970
## 1461    3  1970
## 1462    3  1970
## 1463    3  1970
## 1464    3  1970
## 1465    3  1970
## 1466    3  1970
## 1467    3  1970
## 1468    3  1970
## 1469    3  1970
## 1470    3  1970
## 1471    3  1970
## 1472    3  1970
## 1473    3  1970
## 1474    3  1970
## 1475    3  1970
## 1476    3  1970
## 1477    3  1970
## 1478    3  1970
## 1479    3  1970
## 1480    3  1970
## 1481    3  1970
## 1482    3  1970
## 1483    3  1970
## 1484    3  1970
## 1485    3  1970
## 1486    3  1970
## 1487    3  1970
## 1488    3  1970
## 1489    3  1970
## 1490    3  1970
## 1491    3  1970
## 1492    3  1970
## 1493    3  1970
## 1494    3   456
## 1495    3   456
## 1496    3   456
## 1497    3   456
## 1498    3   456
## 1499    3   456
## 1500    3   456
## 1501    3   456
## 1502    3   456
## 1503    3   456
## 1504    3   753
## 1505    3   753
## 1506    3   753
## 1507    3   753
## 1508    3   753
## 1509    3   753
## 1510    3   753
## 1511    3   753
## 1512    3   753
## 1513    3   753
## 1514    3   753
## 1515    3   753
## 1516    3   753
## 1517    3   753
## 1518    3   753
## 1519    3   753
## 1520    3   753
## 1521    3   753
## 1522    3   753
## 1523    3   753
## 1524    3   753
## 1525    3   753
## 1526    3   753
## 1527    3   753
## 1528    3   753
## 1529    3   753
## 1530    3   750
## 1531    3   750
## 1532    3   750
## 1533    3   750
## 1534    3   750
## 1535    3   750
## 1536    3   750
## 1537    3   750
## 1538    3   750
## 1539    3   750
## 1540    3   750
## 1541    3   750
## 1542    3   750
## 1543    3   750
## 1544    3   750
## 1545    3   750
## 1546    3   401
## 1547    3   401
## 1548    3   401
## 1549    3   401
## 1550    3   401
## 1551    3   401
## 1552    3   401
## 1553    3   401
## 1554    3   401
## 1555    3   401
## 1556    3   401
## 1557    3   616
## 1558    3   616
## 1559    3   616
## 1560    3   616
## 1561    3   616
## 1562    3   616
## 1563    3   616
## 1564    3   616
## 1565    3   616
## 1566    3   616
## 1567    3   616
## 1568    3   616
## 1569    3   616
## 1570    3   616
## 1571    3   616
## 1572    3   616
## 1573    3   616
## 1574    3   616
## 1575    3   616
## 1576    3   616
## 1577    3   616
## 1578    3   616
## 1579    3   616
## 1580    3   616
## 1581    3  1168
## 1582    3  1168
## 1583    3  1168
## 1584    3  1168
## 1585    3  1168
## 1586    3  1168
## 1587    3  1168
## 1588    3  1168
## 1589    3  1168
## 1590    3  1168
## 1591    3  1168
## 1592    3  1168
## 1593    3  1168
## 1594    3  1168
## 1595    3  1168
## 1596    3  1168
## 1597    3  1168
## 1598    3  1168
## 1599    3  1168
## 1600    3  1168
## 1601    3  1168
## 1602    3  1168
## 1603    3  1168
## 1604    3  1168
## 1605    3  1168
## 1606    3  1168
## 1607    3  1168
## 1608    3  1168
## 1609    3  1168
## 1610    3  1168
## 1611    3  1168
## 1612    3  1168
## 1613    3  1168
## 1614    3  1168
## 1615    3  1168
## 1616    3  1168
## 1617    3   584
## 1618    3   584
## 1619    3   584
## 1620    3   584
## 1621    3   584
## 1622    3   584
## 1623    3   584
## 1624    3   584
## 1625    3   584
## 1626    3   584
## 1627    3   584
## 1628    3   584
## 1629    3   584
## 1630    3   584
## 1631    3   584
## 1632    3   584
## 1633    3   584
## 1634    3   584
## 1635    3   850
## 1636    3   850
## 1637    3   850
## 1638    3   850
## 1639    3   850
## 1640    3   850
## 1641    3   850
## 1642    3   850
## 1643    3   850
## 1644    3   850
## 1645    3   850
## 1646    3   850
## 1647    3   850
## 1648    3   850
## 1649    3   850
## 1650    3   850
## 1651    3   850
## 1652    3   850
## 1653    3   850
## 1654    3   850
## 1655    3   850
## 1656    3   850
## 1657    3   850
## 1658    3   850
## 1659    3   850
## 1660    3   850
## 1661    3   850
## 1662    3   850
## 1663    3   850
## 1664    3   850
## 1665    3   850
## 1666    3   407
## 1667    3   407
## 1668    3   407
## 1669    3   407
## 1670    3   407
## 1671    3   407
## 1672    3   407
## 1673    3   407
## 1674    3   407
## 1675    3   407
## 1676    3   407
## 1677    3   407
## 1678    3   344
## 1679    3   344
## 1680    3   344
## 1681    3   344
## 1682    3   344
## 1683    3   344
## 1684    3   344
## 1685    3   344
## 1686    3   344
## 1687    3   344
## 1688    3   344
## 1689    3   344
## 1690    3   344
## 1691    3   344
## 1692    3   344
## 1693    3   344
## 1694    3   344
## 1695    3   344
## 1696    3   344
## 1697    3  1608
## 1698    3  1608
## 1699    3  1608
## 1700    3  1608
## 1701    3  1608
## 1702    3  1608
## 1703    3  1608
## 1704    3  1608
## 1705    3  1608
## 1706    3  1608
## 1707    3  1608
## 1708    3  1608
## 1709    3  1608
## 1710    3  1608
## 1711    3  1608
## 1712    3  1608
## 1713    3  1608
## 1714    3  1608
## 1715    3  1608
## 1716    3  1608
## 1717    3  1608
## 1718    3  1608
## 1719    3  1608
## 1720    3  1608
## 1721    3  1608
## 1722    3  1608
## 1723    3  1608
## 1724    3  1608
## 1725    3  1608
## 1726    3  1608
## 1727    3  1608
## 1728    3  1608
## 1729    3  1608
## 1730    3  1608
## 1731    3  1608
## 1732    3  1608
## 1733    3  1608
## 1734    3  1608
## 1735    3  1608
## 1736    3  1608
## 1737    3  1608
## 1738    3  1608
## 1739    3  1608
## 1740    3  1608
## 1741    3  1608
## 1742    3  1608
## 1743    3  1608
## 1744    3  1608
## 1745    3  1608
## 1746    3  1608
## 1747    3  1608
## 1748    3  1608
## 1749    3  1608
## 1750    3  1608
## 1751    3  1608
## 1752    3  1608
## 1753    3  1608
## 1754    3   371
## 1755    3   371
## 1756    3   371
## 1757    3   371
## 1758    3   371
## 1759    3   371
## 1760    3   371
## 1761    3   371
## 1762    3   371
## 1763    3   379
## 1764    3   379
## 1765    3   379
## 1766    3   379
## 1767    3   379
## 1768    3   379
## 1769    3   379
## 1770    3   379
## 1771    3   379
## 1772    3   379
## 1773    3   379
## 1774    3   379
## 1775    3   379
## 1776    3   967
## 1777    3   967
## 1778    3   967
## 1779    3   967
## 1780    3   967
## 1781    3   967
## 1782    3   967
## 1783    3   967
## 1784    3   967
## 1785    3   967
## 1786    3   967
## 1787    3   967
## 1788    3   967
## 1789    3   967
## 1790    3   967
## 1791    3   967
## 1792    3   967
## 1793    3   967
## 1794    3   967
## 1795    3   967
## 1796    3   967
## 1797    3   967
## 1798    3   967
## 1799    3   967
## 1800    3   967
## 1801    3   967
## 1802    3   967
## 1803    3   967
## 1804    3   967
## 1805    3   967
## 1806    3   967
## 1807    3   967
## 1808    3   967
## 1809    3   967
## 1810    3   967
## 1811    3   967
## 1812    3  1416
## 1813    3  1416
## 1814    3  1416
## 1815    3  1416
## 1816    3  1416
## 1817    3  1416
## 1818    3  1416
## 1819    3  1416
## 1820    3  1416
## 1821    3  1416
## 1822    3  1416
## 1823    3  1416
## 1824    3  1416
## 1825    3  1416
## 1826    3  1416
## 1827    3  1416
## 1828    3  1416
## 1829    3  1416
## 1830    3  1416
## 1831    3  1416
## 1832    3  1416
## 1833    3  1416
## 1834    3  1416
## 1835    3  1416
## 1836    3  1416
## 1837    3  1416
## 1838    3  1416
## 1839    3  1416
## 1840    3  1416
## 1841    3  1416
## 1842    3  1416
## 1843    3  1416
## 1844    3  1416
## 1845    3  1416
## 1846    3  1416
## 1847    3  1416
## 1848    3  1416
## 1849    3  1416
## 1850    3  1416
## 1851    3  1416
## 1852    3  1416
## 1853    3  1416
## 1854    3  1416
## 1855    3  1416
## 1856    3   825
## 1857    3   825
## 1858    3   825
## 1859    3   825
## 1860    3   825
## 1861    3   825
## 1862    3   825
## 1863    3   825
## 1864    3   825
## 1865    3   825
## 1866    3   825
## 1867    3   825
## 1868    3   825
## 1869    3   825
## 1870    3   825
## 1871    3   825
## 1872    3   825
## 1873    3   825
## 1874    3   825
## 1875    3   825
## 1876    3   825
## 1877    3   825
## 1878    3   825
## 1879    3   825
## 1880    3   825
## 1881    3   825
## 1882    3   825
## 1883    3   825
## 1884    3   825
## 1885    3   825
## 1886    3   220
## 1887    3   220
## 1888    3   220
## 1889    3   539
## 1890    3   539
## 1891    3   539
## 1892    3   539
## 1893    3   539
## 1894    3   539
## 1895    3   539
## 1896    3   539
## 1897    3   539
## 1898    3   539
## 1899    3   539
## 1900    3   539
## 1901    3   539
## 1902    3   539
## 1903    3  1817
## 1904    3  1817
## 1905    3  1817
## 1906    3  1817
## 1907    3  1817
## 1908    3  1817
## 1909    3  1817
## 1910    3  1817
## 1911    3  1817
## 1912    3  1817
## 1913    3  1817
## 1914    3  1817
## 1915    3  1817
## 1916    3  1817
## 1917    3  1817
## 1918    3  1817
## 1919    3  1817
## 1920    3  1817
## 1921    3  1817
## 1922    3  1817
## 1923    3  1817
## 1924    3  1817
## 1925    3  1817
## 1926    3  1817
## 1927    3  1817
## 1928    3  1817
## 1929    3  1817
## 1930    3  1817
## 1931    3  1817
## 1932    3  1817
## 1933    3  1817
## 1934    3  1817
## 1935    3  1817
## 1936    3  1817
## 1937    3  1817
## 1938    3  1817
## 1939    3  1817
## 1940    3  1817
## 1941    3  1817
## 1942    3  1817
## 1943    3  1817
## 1944    3  1817
## 1945    3  1817
## 1946    3  1817
## 1947    3  1817
## 1948    3  1817
## 1949    3  1817
## 1950    3  1817
## 1951    3  1817
## 1952    3  1817
## 1953    3  1817
## 1954    3  1817
## 1955    3  1817
## 1956    3  1817
## 1957    3  1817
## 1958    3  1817
## 1959    3  1817
## 1960    3  1817
## 1961    3  1817
## 1962    3  1817
## 1963    3  1817
## 1964    3  1817
## 1965    3  1817
## 1966    3  1817
## 1967    3   890
## 1968    3   890
## 1969    3   890
## 1970    3   890
## 1971    3   890
## 1972    3   890
## 1973    3   890
## 1974    3   890
## 1975    3   890
## 1976    3   890
## 1977    3   890
## 1978    3   890
## 1979    3   890
## 1980    3   890
## 1981    3   890
## 1982    3   890
## 1983    3   890
## 1984    3   890
## 1985    3   890
## 1986    3   890
## 1987    3   890
## 1988    3   890
## 1989    3   890
## 1990    3   890
## 1991    3   890
## 1992    3   890
## 1993    3   890
## 1994    3   335
## 1995    3   335
## 1996    3   335
## 1997    3   335
## 1998    3   335
## 1999    3   335
## 2000    3   335
## 2001    3   335
## 2002    3   335
## 2003    3   335
## 2004    3   164
## 2005    3   164
## 2006    3   164
## 2007    3   164
## 2008    3   164
## 2009    3   164
## 2010    3   358
## 2011    3   358
## 2012    3   358
## 2013    3   358
## 2014    3   358
## 2015    3   358
## 2016    3   358
## 2017    3   358
## 2018    3   358
## 2019    3   358
## 2020    3   358
## 2021    3   358
## 2022    3   358
## 2023    3   358
## 2024    3  1590
## 2025    3  1590
## 2026    3  1590
## 2027    3  1590
## 2028    3  1590
## 2029    3  1590
## 2030    3  1590
## 2031    3  1590
## 2032    3  1590
## 2033    3  1590
## 2034    3  1590
## 2035    3  1590
## 2036    3  1590
## 2037    3  1590
## 2038    3  1590
## 2039    3  1590
## 2040    3  1590
## 2041    3  1590
## 2042    3  1590
## 2043    3  1590
## 2044    3  1590
## 2045    3  1590
## 2046    3  1590
## 2047    3  1590
## 2048    3  1590
## 2049    3  1590
## 2050    3  1590
## 2051    3  1590
## 2052    3  1590
## 2053    3  1590
## 2054    3  1590
## 2055    3  1590
## 2056    3  1590
## 2057    3  1590
## 2058    3  1590
## 2059    3  1590
## 2060    3  1590
## 2061    3  1590
## 2062    3  1590
## 2063    3  1590
## 2064    3  1590
## 2065    3  1590
## 2066    3  1590
## 2067    3  1590
## 2068    3  1590
## 2069    3  1590
## 2070    3  1590
## 2071    3  1590
## 2072    3  1590
## 2073    3  1590
## 2074    3  1531
## 2075    3  1531
## 2076    3  1531
## 2077    3  1531
## 2078    3  1531
## 2079    3  1531
## 2080    3  1531
## 2081    3  1531
## 2082    3  1531
## 2083    3  1531
## 2084    3  1531
## 2085    3  1531
## 2086    3  1531
## 2087    3  1531
## 2088    3  1531
## 2089    3  1531
## 2090    3  1531
## 2091    3  1531
## 2092    3  1531
## 2093    3  1531
## 2094    3  1531
## 2095    3  1531
## 2096    3  1531
## 2097    3  1531
## 2098    3  1531
## 2099    3  1531
## 2100    3  1531
## 2101    3  1531
## 2102    3  1531
## 2103    3  1531
## 2104    3  1531
## 2105    3  1531
## 2106    3  1531
## 2107    3  1531
## 2108    3  1531
## 2109    3  1531
## 2110    3  1531
## 2111    3  1531
## 2112    3  1531
## 2113    3   908
## 2114    3   908
## 2115    3   908
## 2116    3   908
## 2117    3   908
## 2118    3   908
## 2119    3   908
## 2120    3   908
## 2121    3   908
## 2122    3   908
## 2123    3   908
## 2124    3   908
## 2125    3   908
## 2126    3   908
## 2127    3   908
## 2128    3   908
## 2129    3   908
## 2130    3   908
## 2131    3   908
## 2132    3   908
## 2133    3   908
## 2134    3   908
## 2135    3   908
## 2136    3   908
## 2137    3   908
## 2138    3   908
## 2139    3   908
## 2140    3   908
## 2141    3   908
## 2142    3   908
## 2143    3   908
## 2144    3   908
## 2145    3   908
## 2146    3   908
## 2147    3   908
## 2148    3   908
## 2149    3   908
## 2150    3   908
## 2151    3   908
## 2152    3   908
## 2153    3   908
## 2154    3   289
## 2155    3   289
## 2156    3   289
## 2157    3   878
## 2158    3   878
## 2159    3   878
## 2160    3   878
## 2161    3   878
## 2162    3   878
## 2163    3   878
## 2164    3   878
## 2165    3   878
## 2166    3   878
## 2167    3   878
## 2168    3   878
## 2169    3   878
## 2170    3   878
## 2171    3   878
## 2172    3   878
## 2173    3   878
## 2174    3   878
## 2175    3   878
## 2176    3   878
## 2177    3   878
## 2178    3   878
## 2179    3   988
## 2180    3   988
## 2181    3   988
## 2182    3   988
## 2183    3   988
## 2184    3   988
## 2185    3   988
## 2186    3   988
## 2187    3   988
## 2188    3   988
## 2189    3   988
## 2190    3   988
## 2191    3   988
## 2192    3   988
## 2193    3   988
## 2194    3   988
## 2195    3   988
## 2196    3   988
## 2197    3   988
## 2198    3   988
## 2199    3   988
## 2200    3   988
## 2201    3   988
## 2202    3   988
## 2203    3   988
## 2204    3   988
## 2205    3   988
## 2206    3   988
## 2207    2   726
## 2208    2   726
## 2209    2   726
## 2210    2   726
## 2211    2   726
## 2212    2   726
## 2213    2   726
## 2214    2   726
## 2215    2   726
## 2216    2   726
## 2217    2   726
## 2218    2   726
## 2219    2   726
## 2220    2   726
## 2221    2   726
## 2222    2   726
## 2223    2   726
## 2224    2   726
## 2225    2   726
## 2226    2   726
## 2227    2   726
## 2228    2   726
## 2229    2   726
## 2230    2   726
## 2231    2   726
## 2232    2   726
## 2233    2   726
## 2234    2   726
## 2235    2   726
## 2236    2   726
## 2237    2   726
## 2238    2   726
## 2239    2   726
## 2240    2   726
## 2241    2   726
## 2242    2   726
## 2243    2   726
## 2244    2   726
## 2245    2   726
## 2246    2   726
## 2247    2   726
## 2248    2   726
## 2249    2   726
## 2250    2   726
## 2251    2   726
## 2252    2   726
## 2253    2   726
## 2254    2   726
## 2255    2   726
## 2256    2   726
## 2257    2   726
## 2258    2   726
## 2259    2   726
## 2260    2   726
## 2261    2   726
## 2262    2   726
## 2263    2   726
## 2264    2   726
## 2265    2   726
## 2266    2   726
## 2267    2   726
## 2268    2   726
## 2269    2   726
## 2270    2   726
## 2271    2   726
## 2272    2   726
## 2273    2   726
## 2274    2   726
## 2275    2   726
## 2276    2   726
## 2277    2   726
## 2278    2   726
## 2279    2   726
## 2280    2   726
## 2281    2   726
## 2282    2   726
## 2283    2   726
## 2284    2   726
## 2285    2   726
## 2286    2   726
## 2287    2   726
## 2288    2   726
## 2289    2   726
## 2290    2   559
## 2291    2   559
## 2292    2   559
## 2293    2   559
## 2294    2   559
## 2295    2   559
## 2296    2   559
## 2297    2   559
## 2298    2   559
## 2299    2   559
## 2300    2   559
## 2301    2   559
## 2302    2   559
## 2303    2   559
## 2304    2   559
## 2305    2   559
## 2306    2   559
## 2307    2   559
## 2308    2   559
## 2309    2   559
## 2310    2   559
## 2311    2   559
## 2312    2   559
## 2313    2   559
## 2314    2   559
## 2315    2   559
## 2316    2   559
## 2317    2   559
## 2318    2   559
## 2319    2   559
## 2320    2   559
## 2321    2   559
## 2322    2   559
## 2323    2   559
## 2324    2   559
## 2325    2   559
## 2326    2   559
## 2327    2   559
## 2328    2   559
## 2329    2   559
## 2330    2   559
## 2331    2   559
## 2332    2   559
## 2333    2   559
## 2334    2   559
## 2335    2   559
## 2336    2   559
## 2337    2   559
## 2338    2   559
## 2339    2   559
## 2340    2   559
## 2341    2   559
## 2342    2   559
## 2343    2   559
## 2344    2   559
## 2345    2   559
## 2346    2   559
## 2347    2   559
## 2348    2   559
## 2349    2   559
## 2350    2   559
## 2351    2   559
## 2352    2   559
## 2353    2   559
## 2354    2   559
## 2355    2   559
## 2356    2   559
## 2357    2   559
## 2358    2   559
## 2359    2   559
## 2360    2   559
## 2361    2   559
## 2362    2   559
## 2363    2   292
## 2364    2   292
## 2365    2   292
## 2366    2   292
## 2367    2   292
## 2368    2   292
## 2369    2   292
## 2370    2   292
## 2371    2   292
## 2372    2   292
## 2373    2   292
## 2374    2   292
## 2375    2   292
## 2376    2   292
## 2377    2   292
## 2378    2   292
## 2379    2   292
## 2380    2   292
## 2381    2   292
## 2382    2   292
## 2383    2   292
## 2384    2   292
## 2385    2   292
## 2386    2   292
## 2387    2   292
## 2388    2   292
## 2389    2   292
## 2390    2   423
## 2391    2   423
## 2392    2   423
## 2393    2   423
## 2394    2   423
## 2395    2   423
## 2396    2   423
## 2397    2   423
## 2398    2   423
## 2399    2   423
## 2400    2   423
## 2401    2   423
## 2402    2   423
## 2403    2   423
## 2404    2   423
## 2405    2   423
## 2406    2   423
## 2407    2   423
## 2408    2   423
## 2409    2   423
## 2410    2   423
## 2411    2   423
## 2412    2   423
## 2413    2   423
## 2414    2   423
## 2415    2   423
## 2416    2   423
## 2417    2   423
## 2418    2   423
## 2419    2   423
## 2420    2   423
## 2421    2   423
## 2422    2   423
## 2423    2   423
## 2424    2   423
## 2425    2   423
## 2426    2   423
## 2427    2   423
## 2428    2   423
## 2429    2   423
## 2430    2   423
## 2431    2   423
## 2432    2   423
## 2433    2   940
## 2434    2   940
## 2435    2   940
## 2436    2   940
## 2437    2   940
## 2438    2   940
## 2439    2   940
## 2440    2   940
## 2441    2   940
## 2442    2   940
## 2443    2   940
## 2444    2   940
## 2445    2   940
## 2446    2   940
## 2447    2   940
## 2448    2   940
## 2449    2   940
## 2450    2   940
## 2451    2   940
## 2452    2   940
## 2453    2   940
## 2454    2   940
## 2455    2   940
## 2456    2   940
## 2457    2   940
## 2458    2   940
## 2459    2   940
## 2460    2   940
## 2461    2   940
## 2462    2   940
## 2463    2   940
## 2464    2   940
## 2465    2   940
## 2466    2   940
## 2467    2   940
## 2468    2   940
## 2469    2   940
## 2470    2   940
## 2471    2   940
## 2472    2   940
## 2473    2   940
## 2474    2   940
## 2475    2   940
## 2476    2   940
## 2477    2   940
## 2478    2   940
## 2479    2   940
## 2480    2   940
## 2481    2   940
## 2482    2   940
## 2483    2   940
## 2484    2   940
## 2485    2   940
## 2486    2   940
## 2487    2   940
## 2488    2   940
## 2489    2   940
## 2490    2   940
## 2491    2   940
## 2492    2   940
## 2493    2   940
## 2494    2   940
## 2495    2   940
## 2496    2   940
## 2497    2   940
## 2498    2   940
## 2499    2   940
## 2500    2   940
## 2501    2   940
## 2502    2   940
## 2503    2   940
## 2504    2   940
## 2505    2   940
## 2506    2   940
## 2507    2   940
## 2508    2   940
## 2509    2   940
## 2510    2   940
## 2511    2   940
## 2512    2   940
## 2513    2   940
## 2514    2   940
## 2515    2   940
## 2516    2   940
## 2517    2   940
## 2518    2   940
## 2519    2   940
## 2520    2   940
## 2521    2   940
## 2522    2   940
## 2523    2   940
## 2524    2   940
## 2525    2   940
## 2526    2   940
## 2527    2  1970
## 2528    2  1970
## 2529    2  1970
## 2530    2  1970
## 2531    2  1970
## 2532    2  1970
## 2533    2  1970
## 2534    2  1970
## 2535    2  1970
## 2536    2  1970
## 2537    2  1970
## 2538    2  1970
## 2539    2  1970
## 2540    2  1970
## 2541    2  1970
## 2542    2  1970
## 2543    2  1970
## 2544    2  1970
## 2545    2  1970
## 2546    2  1970
## 2547    2  1970
## 2548    2  1970
## 2549    2  1970
## 2550    2  1970
## 2551    2  1970
## 2552    2  1970
## 2553    2  1970
## 2554    2  1970
## 2555    2  1970
## 2556    2  1970
## 2557    2  1970
## 2558    2  1970
## 2559    2  1970
## 2560    2  1970
## 2561    2  1970
## 2562    2  1970
## 2563    2  1970
## 2564    2  1970
## 2565    2  1970
## 2566    2  1970
## 2567    2  1970
## 2568    2  1970
## 2569    2  1970
## 2570    2  1970
## 2571    2  1970
## 2572    2  1970
## 2573    2  1970
## 2574    2  1970
## 2575    2  1970
## 2576    2  1970
## 2577    2  1970
## 2578    2  1970
## 2579    2  1970
## 2580    2  1970
## 2581    2  1970
## 2582    2  1970
## 2583    2  1970
## 2584    2  1970
## 2585    2  1970
## 2586    2  1970
## 2587    2  1970
## 2588    2  1970
## 2589    2  1970
## 2590    2  1970
## 2591    2  1970
## 2592    2  1970
## 2593    2  1970
## 2594    2  1970
## 2595    2  1970
## 2596    2  1970
## 2597    2  1970
## 2598    2  1970
## 2599    2  1970
## 2600    2  1970
## 2601    2  1970
## 2602    2  1970
## 2603    2  1970
## 2604    2  1970
## 2605    2  1970
## 2606    2  1970
## 2607    2  1970
## 2608    2  1970
## 2609    2  1970
## 2610    2  1970
## 2611    2  1970
## 2612    2  1970
## 2613    2  1970
## 2614    2  1970
## 2615    2  1970
## 2616    2  1970
## 2617    2  1970
## 2618    2  1970
## 2619    2  1970
## 2620    2  1970
## 2621    2  1970
## 2622    2  1970
## 2623    2  1970
## 2624    2  1970
## 2625    2  1970
## 2626    2  1970
## 2627    2  1970
## 2628    2  1970
## 2629    2  1970
## 2630    2  1970
## 2631    2  1970
## 2632    2  1970
## 2633    2  1970
## 2634    2  1970
## 2635    2  1970
## 2636    2  1970
## 2637    2  1970
## 2638    2  1970
## 2639    2  1970
## 2640    2  1970
## 2641    2  1970
## 2642    2  1970
## 2643    2  1970
## 2644    2  1970
## 2645    2  1970
## 2646    2  1970
## 2647    2  1970
## 2648    2  1970
## 2649    2  1970
## 2650    2  1970
## 2651    2  1970
## 2652    2  1970
## 2653    2  1970
## 2654    2  1970
## 2655    2  1970
## 2656    2  1970
## 2657    2  1970
## 2658    2  1970
## 2659    2  1970
## 2660    2  1970
## 2661    2  1970
## 2662    2  1970
## 2663    2  1970
## 2664    2  1970
## 2665    2  1970
## 2666    2  1970
## 2667    2  1970
## 2668    2  1970
## 2669    2  1970
## 2670    2  1970
## 2671    2  1970
## 2672    2  1970
## 2673    2  1970
## 2674    2  1970
## 2675    2  1970
## 2676    2  1970
## 2677    2  1970
## 2678    2  1970
## 2679    2  1970
## 2680    2  1970
## 2681    2  1970
## 2682    2  1970
## 2683    2  1970
## 2684    2  1970
## 2685    2  1970
## 2686    2  1970
## 2687    2  1970
## 2688    2  1970
## 2689    2  1970
## 2690    2  1970
## 2691    2  1970
## 2692    2  1970
## 2693    2  1970
## 2694    2  1970
## 2695    2  1970
## 2696    2  1970
## 2697    2  1970
## 2698    2  1970
## 2699    2  1970
## 2700    2  1970
## 2701    2  1970
## 2702    2  1970
## 2703    2  1970
## 2704    2  1970
## 2705    2  1970
## 2706    2  1970
## 2707    2  1970
## 2708    2  1970
## 2709    2  1970
## 2710    2  1970
## 2711    2  1970
## 2712    2  1970
## 2713    2  1970
## 2714    2  1970
## 2715    2  1970
## 2716    2  1970
## 2717    2  1970
## 2718    2  1970
## 2719    2  1970
## 2720    2  1970
## 2721    2   456
## 2722    2   456
## 2723    2   456
## 2724    2   456
## 2725    2   456
## 2726    2   456
## 2727    2   456
## 2728    2   456
## 2729    2   456
## 2730    2   456
## 2731    2   456
## 2732    2   456
## 2733    2   456
## 2734    2   456
## 2735    2   456
## 2736    2   456
## 2737    2   456
## 2738    2   456
## 2739    2   456
## 2740    2   456
## 2741    2   456
## 2742    2   456
## 2743    2   456
## 2744    2   456
## 2745    2   456
## 2746    2   456
## 2747    2   456
## 2748    2   456
## 2749    2   456
## 2750    2   456
## 2751    2   456
## 2752    2   456
## 2753    2   456
## 2754    2   456
## 2755    2   456
## 2756    2   456
## 2757    2   456
## 2758    2   456
## 2759    2   753
## 2760    2   753
## 2761    2   753
## 2762    2   753
## 2763    2   753
## 2764    2   753
## 2765    2   753
## 2766    2   753
## 2767    2   753
## 2768    2   753
## 2769    2   753
## 2770    2   753
## 2771    2   753
## 2772    2   753
## 2773    2   753
## 2774    2   753
## 2775    2   753
## 2776    2   753
## 2777    2   753
## 2778    2   753
## 2779    2   753
## 2780    2   753
## 2781    2   753
## 2782    2   753
## 2783    2   753
## 2784    2   753
## 2785    2   753
## 2786    2   753
## 2787    2   753
## 2788    2   753
## 2789    2   753
## 2790    2   753
## 2791    2   753
## 2792    2   753
## 2793    2   753
## 2794    2   753
## 2795    2   753
## 2796    2   753
## 2797    2   753
## 2798    2   753
## 2799    2   753
## 2800    2   753
## 2801    2   753
## 2802    2   753
## 2803    2   753
## 2804    2   753
## 2805    2   753
## 2806    2   753
## 2807    2   753
## 2808    2   753
## 2809    2   753
## 2810    2   753
## 2811    2   753
## 2812    2   750
## 2813    2   750
## 2814    2   750
## 2815    2   750
## 2816    2   750
## 2817    2   750
## 2818    2   750
## 2819    2   750
## 2820    2   750
## 2821    2   750
## 2822    2   750
## 2823    2   750
## 2824    2   750
## 2825    2   750
## 2826    2   750
## 2827    2   750
## 2828    2   750
## 2829    2   750
## 2830    2   750
## 2831    2   750
## 2832    2   750
## 2833    2   750
## 2834    2   750
## 2835    2   750
## 2836    2   750
## 2837    2   750
## 2838    2   750
## 2839    2   750
## 2840    2   750
## 2841    2   750
## 2842    2   750
## 2843    2   750
## 2844    2   750
## 2845    2   750
## 2846    2   750
## 2847    2   750
## 2848    2   750
## 2849    2   750
## 2850    2   750
## 2851    2   750
## 2852    2   750
## 2853    2   750
## 2854    2   750
## 2855    2   750
## 2856    2   750
## 2857    2   750
## 2858    2   750
## 2859    2   750
## 2860    2   750
## 2861    2   750
## 2862    2   750
## 2863    2   750
## 2864    2   750
## 2865    2   750
## 2866    2   750
## 2867    2   750
## 2868    2   750
## 2869    2   750
## 2870    2   750
## 2871    2   750
## 2872    2   750
## 2873    2   750
## 2874    2   750
## 2875    2   750
## 2876    2   750
## 2877    2   750
## 2878    2   750
## 2879    2   750
## 2880    2   750
## 2881    2   401
## 2882    2   401
## 2883    2   401
## 2884    2   401
## 2885    2   401
## 2886    2   401
## 2887    2   401
## 2888    2   401
## 2889    2   401
## 2890    2   401
## 2891    2   401
## 2892    2   401
## 2893    2   401
## 2894    2   401
## 2895    2   401
## 2896    2   401
## 2897    2   401
## 2898    2   401
## 2899    2   401
## 2900    2   401
## 2901    2   401
## 2902    2   401
## 2903    2   401
## 2904    2   401
## 2905    2   401
## 2906    2   401
## 2907    2   401
## 2908    2   401
## 2909    2   401
## 2910    2   401
## 2911    2   401
## 2912    2   401
## 2913    2   401
## 2914    2   401
## 2915    2   401
## 2916    2   401
## 2917    2   401
## 2918    2   401
## 2919    2   401
## 2920    2   401
## 2921    2   401
## 2922    2   401
## 2923    2   401
## 2924    2   401
## 2925    2   616
## 2926    2   616
## 2927    2   616
## 2928    2   616
## 2929    2   616
## 2930    2   616
## 2931    2   616
## 2932    2   616
## 2933    2   616
## 2934    2   616
## 2935    2   616
## 2936    2   616
## 2937    2   616
## 2938    2   616
## 2939    2   616
## 2940    2   616
## 2941    2   616
## 2942    2   616
## 2943    2   616
## 2944    2   616
## 2945    2   616
## 2946    2   616
## 2947    2   616
## 2948    2   616
## 2949    2   616
## 2950    2   616
## 2951    2   616
## 2952    2   616
## 2953    2   616
## 2954    2   616
## 2955    2   616
## 2956    2   616
## 2957    2   616
## 2958    2   616
## 2959    2   616
## 2960    2   616
## 2961    2   616
## 2962    2   616
## 2963    2   616
## 2964    2   616
## 2965    2   616
## 2966    2   616
## 2967    2   616
## 2968    2   616
## 2969    2   616
## 2970    2   616
## 2971    2   616
## 2972    2   616
## 2973    2   616
## 2974    2   616
## 2975    2   616
## 2976    2  1168
## 2977    2  1168
## 2978    2  1168
## 2979    2  1168
## 2980    2  1168
## 2981    2  1168
## 2982    2  1168
## 2983    2  1168
## 2984    2  1168
## 2985    2  1168
## 2986    2  1168
## 2987    2  1168
## 2988    2  1168
## 2989    2  1168
## 2990    2  1168
## 2991    2  1168
## 2992    2  1168
## 2993    2  1168
## 2994    2  1168
## 2995    2  1168
## 2996    2  1168
## 2997    2  1168
## 2998    2  1168
## 2999    2  1168
## 3000    2  1168
## 3001    2  1168
## 3002    2  1168
## 3003    2  1168
## 3004    2  1168
## 3005    2  1168
## 3006    2  1168
## 3007    2  1168
## 3008    2  1168
## 3009    2  1168
## 3010    2  1168
## 3011    2  1168
## 3012    2  1168
## 3013    2  1168
## 3014    2  1168
## 3015    2  1168
## 3016    2  1168
## 3017    2  1168
## 3018    2  1168
## 3019    2  1168
## 3020    2  1168
## 3021    2  1168
## 3022    2  1168
## 3023    2  1168
## 3024    2  1168
## 3025    2  1168
## 3026    2  1168
## 3027    2  1168
## 3028    2  1168
## 3029    2  1168
## 3030    2  1168
## 3031    2  1168
## 3032    2  1168
## 3033    2  1168
## 3034    2  1168
## 3035    2  1168
## 3036    2  1168
## 3037    2  1168
## 3038    2  1168
## 3039    2  1168
## 3040    2  1168
## 3041    2  1168
## 3042    2  1168
## 3043    2  1168
## 3044    2  1168
## 3045    2  1168
## 3046    2  1168
## 3047    2  1168
## 3048    2  1168
## 3049    2  1168
## 3050    2  1168
## 3051    2  1168
## 3052    2  1168
## 3053    2  1168
## 3054    2  1168
## 3055    2  1168
## 3056    2  1168
## 3057    2   584
## 3058    2   584
## 3059    2   584
## 3060    2   584
## 3061    2   584
## 3062    2   584
## 3063    2   584
## 3064    2   584
## 3065    2   584
## 3066    2   584
## 3067    2   584
## 3068    2   584
## 3069    2   584
## 3070    2   584
## 3071    2   584
## 3072    2   584
## 3073    2   584
## 3074    2   584
## 3075    2   584
## 3076    2   584
## 3077    2   584
## 3078    2   584
## 3079    2   584
## 3080    2   584
## 3081    2   584
## 3082    2   584
## 3083    2   584
## 3084    2   584
## 3085    2   584
## 3086    2   584
## 3087    2   584
## 3088    2   584
## 3089    2   584
## 3090    2   584
## 3091    2   584
## 3092    2   584
## 3093    2   584
## 3094    2   584
## 3095    2   584
## 3096    2   584
## 3097    2   584
## 3098    2   584
## 3099    2   584
## 3100    2   584
## 3101    2   584
## 3102    2   584
## 3103    2   584
## 3104    2   584
## 3105    2   584
## 3106    2   584
## 3107    2   584
## 3108    2   584
## 3109    2   584
## 3110    2   584
## 3111    2   584
## 3112    2   584
## 3113    2   584
## 3114    2   584
## 3115    2   850
## 3116    2   850
## 3117    2   850
## 3118    2   850
## 3119    2   850
## 3120    2   850
## 3121    2   850
## 3122    2   850
## 3123    2   850
## 3124    2   850
## 3125    2   850
## 3126    2   850
## 3127    2   850
## 3128    2   850
## 3129    2   850
## 3130    2   850
## 3131    2   850
## 3132    2   850
## 3133    2   850
## 3134    2   850
## 3135    2   850
## 3136    2   850
## 3137    2   850
## 3138    2   850
## 3139    2   850
## 3140    2   850
## 3141    2   850
## 3142    2   850
## 3143    2   850
## 3144    2   850
## 3145    2   850
## 3146    2   850
## 3147    2   850
## 3148    2   850
## 3149    2   850
## 3150    2   850
## 3151    2   850
## 3152    2   850
## 3153    2   850
## 3154    2   850
## 3155    2   850
## 3156    2   850
## 3157    2   850
## 3158    2   850
## 3159    2   850
## 3160    2   850
## 3161    2   850
## 3162    2   850
## 3163    2   850
## 3164    2   850
## 3165    2   850
## 3166    2   850
## 3167    2   850
## 3168    2   850
## 3169    2   850
## 3170    2   850
## 3171    2   850
## 3172    2   850
## 3173    2   407
## 3174    2   407
## 3175    2   407
## 3176    2   407
## 3177    2   407
## 3178    2   407
## 3179    2   407
## 3180    2   407
## 3181    2   407
## 3182    2   407
## 3183    2   407
## 3184    2   407
## 3185    2   407
## 3186    2   407
## 3187    2   407
## 3188    2   407
## 3189    2   407
## 3190    2   407
## 3191    2   407
## 3192    2   407
## 3193    2   407
## 3194    2   407
## 3195    2   407
## 3196    2   407
## 3197    2   407
## 3198    2   407
## 3199    2   407
## 3200    2   407
## 3201    2   407
## 3202    2   407
## 3203    2   407
## 3204    2   407
## 3205    2   344
## 3206    2   344
## 3207    2   344
## 3208    2   344
## 3209    2   344
## 3210    2   344
## 3211    2   344
## 3212    2   344
## 3213    2   344
## 3214    2   344
## 3215    2   344
## 3216    2   344
## 3217    2   344
## 3218    2   344
## 3219    2   344
## 3220    2   344
## 3221    2   344
## 3222    2   344
## 3223    2   344
## 3224    2   344
## 3225    2   344
## 3226    2   344
## 3227    2   344
## 3228    2   344
## 3229    2   344
## 3230    2   344
## 3231    2   344
## 3232    2   344
## 3233    2   344
## 3234    2   344
## 3235    2   344
## 3236    2   344
## 3237    2   344
## 3238    2   344
## 3239    2   344
## 3240    2   344
## 3241    2   344
## 3242    2  1608
## 3243    2  1608
## 3244    2  1608
## 3245    2  1608
## 3246    2  1608
## 3247    2  1608
## 3248    2  1608
## 3249    2  1608
## 3250    2  1608
## 3251    2  1608
## 3252    2  1608
## 3253    2  1608
## 3254    2  1608
## 3255    2  1608
## 3256    2  1608
## 3257    2  1608
## 3258    2  1608
## 3259    2  1608
## 3260    2  1608
## 3261    2  1608
## 3262    2  1608
## 3263    2  1608
## 3264    2  1608
## 3265    2  1608
## 3266    2  1608
## 3267    2  1608
## 3268    2  1608
## 3269    2  1608
## 3270    2  1608
## 3271    2  1608
## 3272    2  1608
## 3273    2  1608
## 3274    2  1608
## 3275    2  1608
## 3276    2  1608
## 3277    2  1608
## 3278    2  1608
## 3279    2  1608
## 3280    2  1608
## 3281    2  1608
## 3282    2  1608
## 3283    2  1608
## 3284    2  1608
## 3285    2  1608
## 3286    2  1608
## 3287    2  1608
## 3288    2  1608
## 3289    2  1608
## 3290    2  1608
## 3291    2  1608
## 3292    2  1608
## 3293    2  1608
## 3294    2  1608
## 3295    2  1608
## 3296    2  1608
## 3297    2  1608
## 3298    2  1608
## 3299    2  1608
## 3300    2  1608
## 3301    2  1608
## 3302    2  1608
## 3303    2  1608
## 3304    2  1608
## 3305    2  1608
## 3306    2  1608
## 3307    2  1608
## 3308    2  1608
## 3309    2  1608
## 3310    2  1608
## 3311    2  1608
## 3312    2  1608
## 3313    2  1608
## 3314    2  1608
## 3315    2  1608
## 3316    2  1608
## 3317    2  1608
## 3318    2  1608
## 3319    2  1608
## 3320    2  1608
## 3321    2  1608
## 3322    2  1608
## 3323    2  1608
## 3324    2  1608
## 3325    2  1608
## 3326    2  1608
## 3327    2  1608
## 3328    2  1608
## 3329    2  1608
## 3330    2  1608
## 3331    2  1608
## 3332    2  1608
## 3333    2  1608
## 3334    2  1608
## 3335    2  1608
## 3336    2  1608
## 3337    2  1608
## 3338    2  1608
## 3339    2  1608
## 3340    2  1608
## 3341    2  1608
## 3342    2  1608
## 3343    2  1608
## 3344    2  1608
## 3345    2  1608
## 3346    2  1608
## 3347    2  1608
## 3348    2  1608
## 3349    2  1608
## 3350    2  1608
## 3351    2  1608
## 3352    2  1608
## 3353    2  1608
## 3354    2  1608
## 3355    2  1608
## 3356    2  1608
## 3357    2  1608
## 3358    2  1608
## 3359    2  1608
## 3360    2  1608
## 3361    2  1608
## 3362    2  1608
## 3363    2  1608
## 3364    2  1608
## 3365    2  1608
## 3366    2  1608
## 3367    2  1608
## 3368    2  1608
## 3369    2  1608
## 3370    2  1608
## 3371    2  1608
## 3372    2  1608
## 3373    2  1608
## 3374    2  1608
## 3375    2  1608
## 3376    2  1608
## 3377    2  1608
## 3378    2  1608
## 3379    2  1608
## 3380    2   371
## 3381    2   371
## 3382    2   371
## 3383    2   371
## 3384    2   371
## 3385    2   371
## 3386    2   371
## 3387    2   371
## 3388    2   371
## 3389    2   371
## 3390    2   371
## 3391    2   371
## 3392    2   371
## 3393    2   371
## 3394    2   371
## 3395    2   371
## 3396    2   371
## 3397    2   371
## 3398    2   371
## 3399    2   371
## 3400    2   371
## 3401    2   371
## 3402    2   371
## 3403    2   371
## 3404    2   371
## 3405    2   371
## 3406    2   371
## 3407    2   371
## 3408    2   371
## 3409    2   371
## 3410    2   371
## 3411    2   371
## 3412    2   371
## 3413    2   371
## 3414    2   371
## 3415    2   371
## 3416    2   371
## 3417    2   371
## 3418    2   379
## 3419    2   379
## 3420    2   379
## 3421    2   379
## 3422    2   379
## 3423    2   379
## 3424    2   379
## 3425    2   379
## 3426    2   379
## 3427    2   379
## 3428    2   379
## 3429    2   379
## 3430    2   379
## 3431    2   379
## 3432    2   379
## 3433    2   379
## 3434    2   379
## 3435    2   379
## 3436    2   379
## 3437    2   379
## 3438    2   379
## 3439    2   379
## 3440    2   379
## 3441    2   379
## 3442    2   379
## 3443    2   379
## 3444    2   379
## 3445    2   379
## 3446    2   379
## 3447    2   379
## 3448    2   379
## 3449    2   379
## 3450    2   379
## 3451    2   379
## 3452    2   379
## 3453    2   379
## 3454    2   379
## 3455    2   379
## 3456    2   967
## 3457    2   967
## 3458    2   967
## 3459    2   967
## 3460    2   967
## 3461    2   967
## 3462    2   967
## 3463    2   967
## 3464    2   967
## 3465    2   967
## 3466    2   967
## 3467    2   967
## 3468    2   967
## 3469    2   967
## 3470    2   967
## 3471    2   967
## 3472    2   967
## 3473    2   967
## 3474    2   967
## 3475    2   967
## 3476    2   967
## 3477    2   967
## 3478    2   967
## 3479    2   967
## 3480    2   967
## 3481    2   967
## 3482    2   967
## 3483    2   967
## 3484    2   967
## 3485    2   967
## 3486    2   967
## 3487    2   967
## 3488    2   967
## 3489    2   967
## 3490    2   967
## 3491    2   967
## 3492    2   967
## 3493    2   967
## 3494    2   967
## 3495    2   967
## 3496    2   967
## 3497    2   967
## 3498    2   967
## 3499    2   967
## 3500    2   967
## 3501    2   967
## 3502    2   967
## 3503    2   967
## 3504    2   967
## 3505    2   967
## 3506    2   967
## 3507    2   967
## 3508    2   967
## 3509    2   967
## 3510    2   967
## 3511    2   967
## 3512    2   967
## 3513    2   967
## 3514    2   967
## 3515    2   967
## 3516    2   967
## 3517    2   967
## 3518    2   967
## 3519    2   967
## 3520    2   967
## 3521    2   967
## 3522    2   967
## 3523    2   967
## 3524    2   967
## 3525    2   967
## 3526    2   967
## 3527    2   967
## 3528    2   967
## 3529    2   967
## 3530    2   967
## 3531    2   967
## 3532    2   967
## 3533    2   967
## 3534    2   967
## 3535    2   967
## 3536    2   967
## 3537    2   967
## 3538    2   967
## 3539    2   967
## 3540    2   967
## 3541    2   967
## 3542    2   967
## 3543    2   967
## 3544    2   967
## 3545    2   967
## 3546    2   967
## 3547    2   967
## 3548    2   967
## 3549    2  1416
## 3550    2  1416
## 3551    2  1416
## 3552    2  1416
## 3553    2  1416
## 3554    2  1416
## 3555    2  1416
## 3556    2  1416
## 3557    2  1416
## 3558    2  1416
## 3559    2  1416
## 3560    2  1416
## 3561    2  1416
## 3562    2  1416
## 3563    2  1416
## 3564    2  1416
## 3565    2  1416
## 3566    2  1416
## 3567    2  1416
## 3568    2  1416
## 3569    2  1416
## 3570    2  1416
## 3571    2  1416
## 3572    2  1416
## 3573    2  1416
## 3574    2  1416
## 3575    2  1416
## 3576    2  1416
## 3577    2  1416
## 3578    2  1416
## 3579    2  1416
## 3580    2  1416
## 3581    2  1416
## 3582    2  1416
## 3583    2  1416
## 3584    2  1416
## 3585    2  1416
## 3586    2  1416
## 3587    2  1416
## 3588    2  1416
## 3589    2  1416
## 3590    2  1416
## 3591    2  1416
## 3592    2  1416
## 3593    2  1416
## 3594    2  1416
## 3595    2  1416
## 3596    2  1416
## 3597    2  1416
## 3598    2  1416
## 3599    2  1416
## 3600    2  1416
## 3601    2  1416
## 3602    2  1416
## 3603    2  1416
## 3604    2  1416
## 3605    2  1416
## 3606    2  1416
## 3607    2  1416
## 3608    2  1416
## 3609    2  1416
## 3610    2  1416
## 3611    2  1416
## 3612    2  1416
## 3613    2  1416
## 3614    2  1416
## 3615    2  1416
## 3616    2  1416
## 3617    2  1416
## 3618    2  1416
## 3619    2  1416
## 3620    2  1416
## 3621    2  1416
## 3622    2  1416
## 3623    2  1416
## 3624    2  1416
## 3625    2  1416
## 3626    2  1416
## 3627    2  1416
## 3628    2  1416
## 3629    2  1416
## 3630    2  1416
## 3631    2  1416
## 3632    2  1416
## 3633    2  1416
## 3634    2  1416
## 3635    2  1416
## 3636    2  1416
## 3637    2  1416
## 3638    2  1416
## 3639    2  1416
## 3640    2  1416
## 3641    2  1416
## 3642    2  1416
## 3643    2  1416
## 3644    2  1416
## 3645    2  1416
## 3646    2  1416
## 3647    2  1416
## 3648    2  1416
## 3649    2  1416
## 3650    2  1416
## 3651    2  1416
## 3652    2  1416
## 3653    2  1416
## 3654    2  1416
## 3655    2  1416
## 3656    2  1416
## 3657    2  1416
## 3658    2  1416
## 3659    2  1416
## 3660    2  1416
## 3661    2  1416
## 3662    2  1416
## 3663    2  1416
## 3664    2  1416
## 3665    2  1416
## 3666    2  1416
## 3667    2  1416
## 3668    2  1416
## 3669    2  1416
## 3670    2  1416
## 3671    2  1416
## 3672    2  1416
## 3673    2  1416
## 3674    2  1416
## 3675    2  1416
## 3676    2  1416
## 3677    2  1416
## 3678    2   825
## 3679    2   825
## 3680    2   825
## 3681    2   825
## 3682    2   825
## 3683    2   825
## 3684    2   825
## 3685    2   825
## 3686    2   825
## 3687    2   825
## 3688    2   825
## 3689    2   825
## 3690    2   825
## 3691    2   825
## 3692    2   825
## 3693    2   825
## 3694    2   825
## 3695    2   825
## 3696    2   825
## 3697    2   825
## 3698    2   825
## 3699    2   825
## 3700    2   825
## 3701    2   825
## 3702    2   825
## 3703    2   825
## 3704    2   825
## 3705    2   825
## 3706    2   825
## 3707    2   825
## 3708    2   825
## 3709    2   825
## 3710    2   825
## 3711    2   825
## 3712    2   825
## 3713    2   825
## 3714    2   825
## 3715    2   825
## 3716    2   825
## 3717    2   825
## 3718    2   825
## 3719    2   825
## 3720    2   825
## 3721    2   825
## 3722    2   825
## 3723    2   825
## 3724    2   825
## 3725    2   825
## 3726    2   825
## 3727    2   825
## 3728    2   825
## 3729    2   825
## 3730    2   825
## 3731    2   825
## 3732    2   825
## 3733    2   825
## 3734    2   825
## 3735    2   825
## 3736    2   825
## 3737    2   825
## 3738    2   825
## 3739    2   825
## 3740    2   825
## 3741    2   825
## 3742    2   825
## 3743    2   825
## 3744    2   825
## 3745    2   825
## 3746    2   825
## 3747    2   825
## 3748    2   825
## 3749    2   825
## 3750    2   825
## 3751    2   825
## 3752    2   825
## 3753    2   825
## 3754    2   825
## 3755    2   825
## 3756    2   825
## 3757    2   825
## 3758    2   825
## 3759    2   825
## 3760    2   825
## 3761    2   825
## 3762    2   825
## 3763    2   825
## 3764    2   825
## 3765    2   825
## 3766    2   825
## 3767    2   220
## 3768    2   220
## 3769    2   220
## 3770    2   220
## 3771    2   220
## 3772    2   220
## 3773    2   220
## 3774    2   220
## 3775    2   220
## 3776    2   220
## 3777    2   220
## 3778    2   220
## 3779    2   220
## 3780    2   220
## 3781    2   220
## 3782    2   220
## 3783    2   220
## 3784    2   220
## 3785    2   220
## 3786    2   220
## 3787    2   220
## 3788    2   220
## 3789    2   220
## 3790    2   220
## 3791    2   220
## 3792    2   539
## 3793    2   539
## 3794    2   539
## 3795    2   539
## 3796    2   539
## 3797    2   539
## 3798    2   539
## 3799    2   539
## 3800    2   539
## 3801    2   539
## 3802    2   539
## 3803    2   539
## 3804    2   539
## 3805    2   539
## 3806    2   539
## 3807    2   539
## 3808    2   539
## 3809    2   539
## 3810    2   539
## 3811    2   539
## 3812    2   539
## 3813    2   539
## 3814    2   539
## 3815    2   539
## 3816    2   539
## 3817    2   539
## 3818    2   539
## 3819    2   539
## 3820    2   539
## 3821    2   539
## 3822    2   539
## 3823    2   539
## 3824    2   539
## 3825    2   539
## 3826    2  1817
## 3827    2  1817
## 3828    2  1817
## 3829    2  1817
## 3830    2  1817
## 3831    2  1817
## 3832    2  1817
## 3833    2  1817
## 3834    2  1817
## 3835    2  1817
## 3836    2  1817
## 3837    2  1817
## 3838    2  1817
## 3839    2  1817
## 3840    2  1817
## 3841    2  1817
## 3842    2  1817
## 3843    2  1817
## 3844    2  1817
## 3845    2  1817
## 3846    2  1817
## 3847    2  1817
## 3848    2  1817
## 3849    2  1817
## 3850    2  1817
## 3851    2  1817
## 3852    2  1817
## 3853    2  1817
## 3854    2  1817
## 3855    2  1817
## 3856    2  1817
## 3857    2  1817
## 3858    2  1817
## 3859    2  1817
## 3860    2  1817
## 3861    2  1817
## 3862    2  1817
## 3863    2  1817
## 3864    2  1817
## 3865    2  1817
## 3866    2  1817
## 3867    2  1817
## 3868    2  1817
## 3869    2  1817
## 3870    2  1817
## 3871    2  1817
## 3872    2  1817
## 3873    2  1817
## 3874    2  1817
## 3875    2  1817
## 3876    2  1817
## 3877    2  1817
## 3878    2  1817
## 3879    2  1817
## 3880    2  1817
## 3881    2  1817
## 3882    2  1817
## 3883    2  1817
## 3884    2  1817
## 3885    2  1817
## 3886    2  1817
## 3887    2  1817
## 3888    2  1817
## 3889    2  1817
## 3890    2  1817
## 3891    2  1817
## 3892    2  1817
## 3893    2  1817
## 3894    2  1817
## 3895    2  1817
## 3896    2  1817
## 3897    2  1817
## 3898    2  1817
## 3899    2  1817
## 3900    2  1817
## 3901    2  1817
## 3902    2  1817
## 3903    2  1817
## 3904    2  1817
## 3905    2  1817
## 3906    2  1817
## 3907    2  1817
## 3908    2  1817
## 3909    2  1817
## 3910    2  1817
## 3911    2  1817
## 3912    2  1817
## 3913    2  1817
## 3914    2  1817
## 3915    2  1817
## 3916    2  1817
## 3917    2  1817
## 3918    2  1817
## 3919    2  1817
## 3920    2  1817
## 3921    2  1817
## 3922    2  1817
## 3923    2  1817
## 3924    2  1817
## 3925    2  1817
## 3926    2  1817
## 3927    2  1817
## 3928    2  1817
## 3929    2  1817
## 3930    2  1817
## 3931    2  1817
## 3932    2  1817
## 3933    2  1817
## 3934    2  1817
## 3935    2  1817
## 3936    2  1817
## 3937    2  1817
## 3938    2  1817
## 3939    2  1817
## 3940    2  1817
## 3941    2  1817
## 3942    2  1817
## 3943    2  1817
## 3944    2  1817
## 3945    2  1817
## 3946    2  1817
## 3947    2  1817
## 3948    2  1817
## 3949    2  1817
## 3950    2  1817
## 3951    2  1817
## 3952    2  1817
## 3953    2  1817
## 3954    2  1817
## 3955    2  1817
## 3956    2  1817
## 3957    2  1817
## 3958    2  1817
## 3959    2  1817
## 3960    2  1817
## 3961    2  1817
## 3962    2  1817
## 3963    2  1817
## 3964    2  1817
## 3965    2  1817
## 3966    2  1817
## 3967    2  1817
## 3968    2  1817
## 3969    2  1817
## 3970    2  1817
## 3971    2  1817
## 3972    2  1817
## 3973    2  1817
## 3974    2  1817
## 3975    2  1817
## 3976    2  1817
## 3977    2  1817
## 3978    2  1817
## 3979    2  1817
## 3980    2  1817
## 3981    2  1817
## 3982    2  1817
## 3983    2  1817
## 3984    2  1817
## 3985    2  1817
## 3986    2  1817
## 3987    2  1817
## 3988    2  1817
## 3989    2  1817
## 3990    2  1817
## 3991    2  1817
## 3992    2  1817
## 3993    2  1817
## 3994    2  1817
## 3995    2  1817
## 3996    2  1817
## 3997    2  1817
## 3998    2  1817
## 3999    2  1817
## 4000    2  1817
## 4001    2  1817
## 4002    2  1817
## 4003    2  1817
## 4004    2  1817
## 4005    2  1817
## 4006    2  1817
## 4007    2  1817
## 4008    2  1817
## 4009    2  1817
## 4010    2  1817
## 4011    2  1817
## 4012    2  1817
## 4013    2  1817
## 4014    2   890
## 4015    2   890
## 4016    2   890
## 4017    2   890
## 4018    2   890
## 4019    2   890
## 4020    2   890
## 4021    2   890
## 4022    2   890
## 4023    2   890
## 4024    2   890
## 4025    2   890
## 4026    2   890
## 4027    2   890
## 4028    2   890
## 4029    2   890
## 4030    2   890
## 4031    2   890
## 4032    2   890
## 4033    2   890
## 4034    2   890
## 4035    2   890
## 4036    2   890
## 4037    2   890
## 4038    2   890
## 4039    2   890
## 4040    2   890
## 4041    2   890
## 4042    2   890
## 4043    2   890
## 4044    2   890
## 4045    2   890
## 4046    2   890
## 4047    2   890
## 4048    2   890
## 4049    2   890
## 4050    2   890
## 4051    2   890
## 4052    2   890
## 4053    2   890
## 4054    2   890
## 4055    2   890
## 4056    2   890
## 4057    2   890
## 4058    2   890
## 4059    2   890
## 4060    2   890
## 4061    2   890
## 4062    2   890
## 4063    2   890
## 4064    2   890
## 4065    2   890
## 4066    2   890
## 4067    2   890
## 4068    2   890
## 4069    2   890
## 4070    2   890
## 4071    2   890
## 4072    2   890
## 4073    2   890
## 4074    2   890
## 4075    2   890
## 4076    2   890
## 4077    2   890
## 4078    2   890
## 4079    2   890
## 4080    2   890
## 4081    2   890
## 4082    2   890
## 4083    2   890
## 4084    2   890
## 4085    2   890
## 4086    2   890
## 4087    2   890
## 4088    2   890
## 4089    2   890
## 4090    2   890
## 4091    2   890
## 4092    2   890
## 4093    2   890
## 4094    2   890
## 4095    2   890
## 4096    2   890
## 4097    2   890
## 4098    2   335
## 4099    2   335
## 4100    2   335
## 4101    2   335
## 4102    2   335
## 4103    2   335
## 4104    2   335
## 4105    2   335
## 4106    2   335
## 4107    2   335
## 4108    2   335
## 4109    2   335
## 4110    2   335
## 4111    2   335
## 4112    2   335
## 4113    2   335
## 4114    2   335
## 4115    2   335
## 4116    2   335
## 4117    2   335
## 4118    2   335
## 4119    2   335
## 4120    2   335
## 4121    2   335
## 4122    2   335
## 4123    2   335
## 4124    2   335
## 4125    2   335
## 4126    2   335
## 4127    2   335
## 4128    2   335
## 4129    2   335
## 4130    2   335
## 4131    2   335
## 4132    2   335
## 4133    2   335
## 4134    2   335
## 4135    2   335
## 4136    2   335
## 4137    2   335
## 4138    2   335
## 4139    2   164
## 4140    2   164
## 4141    2   164
## 4142    2   164
## 4143    2   164
## 4144    2   164
## 4145    2   164
## 4146    2   164
## 4147    2   164
## 4148    2   164
## 4149    2   164
## 4150    2   164
## 4151    2   164
## 4152    2   358
## 4153    2   358
## 4154    2   358
## 4155    2   358
## 4156    2   358
## 4157    2   358
## 4158    2   358
## 4159    2   358
## 4160    2   358
## 4161    2   358
## 4162    2   358
## 4163    2   358
## 4164    2   358
## 4165    2   358
## 4166    2   358
## 4167    2   358
## 4168    2   358
## 4169    2   358
## 4170    2   358
## 4171    2   358
## 4172    2   358
## 4173    2   358
## 4174    2   358
## 4175    2   358
## 4176    2   358
## 4177    2   358
## 4178    2   358
## 4179    2   358
## 4180    2   358
## 4181    2   358
## 4182    2   358
## 4183    2   358
## 4184    2   358
## 4185    2  1590
## 4186    2  1590
## 4187    2  1590
## 4188    2  1590
## 4189    2  1590
## 4190    2  1590
## 4191    2  1590
## 4192    2  1590
## 4193    2  1590
## 4194    2  1590
## 4195    2  1590
## 4196    2  1590
## 4197    2  1590
## 4198    2  1590
## 4199    2  1590
## 4200    2  1590
## 4201    2  1590
## 4202    2  1590
## 4203    2  1590
## 4204    2  1590
## 4205    2  1590
## 4206    2  1590
## 4207    2  1590
## 4208    2  1590
## 4209    2  1590
## 4210    2  1590
## 4211    2  1590
## 4212    2  1590
## 4213    2  1590
## 4214    2  1590
## 4215    2  1590
## 4216    2  1590
## 4217    2  1590
## 4218    2  1590
## 4219    2  1590
## 4220    2  1590
## 4221    2  1590
## 4222    2  1590
## 4223    2  1590
## 4224    2  1590
## 4225    2  1590
## 4226    2  1590
## 4227    2  1590
## 4228    2  1590
## 4229    2  1590
## 4230    2  1590
## 4231    2  1590
## 4232    2  1590
## 4233    2  1590
## 4234    2  1590
## 4235    2  1590
## 4236    2  1590
## 4237    2  1590
## 4238    2  1590
## 4239    2  1590
## 4240    2  1590
## 4241    2  1590
## 4242    2  1590
## 4243    2  1590
## 4244    2  1590
## 4245    2  1590
## 4246    2  1590
## 4247    2  1590
## 4248    2  1590
## 4249    2  1590
## 4250    2  1590
## 4251    2  1590
## 4252    2  1590
## 4253    2  1590
## 4254    2  1590
## 4255    2  1590
## 4256    2  1590
## 4257    2  1590
## 4258    2  1590
## 4259    2  1590
## 4260    2  1590
## 4261    2  1590
## 4262    2  1590
## 4263    2  1590
## 4264    2  1590
## 4265    2  1590
## 4266    2  1590
## 4267    2  1590
## 4268    2  1590
## 4269    2  1590
## 4270    2  1590
## 4271    2  1590
## 4272    2  1590
## 4273    2  1590
## 4274    2  1590
## 4275    2  1590
## 4276    2  1590
## 4277    2  1590
## 4278    2  1590
## 4279    2  1590
## 4280    2  1590
## 4281    2  1590
## 4282    2  1590
## 4283    2  1590
## 4284    2  1590
## 4285    2  1590
## 4286    2  1590
## 4287    2  1590
## 4288    2  1590
## 4289    2  1590
## 4290    2  1590
## 4291    2  1590
## 4292    2  1590
## 4293    2  1590
## 4294    2  1590
## 4295    2  1590
## 4296    2  1590
## 4297    2  1590
## 4298    2  1590
## 4299    2  1590
## 4300    2  1590
## 4301    2  1590
## 4302    2  1590
## 4303    2  1590
## 4304    2  1590
## 4305    2  1590
## 4306    2  1590
## 4307    2  1590
## 4308    2  1590
## 4309    2  1590
## 4310    2  1590
## 4311    2  1590
## 4312    2  1590
## 4313    2  1590
## 4314    2  1590
## 4315    2  1590
## 4316    2  1590
## 4317    2  1590
## 4318    2  1590
## 4319    2  1590
## 4320    2  1531
## 4321    2  1531
## 4322    2  1531
## 4323    2  1531
## 4324    2  1531
## 4325    2  1531
## 4326    2  1531
## 4327    2  1531
## 4328    2  1531
## 4329    2  1531
## 4330    2  1531
## 4331    2  1531
## 4332    2  1531
## 4333    2  1531
## 4334    2  1531
## 4335    2  1531
## 4336    2  1531
## 4337    2  1531
## 4338    2  1531
## 4339    2  1531
## 4340    2  1531
## 4341    2  1531
## 4342    2  1531
## 4343    2  1531
## 4344    2  1531
## 4345    2  1531
## 4346    2  1531
## 4347    2  1531
## 4348    2  1531
## 4349    2  1531
## 4350    2  1531
## 4351    2  1531
## 4352    2  1531
## 4353    2  1531
## 4354    2  1531
## 4355    2  1531
## 4356    2  1531
## 4357    2  1531
## 4358    2  1531
## 4359    2  1531
## 4360    2  1531
## 4361    2  1531
## 4362    2  1531
## 4363    2  1531
## 4364    2  1531
## 4365    2  1531
## 4366    2  1531
## 4367    2  1531
## 4368    2  1531
## 4369    2  1531
## 4370    2  1531
## 4371    2  1531
## 4372    2  1531
## 4373    2  1531
## 4374    2  1531
## 4375    2  1531
## 4376    2  1531
## 4377    2  1531
## 4378    2  1531
## 4379    2  1531
## 4380    2  1531
## 4381    2  1531
## 4382    2  1531
## 4383    2  1531
## 4384    2  1531
## 4385    2  1531
## 4386    2  1531
## 4387    2  1531
## 4388    2  1531
## 4389    2  1531
## 4390    2  1531
## 4391    2  1531
## 4392    2  1531
## 4393    2  1531
## 4394    2  1531
## 4395    2  1531
## 4396    2  1531
## 4397    2  1531
## 4398    2  1531
## 4399    2  1531
## 4400    2  1531
## 4401    2  1531
## 4402    2  1531
## 4403    2  1531
## 4404    2  1531
## 4405    2  1531
## 4406    2  1531
## 4407    2  1531
## 4408    2  1531
## 4409    2  1531
## 4410    2  1531
## 4411    2  1531
## 4412    2  1531
## 4413    2  1531
## 4414    2  1531
## 4415    2  1531
## 4416    2  1531
## 4417    2  1531
## 4418    2  1531
## 4419    2  1531
## 4420    2  1531
## 4421    2  1531
## 4422    2  1531
## 4423    2  1531
## 4424    2  1531
## 4425    2  1531
## 4426    2  1531
## 4427    2   908
## 4428    2   908
## 4429    2   908
## 4430    2   908
## 4431    2   908
## 4432    2   908
## 4433    2   908
## 4434    2   908
## 4435    2   908
## 4436    2   908
## 4437    2   908
## 4438    2   908
## 4439    2   908
## 4440    2   908
## 4441    2   908
## 4442    2   908
## 4443    2   908
## 4444    2   908
## 4445    2   908
## 4446    2   908
## 4447    2   908
## 4448    2   908
## 4449    2   908
## 4450    2   908
## 4451    2   908
## 4452    2   908
## 4453    2   908
## 4454    2   908
## 4455    2   908
## 4456    2   908
## 4457    2   908
## 4458    2   908
## 4459    2   908
## 4460    2   908
## 4461    2   908
## 4462    2   908
## 4463    2   908
## 4464    2   908
## 4465    2   908
## 4466    2   908
## 4467    2   908
## 4468    2   908
## 4469    2   908
## 4470    2   908
## 4471    2   908
## 4472    2   908
## 4473    2   908
## 4474    2   908
## 4475    2   908
## 4476    2   908
## 4477    2   908
## 4478    2   908
## 4479    2   908
## 4480    2   908
## 4481    2   908
## 4482    2   908
## 4483    2   908
## 4484    2   908
## 4485    2   908
## 4486    2   908
## 4487    2   908
## 4488    2   908
## 4489    2   908
## 4490    2   908
## 4491    2   908
## 4492    2   908
## 4493    2   908
## 4494    2   908
## 4495    2   908
## 4496    2   908
## 4497    2   908
## 4498    2   908
## 4499    2   908
## 4500    2   908
## 4501    2   908
## 4502    2   908
## 4503    2   908
## 4504    2   908
## 4505    2   908
## 4506    2   908
## 4507    2   908
## 4508    2   289
## 4509    2   289
## 4510    2   289
## 4511    2   289
## 4512    2   289
## 4513    2   289
## 4514    2   289
## 4515    2   289
## 4516    2   289
## 4517    2   289
## 4518    2   289
## 4519    2   289
## 4520    2   289
## 4521    2   289
## 4522    2   289
## 4523    2   289
## 4524    2   289
## 4525    2   289
## 4526    2   289
## 4527    2   289
## 4528    2   289
## 4529    2   289
## 4530    2   289
## 4531    2   289
## 4532    2   289
## 4533    2   289
## 4534    2   289
## 4535    2   289
## 4536    2   289
## 4537    2   289
## 4538    2   289
## 4539    2   289
## 4540    2   289
## 4541    2   289
## 4542    2   289
## 4543    2   289
## 4544    2   289
## 4545    2   878
## 4546    2   878
## 4547    2   878
## 4548    2   878
## 4549    2   878
## 4550    2   878
## 4551    2   878
## 4552    2   878
## 4553    2   878
## 4554    2   878
## 4555    2   878
## 4556    2   878
## 4557    2   878
## 4558    2   878
## 4559    2   878
## 4560    2   878
## 4561    2   878
## 4562    2   878
## 4563    2   878
## 4564    2   878
## 4565    2   878
## 4566    2   878
## 4567    2   878
## 4568    2   878
## 4569    2   878
## 4570    2   878
## 4571    2   878
## 4572    2   878
## 4573    2   878
## 4574    2   878
## 4575    2   878
## 4576    2   878
## 4577    2   878
## 4578    2   878
## 4579    2   878
## 4580    2   878
## 4581    2   878
## 4582    2   878
## 4583    2   878
## 4584    2   878
## 4585    2   878
## 4586    2   878
## 4587    2   878
## 4588    2   878
## 4589    2   878
## 4590    2   878
## 4591    2   878
## 4592    2   878
## 4593    2   878
## 4594    2   878
## 4595    2   878
## 4596    2   878
## 4597    2   878
## 4598    2   878
## 4599    2   878
## 4600    2   878
## 4601    2   878
## 4602    2   878
## 4603    2   878
## 4604    2   878
## 4605    2   878
## 4606    2   878
## 4607    2   878
## 4608    2   878
## 4609    2   878
## 4610    2   878
## 4611    2   878
## 4612    2   878
## 4613    2   878
## 4614    2   878
## 4615    2   878
## 4616    2   878
## 4617    2   878
## 4618    2   878
## 4619    2   878
## 4620    2   878
## 4621    2   878
## 4622    2   878
## 4623    2   878
## 4624    2   878
## 4625    2   878
## 4626    2   878
## 4627    2   878
## 4628    2   878
## 4629    2   878
## 4630    2   878
## 4631    2   878
## 4632    2   878
## 4633    2   878
## 4634    2   878
## 4635    2   878
## 4636    2   878
## 4637    2   878
## 4638    2   878
## 4639    2   878
## 4640    2   878
## 4641    2   878
## 4642    2   878
## 4643    2   878
## 4644    2   878
## 4645    2   878
## 4646    2   988
## 4647    2   988
## 4648    2   988
## 4649    2   988
## 4650    2   988
## 4651    2   988
## 4652    2   988
## 4653    2   988
## 4654    2   988
## 4655    2   988
## 4656    2   988
## 4657    2   988
## 4658    2   988
## 4659    2   988
## 4660    2   988
## 4661    2   988
## 4662    2   988
## 4663    2   988
## 4664    2   988
## 4665    2   988
## 4666    2   988
## 4667    2   988
## 4668    2   988
## 4669    2   988
## 4670    2   988
## 4671    2   988
## 4672    2   988
## 4673    2   988
## 4674    2   988
## 4675    2   988
## 4676    2   988
## 4677    2   988
## 4678    2   988
## 4679    2   988
## 4680    2   988
## 4681    2   988
## 4682    2   988
## 4683    2   988
## 4684    2   988
## 4685    2   988
## 4686    2   988
## 4687    2   988
## 4688    2   988
## 4689    2   988
## 4690    2   988
## 4691    2   988
## 4692    2   988
## 4693    2   988
## 4694    2   988
## 4695    2   988
## 4696    2   988
## 4697    2   988
## 4698    2   988
## 4699    2   988
## 4700    2   988
## 4701    2   988
## 4702    2   988
## 4703    2   988
## 4704    2   988
## 4705    2   988
## 4706    2   988
## 4707    2   988
## 4708    2   988
## 4709    2   988
## 4710    2   988
## 4711    2   988
## 4712    2   988
## 4713    2   988
## 4714    2   988
## 4715    2   988
## 4716    2   988
## 4717    2   988
## 4718    2   988
## 4719    2   988
## 4720    2   988
## 4721    2   988
## 4722    2   988
## 4723    2   988
## 4724    2   988
## 4725    2   988
## 4726    2   988
## 4727    2   988
## 4728    2   988
## 4729    2   988
## 4730    2   988
## 4731    2   988
## 4732    2   988
## 4733    2   988
## 4734    2   988
## 4735    2   988
## 4736    2   988
## 4737    2   988
## 4738    2   988
## 4739    2   988
## 4740    2   988
## 4741    2   988
## 4742    2   988
## 4743    2   988
## 4744    2   988
## 4745    2   988
## 4746    2   988
## 4747    2   988
## 4748    2   988
## 4749    2   988
## 4750    2   988
## 4751    2   988
## 4752    2   988
## 4753    2   988
## 4754    1   726
## 4755    1   726
## 4756    1   726
## 4757    1   726
## 4758    1   726
## 4759    1   726
## 4760    1   726
## 4761    1   726
## 4762    1   726
## 4763    1   726
## 4764    1   726
## 4765    1   726
## 4766    1   726
## 4767    1   726
## 4768    1   726
## 4769    1   726
## 4770    1   726
## 4771    1   726
## 4772    1   726
## 4773    1   726
## 4774    1   726
## 4775    1   726
## 4776    1   726
## 4777    1   726
## 4778    1   726
## 4779    1   726
## 4780    1   726
## 4781    1   726
## 4782    1   726
## 4783    1   726
## 4784    1   726
## 4785    1   726
## 4786    1   726
## 4787    1   726
## 4788    1   726
## 4789    1   726
## 4790    1   726
## 4791    1   726
## 4792    1   726
## 4793    1   726
## 4794    1   726
## 4795    1   726
## 4796    1   726
## 4797    1   726
## 4798    1   726
## 4799    1   726
## 4800    1   726
## 4801    1   726
## 4802    1   726
## 4803    1   726
## 4804    1   726
## 4805    1   726
## 4806    1   726
## 4807    1   726
## 4808    1   726
## 4809    1   726
## 4810    1   726
## 4811    1   726
## 4812    1   726
## 4813    1   726
## 4814    1   726
## 4815    1   726
## 4816    1   726
## 4817    1   726
## 4818    1   726
## 4819    1   726
## 4820    1   726
## 4821    1   726
## 4822    1   726
## 4823    1   726
## 4824    1   726
## 4825    1   726
## 4826    1   726
## 4827    1   726
## 4828    1   726
## 4829    1   726
## 4830    1   726
## 4831    1   726
## 4832    1   726
## 4833    1   726
## 4834    1   726
## 4835    1   726
## 4836    1   726
## 4837    1   726
## 4838    1   726
## 4839    1   726
## 4840    1   726
## 4841    1   726
## 4842    1   726
## 4843    1   726
## 4844    1   726
## 4845    1   726
## 4846    1   726
## 4847    1   726
## 4848    1   726
## 4849    1   726
## 4850    1   726
## 4851    1   726
## 4852    1   726
## 4853    1   726
## 4854    1   726
## 4855    1   726
## 4856    1   726
## 4857    1   726
## 4858    1   726
## 4859    1   726
## 4860    1   726
## 4861    1   726
## 4862    1   726
## 4863    1   726
## 4864    1   726
## 4865    1   726
## 4866    1   726
## 4867    1   726
## 4868    1   726
## 4869    1   726
## 4870    1   726
## 4871    1   726
## 4872    1   726
## 4873    1   726
## 4874    1   726
## 4875    1   726
## 4876    1   726
## 4877    1   726
## 4878    1   726
## 4879    1   726
## 4880    1   726
## 4881    1   726
## 4882    1   726
## 4883    1   726
## 4884    1   726
## 4885    1   726
## 4886    1   726
## 4887    1   726
## 4888    1   726
## 4889    1   726
## 4890    1   726
## 4891    1   726
## 4892    1   726
## 4893    1   726
## 4894    1   726
## 4895    1   726
## 4896    1   726
## 4897    1   726
## 4898    1   726
## 4899    1   726
## 4900    1   726
## 4901    1   726
## 4902    1   726
## 4903    1   726
## 4904    1   726
## 4905    1   726
## 4906    1   726
## 4907    1   726
## 4908    1   726
## 4909    1   726
## 4910    1   726
## 4911    1   726
## 4912    1   726
## 4913    1   726
## 4914    1   726
## 4915    1   726
## 4916    1   726
## 4917    1   726
## 4918    1   726
## 4919    1   726
## 4920    1   726
## 4921    1   726
## 4922    1   726
## 4923    1   726
## 4924    1   726
## 4925    1   726
## 4926    1   726
## 4927    1   726
## 4928    1   726
## 4929    1   726
## 4930    1   726
## 4931    1   726
## 4932    1   726
## 4933    1   726
## 4934    1   726
## 4935    1   726
## 4936    1   726
## 4937    1   726
## 4938    1   726
## 4939    1   726
## 4940    1   726
## 4941    1   726
## 4942    1   726
## 4943    1   726
## 4944    1   726
## 4945    1   726
## 4946    1   726
## 4947    1   726
## 4948    1   726
## 4949    1   726
## 4950    1   726
## 4951    1   726
## 4952    1   726
## 4953    1   726
## 4954    1   726
## 4955    1   726
## 4956    1   726
## 4957    1   726
## 4958    1   726
## 4959    1   726
## 4960    1   726
## 4961    1   726
## 4962    1   726
## 4963    1   726
## 4964    1   726
## 4965    1   726
## 4966    1   726
## 4967    1   726
## 4968    1   726
## 4969    1   726
## 4970    1   726
## 4971    1   726
## 4972    1   726
## 4973    1   726
## 4974    1   726
## 4975    1   726
## 4976    1   726
## 4977    1   726
## 4978    1   726
## 4979    1   726
## 4980    1   726
## 4981    1   726
## 4982    1   726
## 4983    1   726
## 4984    1   726
## 4985    1   726
## 4986    1   726
## 4987    1   726
## 4988    1   726
## 4989    1   726
## 4990    1   726
## 4991    1   726
## 4992    1   726
## 4993    1   726
## 4994    1   726
## 4995    1   726
## 4996    1   726
## 4997    1   726
## 4998    1   726
## 4999    1   726
## 5000    1   726
## 5001    1   726
## 5002    1   726
## 5003    1   726
## 5004    1   726
## 5005    1   726
## 5006    1   726
## 5007    1   726
## 5008    1   726
## 5009    1   726
## 5010    1   726
## 5011    1   726
## 5012    1   726
## 5013    1   726
## 5014    1   726
## 5015    1   726
## 5016    1   726
## 5017    1   726
## 5018    1   726
## 5019    1   726
## 5020    1   726
## 5021    1   726
## 5022    1   726
## 5023    1   726
## 5024    1   726
## 5025    1   726
## 5026    1   726
## 5027    1   726
## 5028    1   726
## 5029    1   726
## 5030    1   726
## 5031    1   726
## 5032    1   726
## 5033    1   726
## 5034    1   726
## 5035    1   726
## 5036    1   726
## 5037    1   726
## 5038    1   726
## 5039    1   726
## 5040    1   726
## 5041    1   726
## 5042    1   726
## 5043    1   726
## 5044    1   726
## 5045    1   726
## 5046    1   726
## 5047    1   726
## 5048    1   726
## 5049    1   726
## 5050    1   726
## 5051    1   726
## 5052    1   726
## 5053    1   726
## 5054    1   726
## 5055    1   726
## 5056    1   726
## 5057    1   726
## 5058    1   726
## 5059    1   726
## 5060    1   726
## 5061    1   726
## 5062    1   726
## 5063    1   726
## 5064    1   726
## 5065    1   726
## 5066    1   726
## 5067    1   726
## 5068    1   726
## 5069    1   726
## 5070    1   726
## 5071    1   726
## 5072    1   726
## 5073    1   726
## 5074    1   726
## 5075    1   726
## 5076    1   726
## 5077    1   726
## 5078    1   726
## 5079    1   726
## 5080    1   726
## 5081    1   559
## 5082    1   559
## 5083    1   559
## 5084    1   559
## 5085    1   559
## 5086    1   559
## 5087    1   559
## 5088    1   559
## 5089    1   559
## 5090    1   559
## 5091    1   559
## 5092    1   559
## 5093    1   559
## 5094    1   559
## 5095    1   559
## 5096    1   559
## 5097    1   559
## 5098    1   559
## 5099    1   559
## 5100    1   559
## 5101    1   559
## 5102    1   559
## 5103    1   559
## 5104    1   559
## 5105    1   559
## 5106    1   559
## 5107    1   559
## 5108    1   559
## 5109    1   559
## 5110    1   559
## 5111    1   559
## 5112    1   559
## 5113    1   559
## 5114    1   559
## 5115    1   559
## 5116    1   559
## 5117    1   559
## 5118    1   559
## 5119    1   559
## 5120    1   559
## 5121    1   559
## 5122    1   559
## 5123    1   559
## 5124    1   559
## 5125    1   559
## 5126    1   559
## 5127    1   559
## 5128    1   559
## 5129    1   559
## 5130    1   559
## 5131    1   559
## 5132    1   559
## 5133    1   559
## 5134    1   559
## 5135    1   559
## 5136    1   559
## 5137    1   559
## 5138    1   559
## 5139    1   559
## 5140    1   559
## 5141    1   559
## 5142    1   559
## 5143    1   559
## 5144    1   559
## 5145    1   559
## 5146    1   559
## 5147    1   559
## 5148    1   559
## 5149    1   559
## 5150    1   559
## 5151    1   559
## 5152    1   559
## 5153    1   559
## 5154    1   559
## 5155    1   559
## 5156    1   559
## 5157    1   559
## 5158    1   559
## 5159    1   559
## 5160    1   559
## 5161    1   559
## 5162    1   559
## 5163    1   559
## 5164    1   559
## 5165    1   559
## 5166    1   559
## 5167    1   559
## 5168    1   559
## 5169    1   559
## 5170    1   559
## 5171    1   559
## 5172    1   559
## 5173    1   559
## 5174    1   559
## 5175    1   559
## 5176    1   559
## 5177    1   559
## 5178    1   559
## 5179    1   559
## 5180    1   559
## 5181    1   559
## 5182    1   559
## 5183    1   559
## 5184    1   559
## 5185    1   559
## 5186    1   559
## 5187    1   559
## 5188    1   559
## 5189    1   559
## 5190    1   559
## 5191    1   559
## 5192    1   559
## 5193    1   559
## 5194    1   559
## 5195    1   559
## 5196    1   559
## 5197    1   559
## 5198    1   559
## 5199    1   559
## 5200    1   559
## 5201    1   559
## 5202    1   559
## 5203    1   559
## 5204    1   559
## 5205    1   559
## 5206    1   559
## 5207    1   559
## 5208    1   559
## 5209    1   559
## 5210    1   559
## 5211    1   559
## 5212    1   559
## 5213    1   559
## 5214    1   559
## 5215    1   559
## 5216    1   559
## 5217    1   559
## 5218    1   559
## 5219    1   559
## 5220    1   559
## 5221    1   559
## 5222    1   559
## 5223    1   559
## 5224    1   559
## 5225    1   559
## 5226    1   559
## 5227    1   559
## 5228    1   559
## 5229    1   559
## 5230    1   559
## 5231    1   559
## 5232    1   559
## 5233    1   559
## 5234    1   559
## 5235    1   559
## 5236    1   559
## 5237    1   559
## 5238    1   559
## 5239    1   559
## 5240    1   559
## 5241    1   559
## 5242    1   559
## 5243    1   559
## 5244    1   559
## 5245    1   559
## 5246    1   559
## 5247    1   559
## 5248    1   559
## 5249    1   559
## 5250    1   559
## 5251    1   559
## 5252    1   559
## 5253    1   559
## 5254    1   559
## 5255    1   559
## 5256    1   559
## 5257    1   559
## 5258    1   559
## 5259    1   559
## 5260    1   559
## 5261    1   559
## 5262    1   559
## 5263    1   559
## 5264    1   559
## 5265    1   559
## 5266    1   559
## 5267    1   559
## 5268    1   559
## 5269    1   559
## 5270    1   559
## 5271    1   559
## 5272    1   559
## 5273    1   559
## 5274    1   559
## 5275    1   559
## 5276    1   559
## 5277    1   559
## 5278    1   559
## 5279    1   559
## 5280    1   559
## 5281    1   559
## 5282    1   559
## 5283    1   559
## 5284    1   559
## 5285    1   559
## 5286    1   559
## 5287    1   559
## 5288    1   559
## 5289    1   559
## 5290    1   559
## 5291    1   559
## 5292    1   559
## 5293    1   559
## 5294    1   559
## 5295    1   559
## 5296    1   559
## 5297    1   559
## 5298    1   559
## 5299    1   559
## 5300    1   559
## 5301    1   559
## 5302    1   559
## 5303    1   559
## 5304    1   559
## 5305    1   559
## 5306    1   559
## 5307    1   559
## 5308    1   559
## 5309    1   559
## 5310    1   559
## 5311    1   559
## 5312    1   559
## 5313    1   559
## 5314    1   559
## 5315    1   559
## 5316    1   559
## 5317    1   559
## 5318    1   559
## 5319    1   559
## 5320    1   559
## 5321    1   559
## 5322    1   559
## 5323    1   559
## 5324    1   559
## 5325    1   559
## 5326    1   559
## 5327    1   559
## 5328    1   559
## 5329    1   559
## 5330    1   559
## 5331    1   559
## 5332    1   559
## 5333    1   559
## 5334    1   559
## 5335    1   559
## 5336    1   559
## 5337    1   559
## 5338    1   559
## 5339    1   559
## 5340    1   559
## 5341    1   559
## 5342    1   559
## 5343    1   559
## 5344    1   559
## 5345    1   559
## 5346    1   559
## 5347    1   559
## 5348    1   559
## 5349    1   559
## 5350    1   559
## 5351    1   559
## 5352    1   559
## 5353    1   559
## 5354    1   559
## 5355    1   559
## 5356    1   559
## 5357    1   559
## 5358    1   559
## 5359    1   559
## 5360    1   559
## 5361    1   559
## 5362    1   292
## 5363    1   292
## 5364    1   292
## 5365    1   292
## 5366    1   292
## 5367    1   292
## 5368    1   292
## 5369    1   292
## 5370    1   292
## 5371    1   292
## 5372    1   292
## 5373    1   292
## 5374    1   292
## 5375    1   292
## 5376    1   292
## 5377    1   292
## 5378    1   292
## 5379    1   292
## 5380    1   292
## 5381    1   292
## 5382    1   292
## 5383    1   292
## 5384    1   292
## 5385    1   292
## 5386    1   292
## 5387    1   292
## 5388    1   292
## 5389    1   292
## 5390    1   292
## 5391    1   292
## 5392    1   292
## 5393    1   292
## 5394    1   292
## 5395    1   292
## 5396    1   292
## 5397    1   292
## 5398    1   292
## 5399    1   292
## 5400    1   292
## 5401    1   292
## 5402    1   292
## 5403    1   292
## 5404    1   292
## 5405    1   292
## 5406    1   292
## 5407    1   292
## 5408    1   292
## 5409    1   292
## 5410    1   292
## 5411    1   292
## 5412    1   292
## 5413    1   292
## 5414    1   292
## 5415    1   292
## 5416    1   292
## 5417    1   292
## 5418    1   292
## 5419    1   292
## 5420    1   292
## 5421    1   292
## 5422    1   292
## 5423    1   292
## 5424    1   292
## 5425    1   292
## 5426    1   292
## 5427    1   292
## 5428    1   292
## 5429    1   292
## 5430    1   292
## 5431    1   292
## 5432    1   292
## 5433    1   292
## 5434    1   292
## 5435    1   292
## 5436    1   292
## 5437    1   292
## 5438    1   292
## 5439    1   292
## 5440    1   292
## 5441    1   292
## 5442    1   292
## 5443    1   292
## 5444    1   292
## 5445    1   292
## 5446    1   292
## 5447    1   292
## 5448    1   292
## 5449    1   292
## 5450    1   292
## 5451    1   292
## 5452    1   292
## 5453    1   292
## 5454    1   292
## 5455    1   292
## 5456    1   292
## 5457    1   292
## 5458    1   292
## 5459    1   292
## 5460    1   292
## 5461    1   292
## 5462    1   292
## 5463    1   292
## 5464    1   292
## 5465    1   292
## 5466    1   292
## 5467    1   292
## 5468    1   292
## 5469    1   292
## 5470    1   292
## 5471    1   292
## 5472    1   292
## 5473    1   292
## 5474    1   292
## 5475    1   292
## 5476    1   292
## 5477    1   292
## 5478    1   292
## 5479    1   292
## 5480    1   292
## 5481    1   292
## 5482    1   292
## 5483    1   292
## 5484    1   292
## 5485    1   292
## 5486    1   292
## 5487    1   292
## 5488    1   292
## 5489    1   292
## 5490    1   292
## 5491    1   292
## 5492    1   292
## 5493    1   292
## 5494    1   292
## 5495    1   423
## 5496    1   423
## 5497    1   423
## 5498    1   423
## 5499    1   423
## 5500    1   423
## 5501    1   423
## 5502    1   423
## 5503    1   423
## 5504    1   423
## 5505    1   423
## 5506    1   423
## 5507    1   423
## 5508    1   423
## 5509    1   423
## 5510    1   423
## 5511    1   423
## 5512    1   423
## 5513    1   423
## 5514    1   423
## 5515    1   423
## 5516    1   423
## 5517    1   423
## 5518    1   423
## 5519    1   423
## 5520    1   423
## 5521    1   423
## 5522    1   423
## 5523    1   423
## 5524    1   423
## 5525    1   423
## 5526    1   423
## 5527    1   423
## 5528    1   423
## 5529    1   423
## 5530    1   423
## 5531    1   423
## 5532    1   423
## 5533    1   423
## 5534    1   423
## 5535    1   423
## 5536    1   423
## 5537    1   423
## 5538    1   423
## 5539    1   423
## 5540    1   423
## 5541    1   423
## 5542    1   423
## 5543    1   423
## 5544    1   423
## 5545    1   423
## 5546    1   423
## 5547    1   423
## 5548    1   423
## 5549    1   423
## 5550    1   423
## 5551    1   423
## 5552    1   423
## 5553    1   423
## 5554    1   423
## 5555    1   423
## 5556    1   423
## 5557    1   423
## 5558    1   423
## 5559    1   423
## 5560    1   423
## 5561    1   423
## 5562    1   423
## 5563    1   423
## 5564    1   423
## 5565    1   423
## 5566    1   423
## 5567    1   423
## 5568    1   423
## 5569    1   423
## 5570    1   423
## 5571    1   423
## 5572    1   423
## 5573    1   423
## 5574    1   423
## 5575    1   423
## 5576    1   423
## 5577    1   423
## 5578    1   423
## 5579    1   423
## 5580    1   423
## 5581    1   423
## 5582    1   423
## 5583    1   423
## 5584    1   423
## 5585    1   423
## 5586    1   423
## 5587    1   423
## 5588    1   423
## 5589    1   423
## 5590    1   423
## 5591    1   423
## 5592    1   423
## 5593    1   423
## 5594    1   423
## 5595    1   423
## 5596    1   423
## 5597    1   423
## 5598    1   423
## 5599    1   423
## 5600    1   423
## 5601    1   423
## 5602    1   423
## 5603    1   423
## 5604    1   423
## 5605    1   423
## 5606    1   423
## 5607    1   423
## 5608    1   423
## 5609    1   423
## 5610    1   423
## 5611    1   423
## 5612    1   423
## 5613    1   423
## 5614    1   423
## 5615    1   423
## 5616    1   423
## 5617    1   423
## 5618    1   423
## 5619    1   423
## 5620    1   423
## 5621    1   423
## 5622    1   423
## 5623    1   423
## 5624    1   423
## 5625    1   423
## 5626    1   423
## 5627    1   423
## 5628    1   423
## 5629    1   423
## 5630    1   423
## 5631    1   423
## 5632    1   423
## 5633    1   423
## 5634    1   423
## 5635    1   423
## 5636    1   423
## 5637    1   423
## 5638    1   423
## 5639    1   423
## 5640    1   423
## 5641    1   423
## 5642    1   423
## 5643    1   423
## 5644    1   423
## 5645    1   423
## 5646    1   423
## 5647    1   423
## 5648    1   423
## 5649    1   423
## 5650    1   423
## 5651    1   423
## 5652    1   423
## 5653    1   423
## 5654    1   423
## 5655    1   423
## 5656    1   423
## 5657    1   423
## 5658    1   423
## 5659    1   423
## 5660    1   423
## 5661    1   423
## 5662    1   423
## 5663    1   423
## 5664    1   423
## 5665    1   423
## 5666    1   423
## 5667    1   423
## 5668    1   423
## 5669    1   423
## 5670    1   423
## 5671    1   423
## 5672    1   423
## 5673    1   423
## 5674    1   423
## 5675    1   423
## 5676    1   423
## 5677    1   423
## 5678    1   423
## 5679    1   423
## 5680    1   423
## 5681    1   423
## 5682    1   423
## 5683    1   423
## 5684    1   423
## 5685    1   423
## 5686    1   423
## 5687    1   423
## 5688    1   423
## 5689    1   423
## 5690    1   423
## 5691    1   423
## 5692    1   423
## 5693    1   423
## 5694    1   423
## 5695    1   423
## 5696    1   423
## 5697    1   423
## 5698    1   423
## 5699    1   940
## 5700    1   940
## 5701    1   940
## 5702    1   940
## 5703    1   940
## 5704    1   940
## 5705    1   940
## 5706    1   940
## 5707    1   940
## 5708    1   940
## 5709    1   940
## 5710    1   940
## 5711    1   940
## 5712    1   940
## 5713    1   940
## 5714    1   940
## 5715    1   940
## 5716    1   940
## 5717    1   940
## 5718    1   940
## 5719    1   940
## 5720    1   940
## 5721    1   940
## 5722    1   940
## 5723    1   940
## 5724    1   940
## 5725    1   940
## 5726    1   940
## 5727    1   940
## 5728    1   940
## 5729    1   940
## 5730    1   940
## 5731    1   940
## 5732    1   940
## 5733    1   940
## 5734    1   940
## 5735    1   940
## 5736    1   940
## 5737    1   940
## 5738    1   940
## 5739    1   940
## 5740    1   940
## 5741    1   940
## 5742    1   940
## 5743    1   940
## 5744    1   940
## 5745    1   940
## 5746    1   940
## 5747    1   940
## 5748    1   940
## 5749    1   940
## 5750    1   940
## 5751    1   940
## 5752    1   940
## 5753    1   940
## 5754    1   940
## 5755    1   940
## 5756    1   940
## 5757    1   940
## 5758    1   940
## 5759    1   940
## 5760    1   940
## 5761    1   940
## 5762    1   940
## 5763    1   940
## 5764    1   940
## 5765    1   940
## 5766    1   940
## 5767    1   940
## 5768    1   940
## 5769    1   940
## 5770    1   940
## 5771    1   940
## 5772    1   940
## 5773    1   940
## 5774    1   940
## 5775    1   940
## 5776    1   940
## 5777    1   940
## 5778    1   940
## 5779    1   940
## 5780    1   940
## 5781    1   940
## 5782    1   940
## 5783    1   940
## 5784    1   940
## 5785    1   940
## 5786    1   940
## 5787    1   940
## 5788    1   940
## 5789    1   940
## 5790    1   940
## 5791    1   940
## 5792    1   940
## 5793    1   940
## 5794    1   940
## 5795    1   940
## 5796    1   940
## 5797    1   940
## 5798    1   940
## 5799    1   940
## 5800    1   940
## 5801    1   940
## 5802    1   940
## 5803    1   940
## 5804    1   940
## 5805    1   940
## 5806    1   940
## 5807    1   940
## 5808    1   940
## 5809    1   940
## 5810    1   940
## 5811    1   940
## 5812    1   940
## 5813    1   940
## 5814    1   940
## 5815    1   940
## 5816    1   940
## 5817    1   940
## 5818    1   940
## 5819    1   940
## 5820    1   940
## 5821    1   940
## 5822    1   940
## 5823    1   940
## 5824    1   940
## 5825    1   940
## 5826    1   940
## 5827    1   940
## 5828    1   940
## 5829    1   940
## 5830    1   940
## 5831    1   940
## 5832    1   940
## 5833    1   940
## 5834    1   940
## 5835    1   940
## 5836    1   940
## 5837    1   940
## 5838    1   940
## 5839    1   940
## 5840    1   940
## 5841    1   940
## 5842    1   940
## 5843    1   940
## 5844    1   940
## 5845    1   940
## 5846    1   940
## 5847    1   940
## 5848    1   940
## 5849    1   940
## 5850    1   940
## 5851    1   940
## 5852    1   940
## 5853    1   940
## 5854    1   940
## 5855    1   940
## 5856    1   940
## 5857    1   940
## 5858    1   940
## 5859    1   940
## 5860    1   940
## 5861    1   940
## 5862    1   940
## 5863    1   940
## 5864    1   940
## 5865    1   940
## 5866    1   940
## 5867    1   940
## 5868    1   940
## 5869    1   940
## 5870    1   940
## 5871    1   940
## 5872    1   940
## 5873    1   940
## 5874    1   940
## 5875    1   940
## 5876    1   940
## 5877    1   940
## 5878    1   940
## 5879    1   940
## 5880    1   940
## 5881    1   940
## 5882    1   940
## 5883    1   940
## 5884    1   940
## 5885    1   940
## 5886    1   940
## 5887    1   940
## 5888    1   940
## 5889    1   940
## 5890    1   940
## 5891    1   940
## 5892    1   940
## 5893    1   940
## 5894    1   940
## 5895    1   940
## 5896    1   940
## 5897    1   940
## 5898    1   940
## 5899    1   940
## 5900    1   940
## 5901    1   940
## 5902    1   940
## 5903    1   940
## 5904    1   940
## 5905    1   940
## 5906    1   940
## 5907    1   940
## 5908    1   940
## 5909    1   940
## 5910    1   940
## 5911    1   940
## 5912    1   940
## 5913    1   940
## 5914    1   940
## 5915    1   940
## 5916    1   940
## 5917    1   940
## 5918    1   940
## 5919    1   940
## 5920    1   940
## 5921    1   940
## 5922    1   940
## 5923    1   940
## 5924    1   940
## 5925    1   940
## 5926    1   940
## 5927    1   940
## 5928    1   940
## 5929    1   940
## 5930    1   940
## 5931    1   940
## 5932    1   940
## 5933    1   940
## 5934    1   940
## 5935    1   940
## 5936    1   940
## 5937    1   940
## 5938    1   940
## 5939    1   940
## 5940    1   940
## 5941    1   940
## 5942    1   940
## 5943    1   940
## 5944    1   940
## 5945    1   940
## 5946    1   940
## 5947    1   940
## 5948    1   940
## 5949    1   940
## 5950    1   940
## 5951    1   940
## 5952    1   940
## 5953    1   940
## 5954    1   940
## 5955    1   940
## 5956    1   940
## 5957    1   940
## 5958    1   940
## 5959    1   940
## 5960    1   940
## 5961    1   940
## 5962    1   940
## 5963    1   940
## 5964    1   940
## 5965    1   940
## 5966    1   940
## 5967    1   940
## 5968    1   940
## 5969    1   940
## 5970    1   940
## 5971    1   940
## 5972    1   940
## 5973    1   940
## 5974    1   940
## 5975    1   940
## 5976    1   940
## 5977    1   940
## 5978    1   940
## 5979    1   940
## 5980    1   940
## 5981    1   940
## 5982    1   940
## 5983    1   940
## 5984    1   940
## 5985    1   940
## 5986    1   940
## 5987    1   940
## 5988    1   940
## 5989    1   940
## 5990    1   940
## 5991    1  1970
## 5992    1  1970
## 5993    1  1970
## 5994    1  1970
## 5995    1  1970
## 5996    1  1970
## 5997    1  1970
## 5998    1  1970
## 5999    1  1970
## 6000    1  1970
## 6001    1  1970
## 6002    1  1970
## 6003    1  1970
## 6004    1  1970
## 6005    1  1970
## 6006    1  1970
## 6007    1  1970
## 6008    1  1970
## 6009    1  1970
## 6010    1  1970
## 6011    1  1970
## 6012    1  1970
## 6013    1  1970
## 6014    1  1970
## 6015    1  1970
## 6016    1  1970
## 6017    1  1970
## 6018    1  1970
## 6019    1  1970
## 6020    1  1970
## 6021    1  1970
## 6022    1  1970
## 6023    1  1970
## 6024    1  1970
## 6025    1  1970
## 6026    1  1970
## 6027    1  1970
## 6028    1  1970
## 6029    1  1970
## 6030    1  1970
## 6031    1  1970
## 6032    1  1970
## 6033    1  1970
## 6034    1  1970
## 6035    1  1970
## 6036    1  1970
## 6037    1  1970
## 6038    1  1970
## 6039    1  1970
## 6040    1  1970
## 6041    1  1970
## 6042    1  1970
## 6043    1  1970
## 6044    1  1970
## 6045    1  1970
## 6046    1  1970
## 6047    1  1970
## 6048    1  1970
## 6049    1  1970
## 6050    1  1970
## 6051    1  1970
## 6052    1  1970
## 6053    1  1970
## 6054    1  1970
## 6055    1  1970
## 6056    1  1970
## 6057    1  1970
## 6058    1  1970
## 6059    1  1970
## 6060    1  1970
## 6061    1  1970
## 6062    1  1970
## 6063    1  1970
## 6064    1  1970
## 6065    1  1970
## 6066    1  1970
## 6067    1  1970
## 6068    1  1970
## 6069    1  1970
## 6070    1  1970
## 6071    1  1970
## 6072    1  1970
## 6073    1  1970
## 6074    1  1970
## 6075    1  1970
## 6076    1  1970
## 6077    1  1970
## 6078    1  1970
## 6079    1  1970
## 6080    1  1970
## 6081    1  1970
## 6082    1  1970
## 6083    1  1970
## 6084    1  1970
## 6085    1  1970
## 6086    1  1970
## 6087    1  1970
## 6088    1  1970
## 6089    1  1970
## 6090    1  1970
## 6091    1  1970
## 6092    1  1970
## 6093    1  1970
## 6094    1  1970
## 6095    1  1970
## 6096    1  1970
## 6097    1  1970
## 6098    1  1970
## 6099    1  1970
## 6100    1  1970
## 6101    1  1970
## 6102    1  1970
## 6103    1  1970
## 6104    1  1970
## 6105    1  1970
## 6106    1  1970
## 6107    1  1970
## 6108    1  1970
## 6109    1  1970
## 6110    1  1970
## 6111    1  1970
## 6112    1  1970
## 6113    1  1970
## 6114    1  1970
## 6115    1  1970
## 6116    1  1970
## 6117    1  1970
## 6118    1  1970
## 6119    1  1970
## 6120    1  1970
## 6121    1  1970
## 6122    1  1970
## 6123    1  1970
## 6124    1  1970
## 6125    1  1970
## 6126    1  1970
## 6127    1  1970
## 6128    1  1970
## 6129    1  1970
## 6130    1  1970
## 6131    1  1970
## 6132    1  1970
## 6133    1  1970
## 6134    1  1970
## 6135    1  1970
## 6136    1  1970
## 6137    1  1970
## 6138    1  1970
## 6139    1  1970
## 6140    1  1970
## 6141    1  1970
## 6142    1  1970
## 6143    1  1970
## 6144    1  1970
## 6145    1  1970
## 6146    1  1970
## 6147    1  1970
## 6148    1  1970
## 6149    1  1970
## 6150    1  1970
## 6151    1  1970
## 6152    1  1970
## 6153    1  1970
## 6154    1  1970
## 6155    1  1970
## 6156    1  1970
## 6157    1  1970
## 6158    1  1970
## 6159    1  1970
## 6160    1  1970
## 6161    1  1970
## 6162    1  1970
## 6163    1  1970
## 6164    1  1970
## 6165    1  1970
## 6166    1  1970
## 6167    1  1970
## 6168    1  1970
## 6169    1  1970
## 6170    1  1970
## 6171    1  1970
## 6172    1  1970
## 6173    1  1970
## 6174    1  1970
## 6175    1  1970
## 6176    1  1970
## 6177    1  1970
## 6178    1  1970
## 6179    1  1970
## 6180    1  1970
## 6181    1  1970
## 6182    1  1970
## 6183    1  1970
## 6184    1  1970
## 6185    1  1970
## 6186    1  1970
## 6187    1  1970
## 6188    1  1970
## 6189    1  1970
## 6190    1  1970
## 6191    1  1970
## 6192    1  1970
## 6193    1  1970
## 6194    1  1970
## 6195    1  1970
## 6196    1  1970
## 6197    1  1970
## 6198    1  1970
## 6199    1  1970
## 6200    1  1970
## 6201    1  1970
## 6202    1  1970
## 6203    1  1970
## 6204    1  1970
## 6205    1  1970
## 6206    1  1970
## 6207    1  1970
## 6208    1  1970
## 6209    1  1970
## 6210    1  1970
## 6211    1  1970
## 6212    1  1970
## 6213    1  1970
## 6214    1  1970
## 6215    1  1970
## 6216    1  1970
## 6217    1  1970
## 6218    1  1970
## 6219    1  1970
## 6220    1  1970
## 6221    1  1970
## 6222    1  1970
## 6223    1  1970
## 6224    1  1970
## 6225    1  1970
## 6226    1  1970
## 6227    1  1970
## 6228    1  1970
## 6229    1  1970
## 6230    1  1970
## 6231    1  1970
## 6232    1  1970
## 6233    1  1970
## 6234    1  1970
## 6235    1  1970
## 6236    1  1970
## 6237    1  1970
## 6238    1  1970
## 6239    1  1970
## 6240    1  1970
## 6241    1  1970
## 6242    1  1970
## 6243    1  1970
## 6244    1  1970
## 6245    1  1970
## 6246    1  1970
## 6247    1  1970
## 6248    1  1970
## 6249    1  1970
## 6250    1  1970
## 6251    1  1970
## 6252    1  1970
## 6253    1  1970
## 6254    1  1970
## 6255    1  1970
## 6256    1  1970
## 6257    1  1970
## 6258    1  1970
## 6259    1  1970
## 6260    1  1970
## 6261    1  1970
## 6262    1  1970
## 6263    1  1970
## 6264    1  1970
## 6265    1  1970
## 6266    1  1970
## 6267    1  1970
## 6268    1  1970
## 6269    1  1970
## 6270    1  1970
## 6271    1  1970
## 6272    1  1970
## 6273    1  1970
## 6274    1  1970
## 6275    1  1970
## 6276    1  1970
## 6277    1  1970
## 6278    1  1970
## 6279    1  1970
## 6280    1  1970
## 6281    1  1970
## 6282    1  1970
## 6283    1  1970
## 6284    1  1970
## 6285    1  1970
## 6286    1  1970
## 6287    1  1970
## 6288    1  1970
## 6289    1  1970
## 6290    1  1970
## 6291    1  1970
## 6292    1  1970
## 6293    1  1970
## 6294    1  1970
## 6295    1  1970
## 6296    1  1970
## 6297    1  1970
## 6298    1  1970
## 6299    1  1970
## 6300    1  1970
## 6301    1  1970
## 6302    1  1970
## 6303    1  1970
## 6304    1  1970
## 6305    1  1970
## 6306    1  1970
## 6307    1  1970
## 6308    1  1970
## 6309    1  1970
## 6310    1  1970
## 6311    1  1970
## 6312    1  1970
## 6313    1  1970
## 6314    1  1970
## 6315    1  1970
## 6316    1  1970
## 6317    1  1970
## 6318    1  1970
## 6319    1  1970
## 6320    1  1970
## 6321    1  1970
## 6322    1  1970
## 6323    1  1970
## 6324    1  1970
## 6325    1  1970
## 6326    1  1970
## 6327    1  1970
## 6328    1  1970
## 6329    1  1970
## 6330    1  1970
## 6331    1  1970
## 6332    1  1970
## 6333    1  1970
## 6334    1  1970
## 6335    1  1970
## 6336    1  1970
## 6337    1  1970
## 6338    1  1970
## 6339    1  1970
## 6340    1  1970
## 6341    1  1970
## 6342    1  1970
## 6343    1  1970
## 6344    1  1970
## 6345    1  1970
## 6346    1  1970
## 6347    1  1970
## 6348    1  1970
## 6349    1  1970
## 6350    1  1970
## 6351    1  1970
## 6352    1  1970
## 6353    1  1970
## 6354    1  1970
## 6355    1  1970
## 6356    1  1970
## 6357    1  1970
## 6358    1  1970
## 6359    1  1970
## 6360    1  1970
## 6361    1  1970
## 6362    1  1970
## 6363    1  1970
## 6364    1  1970
## 6365    1  1970
## 6366    1  1970
## 6367    1  1970
## 6368    1  1970
## 6369    1  1970
## 6370    1  1970
## 6371    1  1970
## 6372    1  1970
## 6373    1  1970
## 6374    1  1970
## 6375    1  1970
## 6376    1  1970
## 6377    1  1970
## 6378    1  1970
## 6379    1  1970
## 6380    1  1970
## 6381    1  1970
## 6382    1  1970
## 6383    1  1970
## 6384    1  1970
## 6385    1  1970
## 6386    1  1970
## 6387    1  1970
## 6388    1  1970
## 6389    1  1970
## 6390    1  1970
## 6391    1  1970
## 6392    1  1970
## 6393    1  1970
## 6394    1  1970
## 6395    1  1970
## 6396    1  1970
## 6397    1  1970
## 6398    1  1970
## 6399    1  1970
## 6400    1  1970
## 6401    1  1970
## 6402    1  1970
## 6403    1  1970
## 6404    1  1970
## 6405    1  1970
## 6406    1  1970
## 6407    1  1970
## 6408    1  1970
## 6409    1  1970
## 6410    1  1970
## 6411    1  1970
## 6412    1  1970
## 6413    1  1970
## 6414    1  1970
## 6415    1  1970
## 6416    1  1970
## 6417    1  1970
## 6418    1  1970
## 6419    1  1970
## 6420    1  1970
## 6421    1  1970
## 6422    1  1970
## 6423    1  1970
## 6424    1  1970
## 6425    1  1970
## 6426    1  1970
## 6427    1  1970
## 6428    1  1970
## 6429    1  1970
## 6430    1  1970
## 6431    1  1970
## 6432    1  1970
## 6433    1  1970
## 6434    1  1970
## 6435    1  1970
## 6436    1  1970
## 6437    1  1970
## 6438    1  1970
## 6439    1  1970
## 6440    1  1970
## 6441    1  1970
## 6442    1  1970
## 6443    1  1970
## 6444    1  1970
## 6445    1  1970
## 6446    1  1970
## 6447    1  1970
## 6448    1  1970
## 6449    1  1970
## 6450    1  1970
## 6451    1  1970
## 6452    1  1970
## 6453    1  1970
## 6454    1  1970
## 6455    1  1970
## 6456    1  1970
## 6457    1  1970
## 6458    1  1970
## 6459    1  1970
## 6460    1  1970
## 6461    1  1970
## 6462    1  1970
## 6463    1  1970
## 6464    1  1970
## 6465    1  1970
## 6466    1  1970
## 6467    1  1970
## 6468    1  1970
## 6469    1  1970
## 6470    1  1970
## 6471    1  1970
## 6472    1  1970
## 6473    1  1970
## 6474    1  1970
## 6475    1  1970
## 6476    1  1970
## 6477    1  1970
## 6478    1  1970
## 6479    1  1970
## 6480    1  1970
## 6481    1  1970
## 6482    1  1970
## 6483    1  1970
## 6484    1  1970
## 6485    1  1970
## 6486    1  1970
## 6487    1  1970
## 6488    1  1970
## 6489    1  1970
## 6490    1  1970
## 6491    1  1970
## 6492    1  1970
## 6493    1  1970
## 6494    1  1970
## 6495    1  1970
## 6496    1  1970
## 6497    1  1970
## 6498    1  1970
## 6499    1  1970
## 6500    1  1970
## 6501    1  1970
## 6502    1  1970
## 6503    1  1970
## 6504    1  1970
## 6505    1  1970
## 6506    1  1970
## 6507    1  1970
## 6508    1  1970
## 6509    1  1970
## 6510    1  1970
## 6511    1  1970
## 6512    1  1970
## 6513    1  1970
## 6514    1  1970
## 6515    1  1970
## 6516    1  1970
## 6517    1  1970
## 6518    1  1970
## 6519    1  1970
## 6520    1  1970
## 6521    1  1970
## 6522    1  1970
## 6523    1  1970
## 6524    1  1970
## 6525    1  1970
## 6526    1  1970
## 6527    1  1970
## 6528    1  1970
## 6529    1  1970
## 6530    1  1970
## 6531    1  1970
## 6532    1  1970
## 6533    1  1970
## 6534    1  1970
## 6535    1  1970
## 6536    1  1970
## 6537    1  1970
## 6538    1  1970
## 6539    1  1970
## 6540    1  1970
## 6541    1  1970
## 6542    1  1970
## 6543    1  1970
## 6544    1  1970
## 6545    1  1970
## 6546    1  1970
## 6547    1  1970
## 6548    1  1970
## 6549    1  1970
## 6550    1  1970
## 6551    1  1970
## 6552    1  1970
## 6553    1  1970
## 6554    1  1970
## 6555    1  1970
## 6556    1  1970
## 6557    1  1970
## 6558    1  1970
## 6559    1  1970
## 6560    1  1970
## 6561    1  1970
## 6562    1  1970
## 6563    1  1970
## 6564    1  1970
## 6565    1  1970
## 6566    1  1970
## 6567    1  1970
## 6568    1  1970
## 6569    1  1970
## 6570    1  1970
## 6571    1  1970
## 6572    1  1970
## 6573    1  1970
## 6574    1  1970
## 6575    1  1970
## 6576    1  1970
## 6577    1  1970
## 6578    1  1970
## 6579    1  1970
## 6580    1  1970
## 6581    1  1970
## 6582    1  1970
## 6583    1  1970
## 6584    1  1970
## 6585    1  1970
## 6586    1  1970
## 6587    1  1970
## 6588    1  1970
## 6589    1  1970
## 6590    1  1970
## 6591    1  1970
## 6592    1  1970
## 6593    1  1970
## 6594    1  1970
## 6595    1  1970
## 6596    1  1970
## 6597    1  1970
## 6598    1  1970
## 6599    1  1970
## 6600    1  1970
## 6601    1  1970
## 6602    1  1970
## 6603    1  1970
## 6604    1  1970
## 6605    1  1970
## 6606    1  1970
## 6607    1  1970
## 6608    1  1970
## 6609    1  1970
## 6610    1  1970
## 6611    1  1970
## 6612    1  1970
## 6613    1  1970
## 6614    1  1970
## 6615    1  1970
## 6616    1  1970
## 6617    1  1970
## 6618    1  1970
## 6619    1  1970
## 6620    1  1970
## 6621    1  1970
## 6622    1  1970
## 6623    1  1970
## 6624    1  1970
## 6625    1  1970
## 6626    1  1970
## 6627    1  1970
## 6628    1  1970
## 6629    1  1970
## 6630    1  1970
## 6631    1  1970
## 6632    1  1970
## 6633    1  1970
## 6634    1  1970
## 6635    1  1970
## 6636    1  1970
## 6637    1  1970
## 6638    1  1970
## 6639    1  1970
## 6640    1  1970
## 6641    1  1970
## 6642    1  1970
## 6643    1  1970
## 6644    1  1970
## 6645    1  1970
## 6646    1  1970
## 6647    1  1970
## 6648    1  1970
## 6649    1  1970
## 6650    1  1970
## 6651    1  1970
## 6652    1  1970
## 6653    1  1970
## 6654    1  1970
## 6655    1  1970
## 6656    1  1970
## 6657    1  1970
## 6658    1  1970
## 6659    1  1970
## 6660    1  1970
## 6661    1  1970
## 6662    1  1970
## 6663    1  1970
## 6664    1  1970
## 6665    1  1970
## 6666    1  1970
## 6667    1  1970
## 6668    1  1970
## 6669    1  1970
## 6670    1  1970
## 6671    1  1970
## 6672    1  1970
## 6673    1  1970
## 6674    1  1970
## 6675    1  1970
## 6676    1  1970
## 6677    1  1970
## 6678    1  1970
## 6679    1  1970
## 6680    1  1970
## 6681    1  1970
## 6682    1  1970
## 6683    1  1970
## 6684    1  1970
## 6685    1  1970
## 6686    1  1970
## 6687    1  1970
## 6688    1  1970
## 6689    1  1970
## 6690    1  1970
## 6691    1  1970
## 6692    1  1970
## 6693    1  1970
## 6694    1  1970
## 6695    1  1970
## 6696    1  1970
## 6697    1  1970
## 6698    1  1970
## 6699    1  1970
## 6700    1  1970
## 6701    1  1970
## 6702    1  1970
## 6703    1  1970
## 6704    1  1970
## 6705    1  1970
## 6706    1  1970
## 6707    1  1970
## 6708    1  1970
## 6709    1  1970
## 6710    1  1970
## 6711    1  1970
## 6712    1  1970
## 6713    1  1970
## 6714    1  1970
## 6715    1  1970
## 6716    1  1970
## 6717    1  1970
## 6718    1  1970
## 6719    1  1970
## 6720    1  1970
## 6721    1  1970
## 6722    1  1970
## 6723    1  1970
## 6724    1  1970
## 6725    1  1970
## 6726    1   456
## 6727    1   456
## 6728    1   456
## 6729    1   456
## 6730    1   456
## 6731    1   456
## 6732    1   456
## 6733    1   456
## 6734    1   456
## 6735    1   456
## 6736    1   456
## 6737    1   456
## 6738    1   456
## 6739    1   456
## 6740    1   456
## 6741    1   456
## 6742    1   456
## 6743    1   456
## 6744    1   456
## 6745    1   456
## 6746    1   456
## 6747    1   456
## 6748    1   456
## 6749    1   456
## 6750    1   456
## 6751    1   456
## 6752    1   456
## 6753    1   456
## 6754    1   456
## 6755    1   456
## 6756    1   456
## 6757    1   456
## 6758    1   456
## 6759    1   456
## 6760    1   456
## 6761    1   456
## 6762    1   456
## 6763    1   456
## 6764    1   456
## 6765    1   456
## 6766    1   456
## 6767    1   456
## 6768    1   456
## 6769    1   456
## 6770    1   456
## 6771    1   456
## 6772    1   456
## 6773    1   456
## 6774    1   456
## 6775    1   456
## 6776    1   456
## 6777    1   456
## 6778    1   456
## 6779    1   456
## 6780    1   456
## 6781    1   456
## 6782    1   456
## 6783    1   456
## 6784    1   456
## 6785    1   456
## 6786    1   456
## 6787    1   456
## 6788    1   456
## 6789    1   456
## 6790    1   456
## 6791    1   456
## 6792    1   456
## 6793    1   456
## 6794    1   456
## 6795    1   456
## 6796    1   456
## 6797    1   456
## 6798    1   456
## 6799    1   456
## 6800    1   456
## 6801    1   456
## 6802    1   456
## 6803    1   456
## 6804    1   456
## 6805    1   456
## 6806    1   456
## 6807    1   456
## 6808    1   456
## 6809    1   456
## 6810    1   456
## 6811    1   456
## 6812    1   456
## 6813    1   456
## 6814    1   456
## 6815    1   456
## 6816    1   456
## 6817    1   456
## 6818    1   456
## 6819    1   456
## 6820    1   456
## 6821    1   456
## 6822    1   456
## 6823    1   456
## 6824    1   456
## 6825    1   456
## 6826    1   456
## 6827    1   456
## 6828    1   456
## 6829    1   456
## 6830    1   456
## 6831    1   456
## 6832    1   456
## 6833    1   456
## 6834    1   456
## 6835    1   456
## 6836    1   456
## 6837    1   456
## 6838    1   456
## 6839    1   456
## 6840    1   456
## 6841    1   456
## 6842    1   456
## 6843    1   456
## 6844    1   456
## 6845    1   456
## 6846    1   456
## 6847    1   456
## 6848    1   456
## 6849    1   456
## 6850    1   456
## 6851    1   456
## 6852    1   456
## 6853    1   456
## 6854    1   456
## 6855    1   456
## 6856    1   456
## 6857    1   456
## 6858    1   456
## 6859    1   456
## 6860    1   456
## 6861    1   456
## 6862    1   456
## 6863    1   456
## 6864    1   456
## 6865    1   456
## 6866    1   456
## 6867    1   456
## 6868    1   456
## 6869    1   456
## 6870    1   456
## 6871    1   456
## 6872    1   456
## 6873    1   456
## 6874    1   456
## 6875    1   456
## 6876    1   456
## 6877    1   456
## 6878    1   456
## 6879    1   456
## 6880    1   456
## 6881    1   456
## 6882    1   456
## 6883    1   456
## 6884    1   456
## 6885    1   456
## 6886    1   456
## 6887    1   456
## 6888    1   456
## 6889    1   456
## 6890    1   456
## 6891    1   456
## 6892    1   456
## 6893    1   456
## 6894    1   456
## 6895    1   456
## 6896    1   456
## 6897    1   456
## 6898    1   456
## 6899    1   456
## 6900    1   456
## 6901    1   456
## 6902    1   456
## 6903    1   456
## 6904    1   456
## 6905    1   456
## 6906    1   456
## 6907    1   456
## 6908    1   456
## 6909    1   456
## 6910    1   456
## 6911    1   456
## 6912    1   456
## 6913    1   456
## 6914    1   456
## 6915    1   456
## 6916    1   456
## 6917    1   456
## 6918    1   456
## 6919    1   456
## 6920    1   456
## 6921    1   456
## 6922    1   456
## 6923    1   456
## 6924    1   456
## 6925    1   456
## 6926    1   456
## 6927    1   456
## 6928    1   456
## 6929    1   456
## 6930    1   456
## 6931    1   456
## 6932    1   456
## 6933    1   456
## 6934    1   456
## 6935    1   456
## 6936    1   456
## 6937    1   456
## 6938    1   456
## 6939    1   456
## 6940    1   456
## 6941    1   456
## 6942    1   456
## 6943    1   456
## 6944    1   456
## 6945    1   753
## 6946    1   753
## 6947    1   753
## 6948    1   753
## 6949    1   753
## 6950    1   753
## 6951    1   753
## 6952    1   753
## 6953    1   753
## 6954    1   753
## 6955    1   753
## 6956    1   753
## 6957    1   753
## 6958    1   753
## 6959    1   753
## 6960    1   753
## 6961    1   753
## 6962    1   753
## 6963    1   753
## 6964    1   753
## 6965    1   753
## 6966    1   753
## 6967    1   753
## 6968    1   753
## 6969    1   753
## 6970    1   753
## 6971    1   753
## 6972    1   753
## 6973    1   753
## 6974    1   753
## 6975    1   753
## 6976    1   753
## 6977    1   753
## 6978    1   753
## 6979    1   753
## 6980    1   753
## 6981    1   753
## 6982    1   753
## 6983    1   753
## 6984    1   753
## 6985    1   753
## 6986    1   753
## 6987    1   753
## 6988    1   753
## 6989    1   753
## 6990    1   753
## 6991    1   753
## 6992    1   753
## 6993    1   753
## 6994    1   753
## 6995    1   753
## 6996    1   753
## 6997    1   753
## 6998    1   753
## 6999    1   753
## 7000    1   753
## 7001    1   753
## 7002    1   753
## 7003    1   753
## 7004    1   753
## 7005    1   753
## 7006    1   753
## 7007    1   753
## 7008    1   753
## 7009    1   753
## 7010    1   753
## 7011    1   753
## 7012    1   753
## 7013    1   753
## 7014    1   753
## 7015    1   753
## 7016    1   753
## 7017    1   753
## 7018    1   753
## 7019    1   753
## 7020    1   753
## 7021    1   753
## 7022    1   753
## 7023    1   753
## 7024    1   753
## 7025    1   753
## 7026    1   753
## 7027    1   753
## 7028    1   753
## 7029    1   753
## 7030    1   753
## 7031    1   753
## 7032    1   753
## 7033    1   753
## 7034    1   753
## 7035    1   753
## 7036    1   753
## 7037    1   753
## 7038    1   753
## 7039    1   753
## 7040    1   753
## 7041    1   753
## 7042    1   753
## 7043    1   753
## 7044    1   753
## 7045    1   753
## 7046    1   753
## 7047    1   753
## 7048    1   753
## 7049    1   753
## 7050    1   753
## 7051    1   753
## 7052    1   753
## 7053    1   753
## 7054    1   753
## 7055    1   753
## 7056    1   753
## 7057    1   753
## 7058    1   753
## 7059    1   753
## 7060    1   753
## 7061    1   753
## 7062    1   753
## 7063    1   753
## 7064    1   753
## 7065    1   753
## 7066    1   753
## 7067    1   753
## 7068    1   753
## 7069    1   753
## 7070    1   753
## 7071    1   753
## 7072    1   753
## 7073    1   753
## 7074    1   753
## 7075    1   753
## 7076    1   753
## 7077    1   753
## 7078    1   753
## 7079    1   753
## 7080    1   753
## 7081    1   753
## 7082    1   753
## 7083    1   753
## 7084    1   753
## 7085    1   753
## 7086    1   753
## 7087    1   753
## 7088    1   753
## 7089    1   753
## 7090    1   753
## 7091    1   753
## 7092    1   753
## 7093    1   753
## 7094    1   753
## 7095    1   753
## 7096    1   753
## 7097    1   753
## 7098    1   753
## 7099    1   753
## 7100    1   753
## 7101    1   753
## 7102    1   753
## 7103    1   753
## 7104    1   753
## 7105    1   753
## 7106    1   753
## 7107    1   753
## 7108    1   753
## 7109    1   753
## 7110    1   753
## 7111    1   753
## 7112    1   753
## 7113    1   753
## 7114    1   753
## 7115    1   753
## 7116    1   753
## 7117    1   753
## 7118    1   753
## 7119    1   753
## 7120    1   753
## 7121    1   753
## 7122    1   753
## 7123    1   753
## 7124    1   753
## 7125    1   753
## 7126    1   753
## 7127    1   753
## 7128    1   753
## 7129    1   753
## 7130    1   753
## 7131    1   753
## 7132    1   753
## 7133    1   753
## 7134    1   753
## 7135    1   753
## 7136    1   753
## 7137    1   753
## 7138    1   753
## 7139    1   753
## 7140    1   753
## 7141    1   753
## 7142    1   753
## 7143    1   753
## 7144    1   753
## 7145    1   753
## 7146    1   753
## 7147    1   753
## 7148    1   753
## 7149    1   753
## 7150    1   753
## 7151    1   753
## 7152    1   753
## 7153    1   753
## 7154    1   753
## 7155    1   753
## 7156    1   753
## 7157    1   753
## 7158    1   753
## 7159    1   753
## 7160    1   753
## 7161    1   753
## 7162    1   753
## 7163    1   753
## 7164    1   753
## 7165    1   753
## 7166    1   753
## 7167    1   753
## 7168    1   753
## 7169    1   753
## 7170    1   753
## 7171    1   753
## 7172    1   753
## 7173    1   753
## 7174    1   753
## 7175    1   753
## 7176    1   753
## 7177    1   753
## 7178    1   753
## 7179    1   753
## 7180    1   753
## 7181    1   753
## 7182    1   753
## 7183    1   753
## 7184    1   750
## 7185    1   750
## 7186    1   750
## 7187    1   750
## 7188    1   750
## 7189    1   750
## 7190    1   750
## 7191    1   750
## 7192    1   750
## 7193    1   750
## 7194    1   750
## 7195    1   750
## 7196    1   750
## 7197    1   750
## 7198    1   750
## 7199    1   750
## 7200    1   750
## 7201    1   750
## 7202    1   750
## 7203    1   750
## 7204    1   750
## 7205    1   750
## 7206    1   750
## 7207    1   750
## 7208    1   750
## 7209    1   750
## 7210    1   750
## 7211    1   750
## 7212    1   750
## 7213    1   750
## 7214    1   750
## 7215    1   750
## 7216    1   750
## 7217    1   750
## 7218    1   750
## 7219    1   750
## 7220    1   750
## 7221    1   750
## 7222    1   750
## 7223    1   750
## 7224    1   750
## 7225    1   750
## 7226    1   750
## 7227    1   750
## 7228    1   750
## 7229    1   750
## 7230    1   750
## 7231    1   750
## 7232    1   750
## 7233    1   750
## 7234    1   750
## 7235    1   750
## 7236    1   750
## 7237    1   750
## 7238    1   750
## 7239    1   750
## 7240    1   750
## 7241    1   750
## 7242    1   750
## 7243    1   750
## 7244    1   750
## 7245    1   750
## 7246    1   750
## 7247    1   750
## 7248    1   750
## 7249    1   750
## 7250    1   750
## 7251    1   750
## 7252    1   750
## 7253    1   750
## 7254    1   750
## 7255    1   750
## 7256    1   750
## 7257    1   750
## 7258    1   750
## 7259    1   750
## 7260    1   750
## 7261    1   750
## 7262    1   750
## 7263    1   750
## 7264    1   750
## 7265    1   750
## 7266    1   750
## 7267    1   750
## 7268    1   750
## 7269    1   750
## 7270    1   750
## 7271    1   750
## 7272    1   750
## 7273    1   750
## 7274    1   750
## 7275    1   750
## 7276    1   750
## 7277    1   750
## 7278    1   750
## 7279    1   750
## 7280    1   750
## 7281    1   750
## 7282    1   750
## 7283    1   750
## 7284    1   750
## 7285    1   750
## 7286    1   750
## 7287    1   750
## 7288    1   750
## 7289    1   750
## 7290    1   750
## 7291    1   750
## 7292    1   750
## 7293    1   750
## 7294    1   750
## 7295    1   750
## 7296    1   750
## 7297    1   750
## 7298    1   750
## 7299    1   750
## 7300    1   750
## 7301    1   750
## 7302    1   750
## 7303    1   750
## 7304    1   750
## 7305    1   750
## 7306    1   750
## 7307    1   750
## 7308    1   750
## 7309    1   750
## 7310    1   750
## 7311    1   750
## 7312    1   750
## 7313    1   750
## 7314    1   750
## 7315    1   750
## 7316    1   750
## 7317    1   750
## 7318    1   750
## 7319    1   750
## 7320    1   750
## 7321    1   750
## 7322    1   750
## 7323    1   750
## 7324    1   750
## 7325    1   750
## 7326    1   750
## 7327    1   750
## 7328    1   750
## 7329    1   750
## 7330    1   750
## 7331    1   750
## 7332    1   750
## 7333    1   750
## 7334    1   750
## 7335    1   750
## 7336    1   750
## 7337    1   750
## 7338    1   750
## 7339    1   750
## 7340    1   750
## 7341    1   750
## 7342    1   750
## 7343    1   750
## 7344    1   750
## 7345    1   750
## 7346    1   750
## 7347    1   750
## 7348    1   750
## 7349    1   750
## 7350    1   750
## 7351    1   750
## 7352    1   750
## 7353    1   750
## 7354    1   750
## 7355    1   750
## 7356    1   750
## 7357    1   750
## 7358    1   750
## 7359    1   750
## 7360    1   750
## 7361    1   750
## 7362    1   750
## 7363    1   750
## 7364    1   750
## 7365    1   750
## 7366    1   750
## 7367    1   750
## 7368    1   750
## 7369    1   750
## 7370    1   750
## 7371    1   750
## 7372    1   750
## 7373    1   750
## 7374    1   750
## 7375    1   750
## 7376    1   750
## 7377    1   750
## 7378    1   750
## 7379    1   750
## 7380    1   750
## 7381    1   750
## 7382    1   750
## 7383    1   750
## 7384    1   750
## 7385    1   750
## 7386    1   750
## 7387    1   750
## 7388    1   750
## 7389    1   750
## 7390    1   750
## 7391    1   750
## 7392    1   750
## 7393    1   750
## 7394    1   750
## 7395    1   750
## 7396    1   750
## 7397    1   750
## 7398    1   750
## 7399    1   750
## 7400    1   750
## 7401    1   750
## 7402    1   750
## 7403    1   750
## 7404    1   750
## 7405    1   750
## 7406    1   750
## 7407    1   750
## 7408    1   750
## 7409    1   750
## 7410    1   750
## 7411    1   750
## 7412    1   750
## 7413    1   750
## 7414    1   750
## 7415    1   750
## 7416    1   750
## 7417    1   750
## 7418    1   750
## 7419    1   750
## 7420    1   750
## 7421    1   750
## 7422    1   750
## 7423    1   750
## 7424    1   750
## 7425    1   750
## 7426    1   750
## 7427    1   750
## 7428    1   750
## 7429    1   750
## 7430    1   750
## 7431    1   750
## 7432    1   750
## 7433    1   750
## 7434    1   750
## 7435    1   750
## 7436    1   750
## 7437    1   750
## 7438    1   750
## 7439    1   750
## 7440    1   750
## 7441    1   750
## 7442    1   750
## 7443    1   750
## 7444    1   750
## 7445    1   750
## 7446    1   750
## 7447    1   750
## 7448    1   750
## 7449    1   750
## 7450    1   750
## 7451    1   750
## 7452    1   750
## 7453    1   750
## 7454    1   750
## 7455    1   750
## 7456    1   750
## 7457    1   750
## 7458    1   750
## 7459    1   750
## 7460    1   750
## 7461    1   750
## 7462    1   750
## 7463    1   750
## 7464    1   750
## 7465    1   750
## 7466    1   750
## 7467    1   750
## 7468    1   750
## 7469    1   750
## 7470    1   750
## 7471    1   750
## 7472    1   750
## 7473    1   750
## 7474    1   750
## 7475    1   750
## 7476    1   750
## 7477    1   750
## 7478    1   750
## 7479    1   750
## 7480    1   750
## 7481    1   750
## 7482    1   750
## 7483    1   750
## 7484    1   750
## 7485    1   750
## 7486    1   750
## 7487    1   750
## 7488    1   750
## 7489    1   750
## 7490    1   750
## 7491    1   750
## 7492    1   750
## 7493    1   750
## 7494    1   750
## 7495    1   750
## 7496    1   750
## 7497    1   750
## 7498    1   750
## 7499    1   750
## 7500    1   750
## 7501    1   750
## 7502    1   750
## 7503    1   750
## 7504    1   750
## 7505    1   750
## 7506    1   750
## 7507    1   750
## 7508    1   750
## 7509    1   750
## 7510    1   750
## 7511    1   750
## 7512    1   750
## 7513    1   750
## 7514    1   750
## 7515    1   750
## 7516    1   750
## 7517    1   750
## 7518    1   750
## 7519    1   750
## 7520    1   750
## 7521    1   750
## 7522    1   750
## 7523    1   750
## 7524    1   750
## 7525    1   750
## 7526    1   750
## 7527    1   750
## 7528    1   750
## 7529    1   750
## 7530    1   750
## 7531    1   750
## 7532    1   750
## 7533    1   750
## 7534    1   750
## 7535    1   750
## 7536    1   750
## 7537    1   750
## 7538    1   750
## 7539    1   750
## 7540    1   750
## 7541    1   750
## 7542    1   750
## 7543    1   750
## 7544    1   750
## 7545    1   750
## 7546    1   750
## 7547    1   750
## 7548    1   750
## 7549    1   750
## 7550    1   750
## 7551    1   750
## 7552    1   750
## 7553    1   750
## 7554    1   750
## 7555    1   750
## 7556    1   750
## 7557    1   750
## 7558    1   750
## 7559    1   750
## 7560    1   401
## 7561    1   401
## 7562    1   401
## 7563    1   401
## 7564    1   401
## 7565    1   401
## 7566    1   401
## 7567    1   401
## 7568    1   401
## 7569    1   401
## 7570    1   401
## 7571    1   401
## 7572    1   401
## 7573    1   401
## 7574    1   401
## 7575    1   401
## 7576    1   401
## 7577    1   401
## 7578    1   401
## 7579    1   401
## 7580    1   401
## 7581    1   401
## 7582    1   401
## 7583    1   401
## 7584    1   401
## 7585    1   401
## 7586    1   401
## 7587    1   401
## 7588    1   401
## 7589    1   401
## 7590    1   401
## 7591    1   401
## 7592    1   401
## 7593    1   401
## 7594    1   401
## 7595    1   401
## 7596    1   401
## 7597    1   401
## 7598    1   401
## 7599    1   401
## 7600    1   401
## 7601    1   401
## 7602    1   401
## 7603    1   401
## 7604    1   401
## 7605    1   401
## 7606    1   401
## 7607    1   401
## 7608    1   401
## 7609    1   401
## 7610    1   401
## 7611    1   401
## 7612    1   401
## 7613    1   401
## 7614    1   401
## 7615    1   401
## 7616    1   401
## 7617    1   401
## 7618    1   401
## 7619    1   401
## 7620    1   401
## 7621    1   401
## 7622    1   401
## 7623    1   401
## 7624    1   401
## 7625    1   401
## 7626    1   401
## 7627    1   401
## 7628    1   401
## 7629    1   401
## 7630    1   401
## 7631    1   401
## 7632    1   401
## 7633    1   401
## 7634    1   401
## 7635    1   401
## 7636    1   401
## 7637    1   401
## 7638    1   401
## 7639    1   401
## 7640    1   401
## 7641    1   401
## 7642    1   401
## 7643    1   401
## 7644    1   401
## 7645    1   401
## 7646    1   401
## 7647    1   401
## 7648    1   401
## 7649    1   401
## 7650    1   401
## 7651    1   401
## 7652    1   401
## 7653    1   401
## 7654    1   401
## 7655    1   401
## 7656    1   401
## 7657    1   401
## 7658    1   401
## 7659    1   401
## 7660    1   401
## 7661    1   401
## 7662    1   401
## 7663    1   401
## 7664    1   401
## 7665    1   401
## 7666    1   401
## 7667    1   401
## 7668    1   401
## 7669    1   401
## 7670    1   401
## 7671    1   401
## 7672    1   401
## 7673    1   401
## 7674    1   401
## 7675    1   401
## 7676    1   401
## 7677    1   401
## 7678    1   401
## 7679    1   401
## 7680    1   401
## 7681    1   401
## 7682    1   401
## 7683    1   401
## 7684    1   401
## 7685    1   401
## 7686    1   401
## 7687    1   401
## 7688    1   401
## 7689    1   401
## 7690    1   401
## 7691    1   401
## 7692    1   401
## 7693    1   401
## 7694    1   401
## 7695    1   401
## 7696    1   401
## 7697    1   401
## 7698    1   401
## 7699    1   401
## 7700    1   401
## 7701    1   401
## 7702    1   401
## 7703    1   401
## 7704    1   401
## 7705    1   401
## 7706    1   401
## 7707    1   401
## 7708    1   401
## 7709    1   401
## 7710    1   401
## 7711    1   401
## 7712    1   401
## 7713    1   401
## 7714    1   401
## 7715    1   401
## 7716    1   401
## 7717    1   401
## 7718    1   401
## 7719    1   401
## 7720    1   401
## 7721    1   616
## 7722    1   616
## 7723    1   616
## 7724    1   616
## 7725    1   616
## 7726    1   616
## 7727    1   616
## 7728    1   616
## 7729    1   616
## 7730    1   616
## 7731    1   616
## 7732    1   616
## 7733    1   616
## 7734    1   616
## 7735    1   616
## 7736    1   616
## 7737    1   616
## 7738    1   616
## 7739    1   616
## 7740    1   616
## 7741    1   616
## 7742    1   616
## 7743    1   616
## 7744    1   616
## 7745    1   616
## 7746    1   616
## 7747    1   616
## 7748    1   616
## 7749    1   616
## 7750    1   616
## 7751    1   616
## 7752    1   616
## 7753    1   616
## 7754    1   616
## 7755    1   616
## 7756    1   616
## 7757    1   616
## 7758    1   616
## 7759    1   616
## 7760    1   616
## 7761    1   616
## 7762    1   616
## 7763    1   616
## 7764    1   616
## 7765    1   616
## 7766    1   616
## 7767    1   616
## 7768    1   616
## 7769    1   616
## 7770    1   616
## 7771    1   616
## 7772    1   616
## 7773    1   616
## 7774    1   616
## 7775    1   616
## 7776    1   616
## 7777    1   616
## 7778    1   616
## 7779    1   616
## 7780    1   616
## 7781    1   616
## 7782    1   616
## 7783    1   616
## 7784    1   616
## 7785    1   616
## 7786    1   616
## 7787    1   616
## 7788    1   616
## 7789    1   616
## 7790    1   616
## 7791    1   616
## 7792    1   616
## 7793    1   616
## 7794    1   616
## 7795    1   616
## 7796    1   616
## 7797    1   616
## 7798    1   616
## 7799    1   616
## 7800    1   616
## 7801    1   616
## 7802    1   616
## 7803    1   616
## 7804    1   616
## 7805    1   616
## 7806    1   616
## 7807    1   616
## 7808    1   616
## 7809    1   616
## 7810    1   616
## 7811    1   616
## 7812    1   616
## 7813    1   616
## 7814    1   616
## 7815    1   616
## 7816    1   616
## 7817    1   616
## 7818    1   616
## 7819    1   616
## 7820    1   616
## 7821    1   616
## 7822    1   616
## 7823    1   616
## 7824    1   616
## 7825    1   616
## 7826    1   616
## 7827    1   616
## 7828    1   616
## 7829    1   616
## 7830    1   616
## 7831    1   616
## 7832    1   616
## 7833    1   616
## 7834    1   616
## 7835    1   616
## 7836    1   616
## 7837    1   616
## 7838    1   616
## 7839    1   616
## 7840    1   616
## 7841    1   616
## 7842    1   616
## 7843    1   616
## 7844    1   616
## 7845    1   616
## 7846    1   616
## 7847    1   616
## 7848    1   616
## 7849    1   616
## 7850    1   616
## 7851    1   616
## 7852    1   616
## 7853    1   616
## 7854    1   616
## 7855    1   616
## 7856    1   616
## 7857    1   616
## 7858    1   616
## 7859    1   616
## 7860    1   616
## 7861    1   616
## 7862    1   616
## 7863    1   616
## 7864    1   616
## 7865    1   616
## 7866    1   616
## 7867    1   616
## 7868    1   616
## 7869    1   616
## 7870    1   616
## 7871    1   616
## 7872    1   616
## 7873    1   616
## 7874    1   616
## 7875    1   616
## 7876    1   616
## 7877    1   616
## 7878    1   616
## 7879    1   616
## 7880    1   616
## 7881    1   616
## 7882    1   616
## 7883    1   616
## 7884    1   616
## 7885    1   616
## 7886    1   616
## 7887    1   616
## 7888    1   616
## 7889    1   616
## 7890    1   616
## 7891    1   616
## 7892    1   616
## 7893    1   616
## 7894    1   616
## 7895    1   616
## 7896    1   616
## 7897    1   616
## 7898    1   616
## 7899    1   616
## 7900    1   616
## 7901    1   616
## 7902    1   616
## 7903    1   616
## 7904    1   616
## 7905    1   616
## 7906    1   616
## 7907    1   616
## 7908    1   616
## 7909    1   616
## 7910    1   616
## 7911    1   616
## 7912    1   616
## 7913    1   616
## 7914    1   616
## 7915    1   616
## 7916    1   616
## 7917    1   616
## 7918    1   616
## 7919    1   616
## 7920    1   616
## 7921    1   616
## 7922    1   616
## 7923    1   616
## 7924    1   616
## 7925    1   616
## 7926    1   616
## 7927    1   616
## 7928    1   616
## 7929    1   616
## 7930    1   616
## 7931    1   616
## 7932    1   616
## 7933    1   616
## 7934    1   616
## 7935    1   616
## 7936    1   616
## 7937    1   616
## 7938    1   616
## 7939    1   616
## 7940    1   616
## 7941    1   616
## 7942    1   616
## 7943    1   616
## 7944    1   616
## 7945    1   616
## 7946    1   616
## 7947    1   616
## 7948    1   616
## 7949    1   616
## 7950    1   616
## 7951    1   616
## 7952    1   616
## 7953    1   616
## 7954    1   616
## 7955    1   616
## 7956    1   616
## 7957    1   616
## 7958    1   616
## 7959    1   616
## 7960    1   616
## 7961    1   616
## 7962    1   616
## 7963    1   616
## 7964    1   616
## 7965    1   616
## 7966    1   616
## 7967    1   616
## 7968    1   616
## 7969    1   616
## 7970    1   616
## 7971    1   616
## 7972    1   616
## 7973    1  1168
## 7974    1  1168
## 7975    1  1168
## 7976    1  1168
## 7977    1  1168
## 7978    1  1168
## 7979    1  1168
## 7980    1  1168
## 7981    1  1168
## 7982    1  1168
## 7983    1  1168
## 7984    1  1168
## 7985    1  1168
## 7986    1  1168
## 7987    1  1168
## 7988    1  1168
## 7989    1  1168
## 7990    1  1168
## 7991    1  1168
## 7992    1  1168
## 7993    1  1168
## 7994    1  1168
## 7995    1  1168
## 7996    1  1168
## 7997    1  1168
## 7998    1  1168
## 7999    1  1168
## 8000    1  1168
## 8001    1  1168
## 8002    1  1168
## 8003    1  1168
## 8004    1  1168
## 8005    1  1168
## 8006    1  1168
## 8007    1  1168
## 8008    1  1168
## 8009    1  1168
## 8010    1  1168
## 8011    1  1168
## 8012    1  1168
## 8013    1  1168
## 8014    1  1168
## 8015    1  1168
## 8016    1  1168
## 8017    1  1168
## 8018    1  1168
## 8019    1  1168
## 8020    1  1168
## 8021    1  1168
## 8022    1  1168
## 8023    1  1168
## 8024    1  1168
## 8025    1  1168
## 8026    1  1168
## 8027    1  1168
## 8028    1  1168
## 8029    1  1168
## 8030    1  1168
## 8031    1  1168
## 8032    1  1168
## 8033    1  1168
## 8034    1  1168
## 8035    1  1168
## 8036    1  1168
## 8037    1  1168
## 8038    1  1168
## 8039    1  1168
## 8040    1  1168
## 8041    1  1168
## 8042    1  1168
## 8043    1  1168
## 8044    1  1168
## 8045    1  1168
## 8046    1  1168
## 8047    1  1168
## 8048    1  1168
## 8049    1  1168
## 8050    1  1168
## 8051    1  1168
## 8052    1  1168
## 8053    1  1168
## 8054    1  1168
## 8055    1  1168
## 8056    1  1168
## 8057    1  1168
## 8058    1  1168
## 8059    1  1168
## 8060    1  1168
## 8061    1  1168
## 8062    1  1168
## 8063    1  1168
## 8064    1  1168
## 8065    1  1168
## 8066    1  1168
## 8067    1  1168
## 8068    1  1168
## 8069    1  1168
## 8070    1  1168
## 8071    1  1168
## 8072    1  1168
## 8073    1  1168
## 8074    1  1168
## 8075    1  1168
## 8076    1  1168
## 8077    1  1168
## 8078    1  1168
## 8079    1  1168
## 8080    1  1168
## 8081    1  1168
## 8082    1  1168
## 8083    1  1168
## 8084    1  1168
## 8085    1  1168
## 8086    1  1168
## 8087    1  1168
## 8088    1  1168
## 8089    1  1168
## 8090    1  1168
## 8091    1  1168
## 8092    1  1168
## 8093    1  1168
## 8094    1  1168
## 8095    1  1168
## 8096    1  1168
## 8097    1  1168
## 8098    1  1168
## 8099    1  1168
## 8100    1  1168
## 8101    1  1168
## 8102    1  1168
## 8103    1  1168
## 8104    1  1168
## 8105    1  1168
## 8106    1  1168
## 8107    1  1168
## 8108    1  1168
## 8109    1  1168
## 8110    1  1168
## 8111    1  1168
## 8112    1  1168
## 8113    1  1168
## 8114    1  1168
## 8115    1  1168
## 8116    1  1168
## 8117    1  1168
## 8118    1  1168
## 8119    1  1168
## 8120    1  1168
## 8121    1  1168
## 8122    1  1168
## 8123    1  1168
## 8124    1  1168
## 8125    1  1168
## 8126    1  1168
## 8127    1  1168
## 8128    1  1168
## 8129    1  1168
## 8130    1  1168
## 8131    1  1168
## 8132    1  1168
## 8133    1  1168
## 8134    1  1168
## 8135    1  1168
## 8136    1  1168
## 8137    1  1168
## 8138    1  1168
## 8139    1  1168
## 8140    1  1168
## 8141    1  1168
## 8142    1  1168
## 8143    1  1168
## 8144    1  1168
## 8145    1  1168
## 8146    1  1168
## 8147    1  1168
## 8148    1  1168
## 8149    1  1168
## 8150    1  1168
## 8151    1  1168
## 8152    1  1168
## 8153    1  1168
## 8154    1  1168
## 8155    1  1168
## 8156    1  1168
## 8157    1  1168
## 8158    1  1168
## 8159    1  1168
## 8160    1  1168
## 8161    1  1168
## 8162    1  1168
## 8163    1  1168
## 8164    1  1168
## 8165    1  1168
## 8166    1  1168
## 8167    1  1168
## 8168    1  1168
## 8169    1  1168
## 8170    1  1168
## 8171    1  1168
## 8172    1  1168
## 8173    1  1168
## 8174    1  1168
## 8175    1  1168
## 8176    1  1168
## 8177    1  1168
## 8178    1  1168
## 8179    1  1168
## 8180    1  1168
## 8181    1  1168
## 8182    1  1168
## 8183    1  1168
## 8184    1  1168
## 8185    1  1168
## 8186    1  1168
## 8187    1  1168
## 8188    1  1168
## 8189    1  1168
## 8190    1  1168
## 8191    1  1168
## 8192    1  1168
## 8193    1  1168
## 8194    1  1168
## 8195    1  1168
## 8196    1  1168
## 8197    1  1168
## 8198    1  1168
## 8199    1  1168
## 8200    1  1168
## 8201    1  1168
## 8202    1  1168
## 8203    1  1168
## 8204    1  1168
## 8205    1  1168
## 8206    1  1168
## 8207    1  1168
## 8208    1  1168
## 8209    1  1168
## 8210    1  1168
## 8211    1  1168
## 8212    1  1168
## 8213    1  1168
## 8214    1  1168
## 8215    1  1168
## 8216    1  1168
## 8217    1  1168
## 8218    1  1168
## 8219    1  1168
## 8220    1  1168
## 8221    1  1168
## 8222    1  1168
## 8223    1  1168
## 8224    1  1168
## 8225    1  1168
## 8226    1  1168
## 8227    1  1168
## 8228    1  1168
## 8229    1  1168
## 8230    1  1168
## 8231    1  1168
## 8232    1  1168
## 8233    1  1168
## 8234    1  1168
## 8235    1  1168
## 8236    1  1168
## 8237    1  1168
## 8238    1  1168
## 8239    1  1168
## 8240    1  1168
## 8241    1  1168
## 8242    1  1168
## 8243    1  1168
## 8244    1  1168
## 8245    1  1168
## 8246    1  1168
## 8247    1  1168
## 8248    1  1168
## 8249    1  1168
## 8250    1  1168
## 8251    1  1168
## 8252    1  1168
## 8253    1  1168
## 8254    1  1168
## 8255    1  1168
## 8256    1  1168
## 8257    1  1168
## 8258    1  1168
## 8259    1  1168
## 8260    1  1168
## 8261    1  1168
## 8262    1  1168
## 8263    1  1168
## 8264    1  1168
## 8265    1  1168
## 8266    1  1168
## 8267    1  1168
## 8268    1  1168
## 8269    1  1168
## 8270    1  1168
## 8271    1  1168
## 8272    1  1168
## 8273    1  1168
## 8274    1  1168
## 8275    1  1168
## 8276    1  1168
## 8277    1  1168
## 8278    1  1168
## 8279    1  1168
## 8280    1  1168
## 8281    1  1168
## 8282    1  1168
## 8283    1  1168
## 8284    1  1168
## 8285    1  1168
## 8286    1  1168
## 8287    1  1168
## 8288    1  1168
## 8289    1  1168
## 8290    1  1168
## 8291    1  1168
## 8292    1  1168
## 8293    1  1168
## 8294    1  1168
## 8295    1  1168
## 8296    1  1168
## 8297    1  1168
## 8298    1  1168
## 8299    1  1168
## 8300    1  1168
## 8301    1  1168
## 8302    1  1168
## 8303    1  1168
## 8304    1  1168
## 8305    1  1168
## 8306    1  1168
## 8307    1  1168
## 8308    1  1168
## 8309    1  1168
## 8310    1  1168
## 8311    1  1168
## 8312    1  1168
## 8313    1  1168
## 8314    1  1168
## 8315    1  1168
## 8316    1  1168
## 8317    1  1168
## 8318    1  1168
## 8319    1  1168
## 8320    1  1168
## 8321    1  1168
## 8322    1  1168
## 8323    1  1168
## 8324    1  1168
## 8325    1  1168
## 8326    1  1168
## 8327    1  1168
## 8328    1  1168
## 8329    1  1168
## 8330    1  1168
## 8331    1  1168
## 8332    1  1168
## 8333    1  1168
## 8334    1  1168
## 8335    1  1168
## 8336    1  1168
## 8337    1  1168
## 8338    1  1168
## 8339    1  1168
## 8340    1   584
## 8341    1   584
## 8342    1   584
## 8343    1   584
## 8344    1   584
## 8345    1   584
## 8346    1   584
## 8347    1   584
## 8348    1   584
## 8349    1   584
## 8350    1   584
## 8351    1   584
## 8352    1   584
## 8353    1   584
## 8354    1   584
## 8355    1   584
## 8356    1   584
## 8357    1   584
## 8358    1   584
## 8359    1   584
## 8360    1   584
## 8361    1   584
## 8362    1   584
## 8363    1   584
## 8364    1   584
## 8365    1   584
## 8366    1   584
## 8367    1   584
## 8368    1   584
## 8369    1   584
## 8370    1   584
## 8371    1   584
## 8372    1   584
## 8373    1   584
## 8374    1   584
## 8375    1   584
## 8376    1   584
## 8377    1   584
## 8378    1   584
## 8379    1   584
## 8380    1   584
## 8381    1   584
## 8382    1   584
## 8383    1   584
## 8384    1   584
## 8385    1   584
## 8386    1   584
## 8387    1   584
## 8388    1   584
## 8389    1   584
## 8390    1   584
## 8391    1   584
## 8392    1   584
## 8393    1   584
## 8394    1   584
## 8395    1   584
## 8396    1   584
## 8397    1   584
## 8398    1   584
## 8399    1   584
## 8400    1   584
## 8401    1   584
## 8402    1   584
## 8403    1   584
## 8404    1   584
## 8405    1   584
## 8406    1   584
## 8407    1   584
## 8408    1   584
## 8409    1   584
## 8410    1   584
## 8411    1   584
## 8412    1   584
## 8413    1   584
## 8414    1   584
## 8415    1   584
## 8416    1   584
## 8417    1   584
## 8418    1   584
## 8419    1   584
## 8420    1   584
## 8421    1   584
## 8422    1   584
## 8423    1   584
## 8424    1   584
## 8425    1   584
## 8426    1   584
## 8427    1   584
## 8428    1   584
## 8429    1   584
## 8430    1   584
## 8431    1   584
## 8432    1   584
## 8433    1   584
## 8434    1   584
## 8435    1   584
## 8436    1   584
## 8437    1   584
## 8438    1   584
## 8439    1   584
## 8440    1   584
## 8441    1   584
## 8442    1   584
## 8443    1   584
## 8444    1   584
## 8445    1   584
## 8446    1   584
## 8447    1   584
## 8448    1   584
## 8449    1   584
## 8450    1   584
## 8451    1   584
## 8452    1   584
## 8453    1   584
## 8454    1   584
## 8455    1   584
## 8456    1   584
## 8457    1   584
## 8458    1   584
## 8459    1   584
## 8460    1   584
## 8461    1   584
## 8462    1   584
## 8463    1   584
## 8464    1   584
## 8465    1   584
## 8466    1   584
## 8467    1   584
## 8468    1   584
## 8469    1   584
## 8470    1   584
## 8471    1   584
## 8472    1   584
## 8473    1   584
## 8474    1   584
## 8475    1   584
## 8476    1   584
## 8477    1   584
## 8478    1   584
## 8479    1   584
## 8480    1   584
## 8481    1   584
## 8482    1   584
## 8483    1   584
## 8484    1   584
## 8485    1   584
## 8486    1   584
## 8487    1   584
## 8488    1   584
## 8489    1   584
## 8490    1   584
## 8491    1   584
## 8492    1   584
## 8493    1   584
## 8494    1   584
## 8495    1   584
## 8496    1   584
## 8497    1   584
## 8498    1   584
## 8499    1   584
## 8500    1   584
## 8501    1   584
## 8502    1   584
## 8503    1   584
## 8504    1   584
## 8505    1   584
## 8506    1   584
## 8507    1   584
## 8508    1   584
## 8509    1   584
## 8510    1   584
## 8511    1   584
## 8512    1   584
## 8513    1   584
## 8514    1   584
## 8515    1   584
## 8516    1   584
## 8517    1   584
## 8518    1   584
## 8519    1   584
## 8520    1   584
## 8521    1   584
## 8522    1   584
## 8523    1   584
## 8524    1   584
## 8525    1   584
## 8526    1   584
## 8527    1   584
## 8528    1   584
## 8529    1   584
## 8530    1   584
## 8531    1   584
## 8532    1   584
## 8533    1   584
## 8534    1   584
## 8535    1   584
## 8536    1   584
## 8537    1   584
## 8538    1   584
## 8539    1   584
## 8540    1   584
## 8541    1   584
## 8542    1   584
## 8543    1   584
## 8544    1   584
## 8545    1   584
## 8546    1   584
## 8547    1   850
## 8548    1   850
## 8549    1   850
## 8550    1   850
## 8551    1   850
## 8552    1   850
## 8553    1   850
## 8554    1   850
## 8555    1   850
## 8556    1   850
## 8557    1   850
## 8558    1   850
## 8559    1   850
## 8560    1   850
## 8561    1   850
## 8562    1   850
## 8563    1   850
## 8564    1   850
## 8565    1   850
## 8566    1   850
## 8567    1   850
## 8568    1   850
## 8569    1   850
## 8570    1   850
## 8571    1   850
## 8572    1   850
## 8573    1   850
## 8574    1   850
## 8575    1   850
## 8576    1   850
## 8577    1   850
## 8578    1   850
## 8579    1   850
## 8580    1   850
## 8581    1   850
## 8582    1   850
## 8583    1   850
## 8584    1   850
## 8585    1   850
## 8586    1   850
## 8587    1   850
## 8588    1   850
## 8589    1   850
## 8590    1   850
## 8591    1   850
## 8592    1   850
## 8593    1   850
## 8594    1   850
## 8595    1   850
## 8596    1   850
## 8597    1   850
## 8598    1   850
## 8599    1   850
## 8600    1   850
## 8601    1   850
## 8602    1   850
## 8603    1   850
## 8604    1   850
## 8605    1   850
## 8606    1   850
## 8607    1   850
## 8608    1   850
## 8609    1   850
## 8610    1   850
## 8611    1   850
## 8612    1   850
## 8613    1   850
## 8614    1   850
## 8615    1   850
## 8616    1   850
## 8617    1   850
## 8618    1   850
## 8619    1   850
## 8620    1   850
## 8621    1   850
## 8622    1   850
## 8623    1   850
## 8624    1   850
## 8625    1   850
## 8626    1   850
## 8627    1   850
## 8628    1   850
## 8629    1   850
## 8630    1   850
## 8631    1   850
## 8632    1   850
## 8633    1   850
## 8634    1   850
## 8635    1   850
## 8636    1   850
## 8637    1   850
## 8638    1   850
## 8639    1   850
## 8640    1   850
## 8641    1   850
## 8642    1   850
## 8643    1   850
## 8644    1   850
## 8645    1   850
## 8646    1   850
## 8647    1   850
## 8648    1   850
## 8649    1   850
## 8650    1   850
## 8651    1   850
## 8652    1   850
## 8653    1   850
## 8654    1   850
## 8655    1   850
## 8656    1   850
## 8657    1   850
## 8658    1   850
## 8659    1   850
## 8660    1   850
## 8661    1   850
## 8662    1   850
## 8663    1   850
## 8664    1   850
## 8665    1   850
## 8666    1   850
## 8667    1   850
## 8668    1   850
## 8669    1   850
## 8670    1   850
## 8671    1   850
## 8672    1   850
## 8673    1   850
## 8674    1   850
## 8675    1   850
## 8676    1   850
## 8677    1   850
## 8678    1   850
## 8679    1   850
## 8680    1   850
## 8681    1   850
## 8682    1   850
## 8683    1   850
## 8684    1   850
## 8685    1   850
## 8686    1   850
## 8687    1   850
## 8688    1   850
## 8689    1   850
## 8690    1   850
## 8691    1   850
## 8692    1   850
## 8693    1   850
## 8694    1   850
## 8695    1   850
## 8696    1   850
## 8697    1   850
## 8698    1   850
## 8699    1   850
## 8700    1   850
## 8701    1   850
## 8702    1   850
## 8703    1   850
## 8704    1   850
## 8705    1   850
## 8706    1   850
## 8707    1   850
## 8708    1   850
## 8709    1   850
## 8710    1   850
## 8711    1   850
## 8712    1   850
## 8713    1   850
## 8714    1   850
## 8715    1   850
## 8716    1   850
## 8717    1   850
## 8718    1   850
## 8719    1   850
## 8720    1   850
## 8721    1   850
## 8722    1   850
## 8723    1   850
## 8724    1   850
## 8725    1   850
## 8726    1   850
## 8727    1   850
## 8728    1   850
## 8729    1   850
## 8730    1   850
## 8731    1   850
## 8732    1   850
## 8733    1   850
## 8734    1   850
## 8735    1   850
## 8736    1   850
## 8737    1   850
## 8738    1   850
## 8739    1   850
## 8740    1   850
## 8741    1   850
## 8742    1   850
## 8743    1   850
## 8744    1   850
## 8745    1   850
## 8746    1   850
## 8747    1   850
## 8748    1   850
## 8749    1   850
## 8750    1   850
## 8751    1   850
## 8752    1   850
## 8753    1   850
## 8754    1   850
## 8755    1   850
## 8756    1   850
## 8757    1   850
## 8758    1   850
## 8759    1   850
## 8760    1   850
## 8761    1   850
## 8762    1   850
## 8763    1   850
## 8764    1   850
## 8765    1   850
## 8766    1   850
## 8767    1   850
## 8768    1   850
## 8769    1   850
## 8770    1   850
## 8771    1   850
## 8772    1   850
## 8773    1   850
## 8774    1   850
## 8775    1   850
## 8776    1   850
## 8777    1   850
## 8778    1   850
## 8779    1   850
## 8780    1   850
## 8781    1   850
## 8782    1   850
## 8783    1   850
## 8784    1   850
## 8785    1   850
## 8786    1   850
## 8787    1   850
## 8788    1   850
## 8789    1   850
## 8790    1   850
## 8791    1   850
## 8792    1   850
## 8793    1   850
## 8794    1   850
## 8795    1   850
## 8796    1   850
## 8797    1   850
## 8798    1   850
## 8799    1   850
## 8800    1   850
## 8801    1   850
## 8802    1   850
## 8803    1   850
## 8804    1   850
## 8805    1   850
## 8806    1   850
## 8807    1   850
## 8808    1   850
## 8809    1   850
## 8810    1   850
## 8811    1   850
## 8812    1   850
## 8813    1   850
## 8814    1   850
## 8815    1   850
## 8816    1   850
## 8817    1   850
## 8818    1   850
## 8819    1   850
## 8820    1   850
## 8821    1   850
## 8822    1   850
## 8823    1   850
## 8824    1   850
## 8825    1   850
## 8826    1   850
## 8827    1   850
## 8828    1   850
## 8829    1   850
## 8830    1   850
## 8831    1   850
## 8832    1   407
## 8833    1   407
## 8834    1   407
## 8835    1   407
## 8836    1   407
## 8837    1   407
## 8838    1   407
## 8839    1   407
## 8840    1   407
## 8841    1   407
## 8842    1   407
## 8843    1   407
## 8844    1   407
## 8845    1   407
## 8846    1   407
## 8847    1   407
## 8848    1   407
## 8849    1   407
## 8850    1   407
## 8851    1   407
## 8852    1   407
## 8853    1   407
## 8854    1   407
## 8855    1   407
## 8856    1   407
## 8857    1   407
## 8858    1   407
## 8859    1   407
## 8860    1   407
## 8861    1   407
## 8862    1   407
## 8863    1   407
## 8864    1   407
## 8865    1   407
## 8866    1   407
## 8867    1   407
## 8868    1   407
## 8869    1   407
## 8870    1   407
## 8871    1   407
## 8872    1   407
## 8873    1   407
## 8874    1   407
## 8875    1   407
## 8876    1   407
## 8877    1   407
## 8878    1   407
## 8879    1   407
## 8880    1   407
## 8881    1   407
## 8882    1   407
## 8883    1   407
## 8884    1   407
## 8885    1   407
## 8886    1   407
## 8887    1   407
## 8888    1   407
## 8889    1   407
## 8890    1   407
## 8891    1   407
## 8892    1   407
## 8893    1   407
## 8894    1   407
## 8895    1   407
## 8896    1   407
## 8897    1   407
## 8898    1   407
## 8899    1   407
## 8900    1   407
## 8901    1   407
## 8902    1   407
## 8903    1   407
## 8904    1   407
## 8905    1   407
## 8906    1   407
## 8907    1   407
## 8908    1   407
## 8909    1   407
## 8910    1   407
## 8911    1   407
## 8912    1   407
## 8913    1   407
## 8914    1   407
## 8915    1   407
## 8916    1   407
## 8917    1   407
## 8918    1   407
## 8919    1   407
## 8920    1   407
## 8921    1   407
## 8922    1   407
## 8923    1   407
## 8924    1   407
## 8925    1   407
## 8926    1   407
## 8927    1   407
## 8928    1   407
## 8929    1   407
## 8930    1   407
## 8931    1   407
## 8932    1   407
## 8933    1   407
## 8934    1   407
## 8935    1   407
## 8936    1   407
## 8937    1   407
## 8938    1   407
## 8939    1   407
## 8940    1   407
## 8941    1   407
## 8942    1   407
## 8943    1   407
## 8944    1   407
## 8945    1   407
## 8946    1   407
## 8947    1   407
## 8948    1   407
## 8949    1   407
## 8950    1   407
## 8951    1   407
## 8952    1   407
## 8953    1   407
## 8954    1   407
## 8955    1   407
## 8956    1   407
## 8957    1   407
## 8958    1   407
## 8959    1   407
## 8960    1   407
## 8961    1   407
## 8962    1   407
## 8963    1   407
## 8964    1   407
## 8965    1   407
## 8966    1   407
## 8967    1   407
## 8968    1   407
## 8969    1   407
## 8970    1   407
## 8971    1   407
## 8972    1   407
## 8973    1   407
## 8974    1   407
## 8975    1   407
## 8976    1   407
## 8977    1   407
## 8978    1   407
## 8979    1   407
## 8980    1   407
## 8981    1   407
## 8982    1   407
## 8983    1   407
## 8984    1   407
## 8985    1   407
## 8986    1   407
## 8987    1   407
## 8988    1   407
## 8989    1   407
## 8990    1   407
## 8991    1   407
## 8992    1   407
## 8993    1   407
## 8994    1   407
## 8995    1   407
## 8996    1   407
## 8997    1   407
## 8998    1   407
## 8999    1   407
## 9000    1   407
## 9001    1   407
## 9002    1   407
## 9003    1   407
## 9004    1   407
## 9005    1   407
## 9006    1   407
## 9007    1   407
## 9008    1   407
## 9009    1   407
## 9010    1   407
## 9011    1   407
## 9012    1   407
## 9013    1   407
## 9014    1   407
## 9015    1   407
## 9016    1   407
## 9017    1   407
## 9018    1   407
## 9019    1   407
## 9020    1   407
## 9021    1   407
## 9022    1   407
## 9023    1   407
## 9024    1   407
## 9025    1   407
## 9026    1   407
## 9027    1   407
## 9028    1   407
## 9029    1   407
## 9030    1   407
## 9031    1   407
## 9032    1   407
## 9033    1   407
## 9034    1   407
## 9035    1   407
## 9036    1   407
## 9037    1   407
## 9038    1   407
## 9039    1   407
## 9040    1   407
## 9041    1   407
## 9042    1   407
## 9043    1   407
## 9044    1   407
## 9045    1   407
## 9046    1   407
## 9047    1   407
## 9048    1   407
## 9049    1   407
## 9050    1   407
## 9051    1   407
## 9052    1   407
## 9053    1   344
## 9054    1   344
## 9055    1   344
## 9056    1   344
## 9057    1   344
## 9058    1   344
## 9059    1   344
## 9060    1   344
## 9061    1   344
## 9062    1   344
## 9063    1   344
## 9064    1   344
## 9065    1   344
## 9066    1   344
## 9067    1   344
## 9068    1   344
## 9069    1   344
## 9070    1   344
## 9071    1   344
## 9072    1   344
## 9073    1   344
## 9074    1   344
## 9075    1   344
## 9076    1   344
## 9077    1   344
## 9078    1   344
## 9079    1   344
## 9080    1   344
## 9081    1   344
## 9082    1   344
## 9083    1   344
## 9084    1   344
## 9085    1   344
## 9086    1   344
## 9087    1   344
## 9088    1   344
## 9089    1   344
## 9090    1   344
## 9091    1   344
## 9092    1   344
## 9093    1   344
## 9094    1   344
## 9095    1   344
## 9096    1   344
## 9097    1   344
## 9098    1   344
## 9099    1   344
## 9100    1   344
## 9101    1   344
## 9102    1   344
## 9103    1   344
## 9104    1   344
## 9105    1   344
## 9106    1   344
## 9107    1   344
## 9108    1   344
## 9109    1   344
## 9110    1   344
## 9111    1   344
## 9112    1   344
## 9113    1   344
## 9114    1   344
## 9115    1   344
## 9116    1   344
## 9117    1   344
## 9118    1   344
## 9119    1   344
## 9120    1   344
## 9121    1   344
## 9122    1   344
## 9123    1   344
## 9124    1   344
## 9125    1   344
## 9126    1   344
## 9127    1   344
## 9128    1   344
## 9129    1   344
## 9130    1   344
## 9131    1   344
## 9132    1   344
## 9133    1   344
## 9134    1   344
## 9135    1   344
## 9136    1   344
## 9137    1   344
## 9138    1   344
## 9139    1   344
## 9140    1   344
## 9141    1   344
## 9142    1   344
## 9143    1   344
## 9144    1   344
## 9145    1   344
## 9146    1   344
## 9147    1   344
## 9148    1   344
## 9149    1   344
## 9150    1   344
## 9151    1   344
## 9152    1   344
## 9153    1   344
## 9154    1   344
## 9155    1   344
## 9156    1   344
## 9157    1   344
## 9158    1   344
## 9159    1   344
## 9160    1   344
## 9161    1   344
## 9162    1   344
## 9163    1   344
## 9164    1   344
## 9165    1   344
## 9166    1   344
## 9167    1   344
## 9168    1   344
## 9169    1   344
## 9170    1   344
## 9171    1   344
## 9172    1   344
## 9173    1   344
## 9174    1   344
## 9175    1   344
## 9176    1   344
## 9177    1   344
## 9178    1   344
## 9179    1   344
## 9180    1   344
## 9181    1   344
## 9182    1   344
## 9183    1   344
## 9184    1   344
## 9185    1  1608
## 9186    1  1608
## 9187    1  1608
## 9188    1  1608
## 9189    1  1608
## 9190    1  1608
## 9191    1  1608
## 9192    1  1608
## 9193    1  1608
## 9194    1  1608
## 9195    1  1608
## 9196    1  1608
## 9197    1  1608
## 9198    1  1608
## 9199    1  1608
## 9200    1  1608
## 9201    1  1608
## 9202    1  1608
## 9203    1  1608
## 9204    1  1608
## 9205    1  1608
## 9206    1  1608
## 9207    1  1608
## 9208    1  1608
## 9209    1  1608
## 9210    1  1608
## 9211    1  1608
## 9212    1  1608
## 9213    1  1608
## 9214    1  1608
## 9215    1  1608
## 9216    1  1608
## 9217    1  1608
## 9218    1  1608
## 9219    1  1608
## 9220    1  1608
## 9221    1  1608
## 9222    1  1608
## 9223    1  1608
## 9224    1  1608
## 9225    1  1608
## 9226    1  1608
## 9227    1  1608
## 9228    1  1608
## 9229    1  1608
## 9230    1  1608
## 9231    1  1608
## 9232    1  1608
## 9233    1  1608
## 9234    1  1608
## 9235    1  1608
## 9236    1  1608
## 9237    1  1608
## 9238    1  1608
## 9239    1  1608
## 9240    1  1608
## 9241    1  1608
## 9242    1  1608
## 9243    1  1608
## 9244    1  1608
## 9245    1  1608
## 9246    1  1608
## 9247    1  1608
## 9248    1  1608
## 9249    1  1608
## 9250    1  1608
## 9251    1  1608
## 9252    1  1608
## 9253    1  1608
## 9254    1  1608
## 9255    1  1608
## 9256    1  1608
## 9257    1  1608
## 9258    1  1608
## 9259    1  1608
## 9260    1  1608
## 9261    1  1608
## 9262    1  1608
## 9263    1  1608
## 9264    1  1608
## 9265    1  1608
## 9266    1  1608
## 9267    1  1608
## 9268    1  1608
## 9269    1  1608
## 9270    1  1608
## 9271    1  1608
## 9272    1  1608
## 9273    1  1608
## 9274    1  1608
## 9275    1  1608
## 9276    1  1608
## 9277    1  1608
## 9278    1  1608
## 9279    1  1608
## 9280    1  1608
## 9281    1  1608
## 9282    1  1608
## 9283    1  1608
## 9284    1  1608
## 9285    1  1608
## 9286    1  1608
## 9287    1  1608
## 9288    1  1608
## 9289    1  1608
## 9290    1  1608
## 9291    1  1608
## 9292    1  1608
## 9293    1  1608
## 9294    1  1608
## 9295    1  1608
## 9296    1  1608
## 9297    1  1608
## 9298    1  1608
## 9299    1  1608
## 9300    1  1608
## 9301    1  1608
## 9302    1  1608
## 9303    1  1608
## 9304    1  1608
## 9305    1  1608
## 9306    1  1608
## 9307    1  1608
## 9308    1  1608
## 9309    1  1608
## 9310    1  1608
## 9311    1  1608
## 9312    1  1608
## 9313    1  1608
## 9314    1  1608
## 9315    1  1608
## 9316    1  1608
## 9317    1  1608
## 9318    1  1608
## 9319    1  1608
## 9320    1  1608
## 9321    1  1608
## 9322    1  1608
## 9323    1  1608
## 9324    1  1608
## 9325    1  1608
## 9326    1  1608
## 9327    1  1608
## 9328    1  1608
## 9329    1  1608
## 9330    1  1608
## 9331    1  1608
## 9332    1  1608
## 9333    1  1608
## 9334    1  1608
## 9335    1  1608
## 9336    1  1608
## 9337    1  1608
## 9338    1  1608
## 9339    1  1608
## 9340    1  1608
## 9341    1  1608
## 9342    1  1608
## 9343    1  1608
## 9344    1  1608
## 9345    1  1608
## 9346    1  1608
## 9347    1  1608
## 9348    1  1608
## 9349    1  1608
## 9350    1  1608
## 9351    1  1608
## 9352    1  1608
## 9353    1  1608
## 9354    1  1608
## 9355    1  1608
## 9356    1  1608
## 9357    1  1608
## 9358    1  1608
## 9359    1  1608
## 9360    1  1608
## 9361    1  1608
## 9362    1  1608
## 9363    1  1608
## 9364    1  1608
## 9365    1  1608
## 9366    1  1608
## 9367    1  1608
## 9368    1  1608
## 9369    1  1608
## 9370    1  1608
## 9371    1  1608
## 9372    1  1608
## 9373    1  1608
## 9374    1  1608
## 9375    1  1608
## 9376    1  1608
## 9377    1  1608
## 9378    1  1608
## 9379    1  1608
## 9380    1  1608
## 9381    1  1608
## 9382    1  1608
## 9383    1  1608
## 9384    1  1608
## 9385    1  1608
## 9386    1  1608
## 9387    1  1608
## 9388    1  1608
## 9389    1  1608
## 9390    1  1608
## 9391    1  1608
## 9392    1  1608
## 9393    1  1608
## 9394    1  1608
## 9395    1  1608
## 9396    1  1608
## 9397    1  1608
## 9398    1  1608
## 9399    1  1608
## 9400    1  1608
## 9401    1  1608
## 9402    1  1608
## 9403    1  1608
## 9404    1  1608
## 9405    1  1608
## 9406    1  1608
## 9407    1  1608
## 9408    1  1608
## 9409    1  1608
## 9410    1  1608
## 9411    1  1608
## 9412    1  1608
## 9413    1  1608
## 9414    1  1608
## 9415    1  1608
## 9416    1  1608
## 9417    1  1608
## 9418    1  1608
## 9419    1  1608
## 9420    1  1608
## 9421    1  1608
## 9422    1  1608
## 9423    1  1608
## 9424    1  1608
## 9425    1  1608
## 9426    1  1608
## 9427    1  1608
## 9428    1  1608
## 9429    1  1608
## 9430    1  1608
## 9431    1  1608
## 9432    1  1608
## 9433    1  1608
## 9434    1  1608
## 9435    1  1608
## 9436    1  1608
## 9437    1  1608
## 9438    1  1608
## 9439    1  1608
## 9440    1  1608
## 9441    1  1608
## 9442    1  1608
## 9443    1  1608
## 9444    1  1608
## 9445    1  1608
## 9446    1  1608
## 9447    1  1608
## 9448    1  1608
## 9449    1  1608
## 9450    1  1608
## 9451    1  1608
## 9452    1  1608
## 9453    1  1608
## 9454    1  1608
## 9455    1  1608
## 9456    1  1608
## 9457    1  1608
## 9458    1  1608
## 9459    1  1608
## 9460    1  1608
## 9461    1  1608
## 9462    1  1608
## 9463    1  1608
## 9464    1  1608
## 9465    1  1608
## 9466    1  1608
## 9467    1  1608
## 9468    1  1608
## 9469    1  1608
## 9470    1  1608
## 9471    1  1608
## 9472    1  1608
## 9473    1  1608
## 9474    1  1608
## 9475    1  1608
## 9476    1  1608
## 9477    1  1608
## 9478    1  1608
## 9479    1  1608
## 9480    1  1608
## 9481    1  1608
## 9482    1  1608
## 9483    1  1608
## 9484    1  1608
## 9485    1  1608
## 9486    1  1608
## 9487    1  1608
## 9488    1  1608
## 9489    1  1608
## 9490    1  1608
## 9491    1  1608
## 9492    1  1608
## 9493    1  1608
## 9494    1  1608
## 9495    1  1608
## 9496    1  1608
## 9497    1  1608
## 9498    1  1608
## 9499    1  1608
## 9500    1  1608
## 9501    1  1608
## 9502    1  1608
## 9503    1  1608
## 9504    1  1608
## 9505    1  1608
## 9506    1  1608
## 9507    1  1608
## 9508    1  1608
## 9509    1  1608
## 9510    1  1608
## 9511    1  1608
## 9512    1  1608
## 9513    1  1608
## 9514    1  1608
## 9515    1  1608
## 9516    1  1608
## 9517    1  1608
## 9518    1  1608
## 9519    1  1608
## 9520    1  1608
## 9521    1  1608
## 9522    1  1608
## 9523    1  1608
## 9524    1  1608
## 9525    1  1608
## 9526    1  1608
## 9527    1  1608
## 9528    1  1608
## 9529    1  1608
## 9530    1  1608
## 9531    1  1608
## 9532    1  1608
## 9533    1  1608
## 9534    1  1608
## 9535    1  1608
## 9536    1  1608
## 9537    1  1608
## 9538    1  1608
## 9539    1  1608
## 9540    1  1608
## 9541    1  1608
## 9542    1  1608
## 9543    1  1608
## 9544    1  1608
## 9545    1  1608
## 9546    1  1608
## 9547    1  1608
## 9548    1  1608
## 9549    1  1608
## 9550    1  1608
## 9551    1  1608
## 9552    1  1608
## 9553    1  1608
## 9554    1  1608
## 9555    1  1608
## 9556    1  1608
## 9557    1  1608
## 9558    1  1608
## 9559    1  1608
## 9560    1  1608
## 9561    1  1608
## 9562    1  1608
## 9563    1  1608
## 9564    1  1608
## 9565    1  1608
## 9566    1  1608
## 9567    1  1608
## 9568    1  1608
## 9569    1  1608
## 9570    1  1608
## 9571    1  1608
## 9572    1  1608
## 9573    1  1608
## 9574    1  1608
## 9575    1  1608
## 9576    1  1608
## 9577    1  1608
## 9578    1  1608
## 9579    1  1608
## 9580    1  1608
## 9581    1  1608
## 9582    1  1608
## 9583    1  1608
## 9584    1  1608
## 9585    1  1608
## 9586    1  1608
## 9587    1  1608
## 9588    1  1608
## 9589    1  1608
## 9590    1  1608
## 9591    1  1608
## 9592    1  1608
## 9593    1  1608
## 9594    1  1608
## 9595    1  1608
## 9596    1   371
## 9597    1   371
## 9598    1   371
## 9599    1   371
## 9600    1   371
## 9601    1   371
## 9602    1   371
## 9603    1   371
## 9604    1   371
## 9605    1   371
## 9606    1   371
## 9607    1   371
## 9608    1   371
## 9609    1   371
## 9610    1   371
## 9611    1   371
## 9612    1   371
## 9613    1   371
## 9614    1   371
## 9615    1   371
## 9616    1   371
## 9617    1   371
## 9618    1   371
## 9619    1   371
## 9620    1   371
## 9621    1   371
## 9622    1   371
## 9623    1   371
## 9624    1   371
## 9625    1   371
## 9626    1   371
## 9627    1   371
## 9628    1   371
## 9629    1   371
## 9630    1   371
## 9631    1   371
## 9632    1   371
## 9633    1   371
## 9634    1   371
## 9635    1   371
## 9636    1   371
## 9637    1   371
## 9638    1   371
## 9639    1   371
## 9640    1   371
## 9641    1   371
## 9642    1   371
## 9643    1   371
## 9644    1   371
## 9645    1   371
## 9646    1   371
## 9647    1   371
## 9648    1   371
## 9649    1   371
## 9650    1   371
## 9651    1   371
## 9652    1   371
## 9653    1   371
## 9654    1   371
## 9655    1   371
## 9656    1   371
## 9657    1   371
## 9658    1   371
## 9659    1   371
## 9660    1   371
## 9661    1   371
## 9662    1   371
## 9663    1   371
## 9664    1   371
## 9665    1   371
## 9666    1   371
## 9667    1   371
## 9668    1   371
## 9669    1   371
## 9670    1   371
## 9671    1   371
## 9672    1   371
## 9673    1   371
## 9674    1   371
## 9675    1   371
## 9676    1   371
## 9677    1   371
## 9678    1   371
## 9679    1   371
## 9680    1   371
## 9681    1   371
## 9682    1   371
## 9683    1   371
## 9684    1   371
## 9685    1   371
## 9686    1   371
## 9687    1   371
## 9688    1   371
## 9689    1   371
## 9690    1   371
## 9691    1   371
## 9692    1   371
## 9693    1   371
## 9694    1   371
## 9695    1   371
## 9696    1   371
## 9697    1   371
## 9698    1   371
## 9699    1   371
## 9700    1   371
## 9701    1   371
## 9702    1   371
## 9703    1   371
## 9704    1   371
## 9705    1   371
## 9706    1   371
## 9707    1   371
## 9708    1   371
## 9709    1   371
## 9710    1   371
## 9711    1   371
## 9712    1   371
## 9713    1   371
## 9714    1   371
## 9715    1   371
## 9716    1   371
## 9717    1   371
## 9718    1   371
## 9719    1   371
## 9720    1   371
## 9721    1   371
## 9722    1   371
## 9723    1   371
## 9724    1   371
## 9725    1   371
## 9726    1   371
## 9727    1   371
## 9728    1   371
## 9729    1   371
## 9730    1   371
## 9731    1   371
## 9732    1   371
## 9733    1   371
## 9734    1   371
## 9735    1   371
## 9736    1   371
## 9737    1   371
## 9738    1   371
## 9739    1   371
## 9740    1   371
## 9741    1   371
## 9742    1   371
## 9743    1   371
## 9744    1   371
## 9745    1   371
## 9746    1   371
## 9747    1   371
## 9748    1   371
## 9749    1   371
## 9750    1   371
## 9751    1   371
## 9752    1   371
## 9753    1   371
## 9754    1   371
## 9755    1   371
## 9756    1   371
## 9757    1   371
## 9758    1   371
## 9759    1   371
## 9760    1   371
## 9761    1   371
## 9762    1   371
## 9763    1   371
## 9764    1   371
## 9765    1   371
## 9766    1   371
## 9767    1   371
## 9768    1   371
## 9769    1   371
## 9770    1   379
## 9771    1   379
## 9772    1   379
## 9773    1   379
## 9774    1   379
## 9775    1   379
## 9776    1   379
## 9777    1   379
## 9778    1   379
## 9779    1   379
## 9780    1   379
## 9781    1   379
## 9782    1   379
## 9783    1   379
## 9784    1   379
## 9785    1   379
## 9786    1   379
## 9787    1   379
## 9788    1   379
## 9789    1   379
## 9790    1   379
## 9791    1   379
## 9792    1   379
## 9793    1   379
## 9794    1   379
## 9795    1   379
## 9796    1   379
## 9797    1   379
## 9798    1   379
## 9799    1   379
## 9800    1   379
## 9801    1   379
## 9802    1   379
## 9803    1   379
## 9804    1   379
## 9805    1   379
## 9806    1   379
## 9807    1   379
## 9808    1   379
## 9809    1   379
## 9810    1   379
## 9811    1   379
## 9812    1   379
## 9813    1   379
## 9814    1   379
## 9815    1   379
## 9816    1   379
## 9817    1   379
## 9818    1   379
## 9819    1   379
## 9820    1   379
## 9821    1   379
## 9822    1   379
## 9823    1   379
## 9824    1   379
## 9825    1   379
## 9826    1   379
## 9827    1   379
## 9828    1   379
## 9829    1   379
## 9830    1   379
## 9831    1   379
## 9832    1   379
## 9833    1   379
## 9834    1   379
## 9835    1   379
## 9836    1   379
## 9837    1   379
## 9838    1   379
## 9839    1   379
## 9840    1   379
## 9841    1   379
## 9842    1   379
## 9843    1   379
## 9844    1   379
## 9845    1   379
## 9846    1   379
## 9847    1   379
## 9848    1   379
## 9849    1   379
## 9850    1   379
## 9851    1   379
## 9852    1   379
## 9853    1   379
## 9854    1   379
## 9855    1   379
## 9856    1   379
## 9857    1   379
## 9858    1   379
## 9859    1   379
## 9860    1   379
## 9861    1   379
## 9862    1   379
## 9863    1   379
## 9864    1   379
## 9865    1   379
## 9866    1   379
## 9867    1   379
## 9868    1   379
## 9869    1   379
## 9870    1   379
## 9871    1   379
## 9872    1   379
## 9873    1   379
## 9874    1   379
## 9875    1   379
## 9876    1   379
## 9877    1   379
## 9878    1   379
## 9879    1   379
## 9880    1   379
## 9881    1   379
## 9882    1   379
## 9883    1   379
## 9884    1   379
## 9885    1   379
## 9886    1   379
## 9887    1   379
## 9888    1   379
## 9889    1   379
## 9890    1   379
## 9891    1   379
## 9892    1   379
## 9893    1   379
## 9894    1   379
## 9895    1   379
## 9896    1   379
## 9897    1   379
## 9898    1   379
## 9899    1   379
## 9900    1   379
## 9901    1   379
## 9902    1   379
## 9903    1   379
## 9904    1   379
## 9905    1   379
## 9906    1   379
## 9907    1   379
## 9908    1   379
## 9909    1   379
## 9910    1   379
## 9911    1   379
## 9912    1   379
## 9913    1   379
## 9914    1   379
## 9915    1   379
## 9916    1   379
## 9917    1   379
## 9918    1   379
## 9919    1   379
## 9920    1   379
## 9921    1   379
## 9922    1   379
## 9923    1   379
## 9924    1   379
## 9925    1   379
## 9926    1   379
## 9927    1   379
## 9928    1   379
## 9929    1   379
## 9930    1   379
## 9931    1   379
## 9932    1   379
## 9933    1   379
## 9934    1   379
## 9935    1   379
## 9936    1   379
## 9937    1   379
## 9938    1   379
## 9939    1   379
## 9940    1   379
## 9941    1   379
## 9942    1   379
## 9943    1   379
## 9944    1   379
## 9945    1   379
## 9946    1   379
## 9947    1   379
## 9948    1   379
## 9949    1   379
## 9950    1   379
## 9951    1   379
## 9952    1   379
## 9953    1   379
## 9954    1   379
## 9955    1   379
## 9956    1   379
## 9957    1   379
## 9958    1   379
## 9959    1   379
## 9960    1   379
## 9961    1   967
## 9962    1   967
## 9963    1   967
## 9964    1   967
## 9965    1   967
## 9966    1   967
## 9967    1   967
## 9968    1   967
## 9969    1   967
## 9970    1   967
## 9971    1   967
## 9972    1   967
## 9973    1   967
## 9974    1   967
## 9975    1   967
## 9976    1   967
## 9977    1   967
## 9978    1   967
## 9979    1   967
## 9980    1   967
## 9981    1   967
## 9982    1   967
## 9983    1   967
## 9984    1   967
## 9985    1   967
## 9986    1   967
## 9987    1   967
## 9988    1   967
## 9989    1   967
## 9990    1   967
## 9991    1   967
## 9992    1   967
## 9993    1   967
## 9994    1   967
## 9995    1   967
## 9996    1   967
## 9997    1   967
## 9998    1   967
## 9999    1   967
## 10000   1   967
## 10001   1   967
## 10002   1   967
## 10003   1   967
## 10004   1   967
## 10005   1   967
## 10006   1   967
## 10007   1   967
## 10008   1   967
## 10009   1   967
## 10010   1   967
## 10011   1   967
## 10012   1   967
## 10013   1   967
## 10014   1   967
## 10015   1   967
## 10016   1   967
## 10017   1   967
## 10018   1   967
## 10019   1   967
## 10020   1   967
## 10021   1   967
## 10022   1   967
## 10023   1   967
## 10024   1   967
## 10025   1   967
## 10026   1   967
## 10027   1   967
## 10028   1   967
## 10029   1   967
## 10030   1   967
## 10031   1   967
## 10032   1   967
## 10033   1   967
## 10034   1   967
## 10035   1   967
## 10036   1   967
## 10037   1   967
## 10038   1   967
## 10039   1   967
## 10040   1   967
## 10041   1   967
## 10042   1   967
## 10043   1   967
## 10044   1   967
## 10045   1   967
## 10046   1   967
## 10047   1   967
## 10048   1   967
## 10049   1   967
## 10050   1   967
## 10051   1   967
## 10052   1   967
## 10053   1   967
## 10054   1   967
## 10055   1   967
## 10056   1   967
## 10057   1   967
## 10058   1   967
## 10059   1   967
## 10060   1   967
## 10061   1   967
## 10062   1   967
## 10063   1   967
## 10064   1   967
## 10065   1   967
## 10066   1   967
## 10067   1   967
## 10068   1   967
## 10069   1   967
## 10070   1   967
## 10071   1   967
## 10072   1   967
## 10073   1   967
## 10074   1   967
## 10075   1   967
## 10076   1   967
## 10077   1   967
## 10078   1   967
## 10079   1   967
## 10080   1   967
## 10081   1   967
## 10082   1   967
## 10083   1   967
## 10084   1   967
## 10085   1   967
## 10086   1   967
## 10087   1   967
## 10088   1   967
## 10089   1   967
## 10090   1   967
## 10091   1   967
## 10092   1   967
## 10093   1   967
## 10094   1   967
## 10095   1   967
## 10096   1   967
## 10097   1   967
## 10098   1   967
## 10099   1   967
## 10100   1   967
## 10101   1   967
## 10102   1   967
## 10103   1   967
## 10104   1   967
## 10105   1   967
## 10106   1   967
## 10107   1   967
## 10108   1   967
## 10109   1   967
## 10110   1   967
## 10111   1   967
## 10112   1   967
## 10113   1   967
## 10114   1   967
## 10115   1   967
## 10116   1   967
## 10117   1   967
## 10118   1   967
## 10119   1   967
## 10120   1   967
## 10121   1   967
## 10122   1   967
## 10123   1   967
## 10124   1   967
## 10125   1   967
## 10126   1   967
## 10127   1   967
## 10128   1   967
## 10129   1   967
## 10130   1   967
## 10131   1   967
## 10132   1   967
## 10133   1   967
## 10134   1   967
## 10135   1   967
## 10136   1   967
## 10137   1   967
## 10138   1   967
## 10139   1   967
## 10140   1   967
## 10141   1   967
## 10142   1   967
## 10143   1   967
## 10144   1   967
## 10145   1   967
## 10146   1   967
## 10147   1   967
## 10148   1   967
## 10149   1   967
## 10150   1   967
## 10151   1   967
## 10152   1   967
## 10153   1   967
## 10154   1   967
## 10155   1   967
## 10156   1   967
## 10157   1   967
## 10158   1   967
## 10159   1   967
## 10160   1   967
## 10161   1   967
## 10162   1   967
## 10163   1   967
## 10164   1   967
## 10165   1   967
## 10166   1   967
## 10167   1   967
## 10168   1   967
## 10169   1   967
## 10170   1   967
## 10171   1   967
## 10172   1   967
## 10173   1   967
## 10174   1   967
## 10175   1   967
## 10176   1   967
## 10177   1   967
## 10178   1   967
## 10179   1   967
## 10180   1   967
## 10181   1   967
## 10182   1   967
## 10183   1   967
## 10184   1   967
## 10185   1   967
## 10186   1   967
## 10187   1   967
## 10188   1   967
## 10189   1   967
## 10190   1   967
## 10191   1   967
## 10192   1   967
## 10193   1   967
## 10194   1   967
## 10195   1   967
## 10196   1   967
## 10197   1   967
## 10198   1   967
## 10199   1   967
## 10200   1   967
## 10201   1   967
## 10202   1   967
## 10203   1   967
## 10204   1   967
## 10205   1   967
## 10206   1   967
## 10207   1   967
## 10208   1   967
## 10209   1   967
## 10210   1   967
## 10211   1   967
## 10212   1   967
## 10213   1   967
## 10214   1   967
## 10215   1   967
## 10216   1   967
## 10217   1   967
## 10218   1   967
## 10219   1   967
## 10220   1   967
## 10221   1   967
## 10222   1   967
## 10223   1   967
## 10224   1   967
## 10225   1   967
## 10226   1   967
## 10227   1   967
## 10228   1   967
## 10229   1   967
## 10230   1   967
## 10231   1   967
## 10232   1   967
## 10233   1   967
## 10234   1   967
## 10235   1   967
## 10236   1   967
## 10237   1   967
## 10238   1   967
## 10239   1   967
## 10240   1   967
## 10241   1   967
## 10242   1   967
## 10243   1   967
## 10244   1   967
## 10245   1   967
## 10246   1   967
## 10247   1   967
## 10248   1   967
## 10249   1   967
## 10250   1   967
## 10251   1   967
## 10252   1   967
## 10253   1   967
## 10254   1   967
## 10255   1   967
## 10256   1   967
## 10257   1   967
## 10258   1   967
## 10259   1   967
## 10260   1   967
## 10261   1   967
## 10262   1   967
## 10263   1   967
## 10264   1   967
## 10265   1   967
## 10266   1   967
## 10267   1   967
## 10268   1   967
## 10269   1   967
## 10270   1   967
## 10271   1   967
## 10272   1   967
## 10273   1   967
## 10274   1   967
## 10275   1   967
## 10276   1   967
## 10277   1   967
## 10278   1   967
## 10279   1   967
## 10280   1   967
## 10281   1   967
## 10282   1   967
## 10283   1   967
## 10284   1   967
## 10285   1   967
## 10286   1   967
## 10287   1   967
## 10288   1   967
## 10289   1   967
## 10290   1   967
## 10291   1   967
## 10292   1   967
## 10293   1   967
## 10294   1   967
## 10295   1   967
## 10296   1   967
## 10297   1   967
## 10298   1   967
## 10299   1   967
## 10300   1   967
## 10301   1   967
## 10302   1   967
## 10303   1   967
## 10304   1   967
## 10305   1   967
## 10306   1  1416
## 10307   1  1416
## 10308   1  1416
## 10309   1  1416
## 10310   1  1416
## 10311   1  1416
## 10312   1  1416
## 10313   1  1416
## 10314   1  1416
## 10315   1  1416
## 10316   1  1416
## 10317   1  1416
## 10318   1  1416
## 10319   1  1416
## 10320   1  1416
## 10321   1  1416
## 10322   1  1416
## 10323   1  1416
## 10324   1  1416
## 10325   1  1416
## 10326   1  1416
## 10327   1  1416
## 10328   1  1416
## 10329   1  1416
## 10330   1  1416
## 10331   1  1416
## 10332   1  1416
## 10333   1  1416
## 10334   1  1416
## 10335   1  1416
## 10336   1  1416
## 10337   1  1416
## 10338   1  1416
## 10339   1  1416
## 10340   1  1416
## 10341   1  1416
## 10342   1  1416
## 10343   1  1416
## 10344   1  1416
## 10345   1  1416
## 10346   1  1416
## 10347   1  1416
## 10348   1  1416
## 10349   1  1416
## 10350   1  1416
## 10351   1  1416
## 10352   1  1416
## 10353   1  1416
## 10354   1  1416
## 10355   1  1416
## 10356   1  1416
## 10357   1  1416
## 10358   1  1416
## 10359   1  1416
## 10360   1  1416
## 10361   1  1416
## 10362   1  1416
## 10363   1  1416
## 10364   1  1416
## 10365   1  1416
## 10366   1  1416
## 10367   1  1416
## 10368   1  1416
## 10369   1  1416
## 10370   1  1416
## 10371   1  1416
## 10372   1  1416
## 10373   1  1416
## 10374   1  1416
## 10375   1  1416
## 10376   1  1416
## 10377   1  1416
## 10378   1  1416
## 10379   1  1416
## 10380   1  1416
## 10381   1  1416
## 10382   1  1416
## 10383   1  1416
## 10384   1  1416
## 10385   1  1416
## 10386   1  1416
## 10387   1  1416
## 10388   1  1416
## 10389   1  1416
## 10390   1  1416
## 10391   1  1416
## 10392   1  1416
## 10393   1  1416
## 10394   1  1416
## 10395   1  1416
## 10396   1  1416
## 10397   1  1416
## 10398   1  1416
## 10399   1  1416
## 10400   1  1416
## 10401   1  1416
## 10402   1  1416
## 10403   1  1416
## 10404   1  1416
## 10405   1  1416
## 10406   1  1416
## 10407   1  1416
## 10408   1  1416
## 10409   1  1416
## 10410   1  1416
## 10411   1  1416
## 10412   1  1416
## 10413   1  1416
## 10414   1  1416
## 10415   1  1416
## 10416   1  1416
## 10417   1  1416
## 10418   1  1416
## 10419   1  1416
## 10420   1  1416
## 10421   1  1416
## 10422   1  1416
## 10423   1  1416
## 10424   1  1416
## 10425   1  1416
## 10426   1  1416
## 10427   1  1416
## 10428   1  1416
## 10429   1  1416
## 10430   1  1416
## 10431   1  1416
## 10432   1  1416
## 10433   1  1416
## 10434   1  1416
## 10435   1  1416
## 10436   1  1416
## 10437   1  1416
## 10438   1  1416
## 10439   1  1416
## 10440   1  1416
## 10441   1  1416
## 10442   1  1416
## 10443   1  1416
## 10444   1  1416
## 10445   1  1416
## 10446   1  1416
## 10447   1  1416
## 10448   1  1416
## 10449   1  1416
## 10450   1  1416
## 10451   1  1416
## 10452   1  1416
## 10453   1  1416
## 10454   1  1416
## 10455   1  1416
## 10456   1  1416
## 10457   1  1416
## 10458   1  1416
## 10459   1  1416
## 10460   1  1416
## 10461   1  1416
## 10462   1  1416
## 10463   1  1416
## 10464   1  1416
## 10465   1  1416
## 10466   1  1416
## 10467   1  1416
## 10468   1  1416
## 10469   1  1416
## 10470   1  1416
## 10471   1  1416
## 10472   1  1416
## 10473   1  1416
## 10474   1  1416
## 10475   1  1416
## 10476   1  1416
## 10477   1  1416
## 10478   1  1416
## 10479   1  1416
## 10480   1  1416
## 10481   1  1416
## 10482   1  1416
## 10483   1  1416
## 10484   1  1416
## 10485   1  1416
## 10486   1  1416
## 10487   1  1416
## 10488   1  1416
## 10489   1  1416
## 10490   1  1416
## 10491   1  1416
## 10492   1  1416
## 10493   1  1416
## 10494   1  1416
## 10495   1  1416
## 10496   1  1416
## 10497   1  1416
## 10498   1  1416
## 10499   1  1416
## 10500   1  1416
## 10501   1  1416
## 10502   1  1416
## 10503   1  1416
## 10504   1  1416
## 10505   1  1416
## 10506   1  1416
## 10507   1  1416
## 10508   1  1416
## 10509   1  1416
## 10510   1  1416
## 10511   1  1416
## 10512   1  1416
## 10513   1  1416
## 10514   1  1416
## 10515   1  1416
## 10516   1  1416
## 10517   1  1416
## 10518   1  1416
## 10519   1  1416
## 10520   1  1416
## 10521   1  1416
## 10522   1  1416
## 10523   1  1416
## 10524   1  1416
## 10525   1  1416
## 10526   1  1416
## 10527   1  1416
## 10528   1  1416
## 10529   1  1416
## 10530   1  1416
## 10531   1  1416
## 10532   1  1416
## 10533   1  1416
## 10534   1  1416
## 10535   1  1416
## 10536   1  1416
## 10537   1  1416
## 10538   1  1416
## 10539   1  1416
## 10540   1  1416
## 10541   1  1416
## 10542   1  1416
## 10543   1  1416
## 10544   1  1416
## 10545   1  1416
## 10546   1  1416
## 10547   1  1416
## 10548   1  1416
## 10549   1  1416
## 10550   1  1416
## 10551   1  1416
## 10552   1  1416
## 10553   1  1416
## 10554   1  1416
## 10555   1  1416
## 10556   1  1416
## 10557   1  1416
## 10558   1  1416
## 10559   1  1416
## 10560   1  1416
## 10561   1  1416
## 10562   1  1416
## 10563   1  1416
## 10564   1  1416
## 10565   1  1416
## 10566   1  1416
## 10567   1  1416
## 10568   1  1416
## 10569   1  1416
## 10570   1  1416
## 10571   1  1416
## 10572   1  1416
## 10573   1  1416
## 10574   1  1416
## 10575   1  1416
## 10576   1  1416
## 10577   1  1416
## 10578   1  1416
## 10579   1  1416
## 10580   1  1416
## 10581   1  1416
## 10582   1  1416
## 10583   1  1416
## 10584   1  1416
## 10585   1  1416
## 10586   1  1416
## 10587   1  1416
## 10588   1  1416
## 10589   1  1416
## 10590   1  1416
## 10591   1  1416
## 10592   1  1416
## 10593   1  1416
## 10594   1  1416
## 10595   1  1416
## 10596   1  1416
## 10597   1  1416
## 10598   1  1416
## 10599   1  1416
## 10600   1  1416
## 10601   1  1416
## 10602   1  1416
## 10603   1  1416
## 10604   1  1416
## 10605   1  1416
## 10606   1  1416
## 10607   1  1416
## 10608   1  1416
## 10609   1  1416
## 10610   1  1416
## 10611   1  1416
## 10612   1  1416
## 10613   1  1416
## 10614   1  1416
## 10615   1  1416
## 10616   1  1416
## 10617   1  1416
## 10618   1  1416
## 10619   1  1416
## 10620   1  1416
## 10621   1  1416
## 10622   1  1416
## 10623   1  1416
## 10624   1  1416
## 10625   1  1416
## 10626   1  1416
## 10627   1  1416
## 10628   1  1416
## 10629   1  1416
## 10630   1  1416
## 10631   1  1416
## 10632   1  1416
## 10633   1  1416
## 10634   1  1416
## 10635   1  1416
## 10636   1  1416
## 10637   1  1416
## 10638   1  1416
## 10639   1  1416
## 10640   1  1416
## 10641   1  1416
## 10642   1  1416
## 10643   1  1416
## 10644   1  1416
## 10645   1  1416
## 10646   1  1416
## 10647   1  1416
## 10648   1  1416
## 10649   1  1416
## 10650   1  1416
## 10651   1  1416
## 10652   1  1416
## 10653   1  1416
## 10654   1  1416
## 10655   1  1416
## 10656   1  1416
## 10657   1  1416
## 10658   1  1416
## 10659   1  1416
## 10660   1  1416
## 10661   1  1416
## 10662   1  1416
## 10663   1  1416
## 10664   1  1416
## 10665   1  1416
## 10666   1  1416
## 10667   1  1416
## 10668   1  1416
## 10669   1   825
## 10670   1   825
## 10671   1   825
## 10672   1   825
## 10673   1   825
## 10674   1   825
## 10675   1   825
## 10676   1   825
## 10677   1   825
## 10678   1   825
## 10679   1   825
## 10680   1   825
## 10681   1   825
## 10682   1   825
## 10683   1   825
## 10684   1   825
## 10685   1   825
## 10686   1   825
## 10687   1   825
## 10688   1   825
## 10689   1   825
## 10690   1   825
## 10691   1   825
## 10692   1   825
## 10693   1   825
## 10694   1   825
## 10695   1   825
## 10696   1   825
## 10697   1   825
## 10698   1   825
## 10699   1   825
## 10700   1   825
## 10701   1   825
## 10702   1   825
## 10703   1   825
## 10704   1   825
## 10705   1   825
## 10706   1   825
## 10707   1   825
## 10708   1   825
## 10709   1   825
## 10710   1   825
## 10711   1   825
## 10712   1   825
## 10713   1   825
## 10714   1   825
## 10715   1   825
## 10716   1   825
## 10717   1   825
## 10718   1   825
## 10719   1   825
## 10720   1   825
## 10721   1   825
## 10722   1   825
## 10723   1   825
## 10724   1   825
## 10725   1   825
## 10726   1   825
## 10727   1   825
## 10728   1   825
## 10729   1   825
## 10730   1   825
## 10731   1   825
## 10732   1   825
## 10733   1   825
## 10734   1   825
## 10735   1   825
## 10736   1   825
## 10737   1   825
## 10738   1   825
## 10739   1   825
## 10740   1   825
## 10741   1   825
## 10742   1   825
## 10743   1   825
## 10744   1   825
## 10745   1   825
## 10746   1   825
## 10747   1   825
## 10748   1   825
## 10749   1   825
## 10750   1   825
## 10751   1   825
## 10752   1   825
## 10753   1   825
## 10754   1   825
## 10755   1   825
## 10756   1   825
## 10757   1   825
## 10758   1   825
## 10759   1   825
## 10760   1   825
## 10761   1   825
## 10762   1   825
## 10763   1   825
## 10764   1   825
## 10765   1   825
## 10766   1   825
## 10767   1   825
## 10768   1   825
## 10769   1   825
## 10770   1   825
## 10771   1   825
## 10772   1   825
## 10773   1   825
## 10774   1   825
## 10775   1   825
## 10776   1   825
## 10777   1   825
## 10778   1   825
## 10779   1   825
## 10780   1   825
## 10781   1   825
## 10782   1   825
## 10783   1   825
## 10784   1   825
## 10785   1   825
## 10786   1   825
## 10787   1   825
## 10788   1   825
## 10789   1   825
## 10790   1   825
## 10791   1   825
## 10792   1   825
## 10793   1   825
## 10794   1   825
## 10795   1   825
## 10796   1   825
## 10797   1   825
## 10798   1   825
## 10799   1   825
## 10800   1   825
## 10801   1   825
## 10802   1   825
## 10803   1   825
## 10804   1   825
## 10805   1   825
## 10806   1   825
## 10807   1   825
## 10808   1   825
## 10809   1   825
## 10810   1   825
## 10811   1   825
## 10812   1   825
## 10813   1   825
## 10814   1   825
## 10815   1   825
## 10816   1   825
## 10817   1   825
## 10818   1   825
## 10819   1   825
## 10820   1   825
## 10821   1   825
## 10822   1   825
## 10823   1   825
## 10824   1   825
## 10825   1   825
## 10826   1   825
## 10827   1   825
## 10828   1   825
## 10829   1   825
## 10830   1   825
## 10831   1   825
## 10832   1   825
## 10833   1   825
## 10834   1   825
## 10835   1   825
## 10836   1   825
## 10837   1   825
## 10838   1   825
## 10839   1   825
## 10840   1   825
## 10841   1   825
## 10842   1   825
## 10843   1   825
## 10844   1   825
## 10845   1   825
## 10846   1   825
## 10847   1   825
## 10848   1   825
## 10849   1   825
## 10850   1   825
## 10851   1   825
## 10852   1   825
## 10853   1   825
## 10854   1   825
## 10855   1   825
## 10856   1   825
## 10857   1   825
## 10858   1   825
## 10859   1   825
## 10860   1   825
## 10861   1   825
## 10862   1   825
## 10863   1   825
## 10864   1   825
## 10865   1   825
## 10866   1   825
## 10867   1   825
## 10868   1   825
## 10869   1   825
## 10870   1   825
## 10871   1   825
## 10872   1   825
## 10873   1   825
## 10874   1   825
## 10875   1   825
## 10876   1   825
## 10877   1   825
## 10878   1   825
## 10879   1   825
## 10880   1   825
## 10881   1   825
## 10882   1   825
## 10883   1   825
## 10884   1   825
## 10885   1   825
## 10886   1   825
## 10887   1   825
## 10888   1   825
## 10889   1   825
## 10890   1   825
## 10891   1   825
## 10892   1   825
## 10893   1   825
## 10894   1   825
## 10895   1   825
## 10896   1   825
## 10897   1   825
## 10898   1   825
## 10899   1   825
## 10900   1   825
## 10901   1   825
## 10902   1   825
## 10903   1   825
## 10904   1   825
## 10905   1   825
## 10906   1   825
## 10907   1   825
## 10908   1   825
## 10909   1   825
## 10910   1   825
## 10911   1   825
## 10912   1   825
## 10913   1   825
## 10914   1   825
## 10915   1   825
## 10916   1   825
## 10917   1   825
## 10918   1   825
## 10919   1   825
## 10920   1   825
## 10921   1   825
## 10922   1   825
## 10923   1   825
## 10924   1   825
## 10925   1   825
## 10926   1   825
## 10927   1   825
## 10928   1   825
## 10929   1   825
## 10930   1   825
## 10931   1   825
## 10932   1   825
## 10933   1   825
## 10934   1   825
## 10935   1   825
## 10936   1   825
## 10937   1   825
## 10938   1   825
## 10939   1   825
## 10940   1   825
## 10941   1   825
## 10942   1   825
## 10943   1   825
## 10944   1   825
## 10945   1   825
## 10946   1   825
## 10947   1   825
## 10948   1   825
## 10949   1   825
## 10950   1   825
## 10951   1   825
## 10952   1   825
## 10953   1   825
## 10954   1   825
## 10955   1   825
## 10956   1   825
## 10957   1   825
## 10958   1   825
## 10959   1   825
## 10960   1   825
## 10961   1   825
## 10962   1   825
## 10963   1   825
## 10964   1   825
## 10965   1   825
## 10966   1   825
## 10967   1   825
## 10968   1   825
## 10969   1   825
## 10970   1   825
## 10971   1   825
## 10972   1   825
## 10973   1   825
## 10974   1   825
## 10975   1   825
## 10976   1   825
## 10977   1   825
## 10978   1   825
## 10979   1   825
## 10980   1   825
## 10981   1   825
## 10982   1   825
## 10983   1   825
## 10984   1   825
## 10985   1   825
## 10986   1   825
## 10987   1   825
## 10988   1   825
## 10989   1   825
## 10990   1   825
## 10991   1   825
## 10992   1   825
## 10993   1   825
## 10994   1   220
## 10995   1   220
## 10996   1   220
## 10997   1   220
## 10998   1   220
## 10999   1   220
## 11000   1   220
## 11001   1   220
## 11002   1   220
## 11003   1   220
## 11004   1   220
## 11005   1   220
## 11006   1   220
## 11007   1   220
## 11008   1   220
## 11009   1   220
## 11010   1   220
## 11011   1   220
## 11012   1   220
## 11013   1   220
## 11014   1   220
## 11015   1   220
## 11016   1   220
## 11017   1   220
## 11018   1   220
## 11019   1   220
## 11020   1   220
## 11021   1   220
## 11022   1   220
## 11023   1   220
## 11024   1   220
## 11025   1   220
## 11026   1   220
## 11027   1   220
## 11028   1   220
## 11029   1   220
## 11030   1   220
## 11031   1   220
## 11032   1   220
## 11033   1   220
## 11034   1   220
## 11035   1   220
## 11036   1   220
## 11037   1   220
## 11038   1   220
## 11039   1   220
## 11040   1   220
## 11041   1   220
## 11042   1   220
## 11043   1   220
## 11044   1   220
## 11045   1   220
## 11046   1   220
## 11047   1   220
## 11048   1   220
## 11049   1   220
## 11050   1   220
## 11051   1   220
## 11052   1   220
## 11053   1   220
## 11054   1   220
## 11055   1   220
## 11056   1   220
## 11057   1   220
## 11058   1   220
## 11059   1   220
## 11060   1   220
## 11061   1   220
## 11062   1   220
## 11063   1   220
## 11064   1   220
## 11065   1   220
## 11066   1   220
## 11067   1   220
## 11068   1   220
## 11069   1   220
## 11070   1   220
## 11071   1   220
## 11072   1   220
## 11073   1   220
## 11074   1   220
## 11075   1   220
## 11076   1   539
## 11077   1   539
## 11078   1   539
## 11079   1   539
## 11080   1   539
## 11081   1   539
## 11082   1   539
## 11083   1   539
## 11084   1   539
## 11085   1   539
## 11086   1   539
## 11087   1   539
## 11088   1   539
## 11089   1   539
## 11090   1   539
## 11091   1   539
## 11092   1   539
## 11093   1   539
## 11094   1   539
## 11095   1   539
## 11096   1   539
## 11097   1   539
## 11098   1   539
## 11099   1   539
## 11100   1   539
## 11101   1   539
## 11102   1   539
## 11103   1   539
## 11104   1   539
## 11105   1   539
## 11106   1   539
## 11107   1   539
## 11108   1   539
## 11109   1   539
## 11110   1   539
## 11111   1   539
## 11112   1   539
## 11113   1   539
## 11114   1   539
## 11115   1   539
## 11116   1   539
## 11117   1   539
## 11118   1   539
## 11119   1   539
## 11120   1   539
## 11121   1   539
## 11122   1   539
## 11123   1   539
## 11124   1   539
## 11125   1   539
## 11126   1   539
## 11127   1   539
## 11128   1   539
## 11129   1   539
## 11130   1   539
## 11131   1   539
## 11132   1   539
## 11133   1   539
## 11134   1   539
## 11135   1   539
## 11136   1   539
## 11137   1   539
## 11138   1   539
## 11139   1   539
## 11140   1   539
## 11141   1   539
## 11142   1   539
## 11143   1   539
## 11144   1   539
## 11145   1   539
## 11146   1   539
## 11147   1   539
## 11148   1   539
## 11149   1   539
## 11150   1   539
## 11151   1   539
## 11152   1   539
## 11153   1   539
## 11154   1   539
## 11155   1   539
## 11156   1   539
## 11157   1   539
## 11158   1   539
## 11159   1   539
## 11160   1   539
## 11161   1   539
## 11162   1   539
## 11163   1   539
## 11164   1   539
## 11165   1   539
## 11166   1   539
## 11167   1   539
## 11168   1   539
## 11169   1   539
## 11170   1   539
## 11171   1   539
## 11172   1   539
## 11173   1   539
## 11174   1   539
## 11175   1   539
## 11176   1   539
## 11177   1   539
## 11178   1   539
## 11179   1   539
## 11180   1   539
## 11181   1   539
## 11182   1   539
## 11183   1   539
## 11184   1   539
## 11185   1   539
## 11186   1   539
## 11187   1   539
## 11188   1   539
## 11189   1   539
## 11190   1   539
## 11191   1   539
## 11192   1   539
## 11193   1   539
## 11194   1   539
## 11195   1   539
## 11196   1   539
## 11197   1   539
## 11198   1   539
## 11199   1   539
## 11200   1   539
## 11201   1   539
## 11202   1   539
## 11203   1   539
## 11204   1   539
## 11205   1   539
## 11206   1   539
## 11207   1   539
## 11208   1   539
## 11209   1   539
## 11210   1   539
## 11211   1   539
## 11212   1   539
## 11213   1   539
## 11214   1   539
## 11215   1   539
## 11216   1   539
## 11217   1   539
## 11218   1   539
## 11219   1   539
## 11220   1   539
## 11221   1   539
## 11222   1   539
## 11223   1   539
## 11224   1   539
## 11225   1   539
## 11226   1   539
## 11227   1   539
## 11228   1   539
## 11229   1   539
## 11230   1   539
## 11231   1   539
## 11232   1   539
## 11233   1   539
## 11234   1   539
## 11235   1   539
## 11236   1   539
## 11237   1   539
## 11238   1   539
## 11239   1   539
## 11240   1   539
## 11241   1   539
## 11242   1   539
## 11243   1   539
## 11244   1   539
## 11245   1   539
## 11246   1   539
## 11247   1   539
## 11248   1   539
## 11249   1   539
## 11250   1   539
## 11251   1   539
## 11252   1   539
## 11253   1   539
## 11254   1   539
## 11255   1   539
## 11256   1   539
## 11257   1   539
## 11258   1   539
## 11259   1   539
## 11260   1   539
## 11261   1   539
## 11262   1   539
## 11263   1   539
## 11264   1   539
## 11265   1   539
## 11266   1   539
## 11267   1   539
## 11268   1   539
## 11269   1   539
## 11270   1   539
## 11271   1   539
## 11272   1   539
## 11273   1   539
## 11274   1   539
## 11275   1   539
## 11276   1   539
## 11277   1   539
## 11278   1   539
## 11279   1   539
## 11280   1   539
## 11281   1   539
## 11282   1  1817
## 11283   1  1817
## 11284   1  1817
## 11285   1  1817
## 11286   1  1817
## 11287   1  1817
## 11288   1  1817
## 11289   1  1817
## 11290   1  1817
## 11291   1  1817
## 11292   1  1817
## 11293   1  1817
## 11294   1  1817
## 11295   1  1817
## 11296   1  1817
## 11297   1  1817
## 11298   1  1817
## 11299   1  1817
## 11300   1  1817
## 11301   1  1817
## 11302   1  1817
## 11303   1  1817
## 11304   1  1817
## 11305   1  1817
## 11306   1  1817
## 11307   1  1817
## 11308   1  1817
## 11309   1  1817
## 11310   1  1817
## 11311   1  1817
## 11312   1  1817
## 11313   1  1817
## 11314   1  1817
## 11315   1  1817
## 11316   1  1817
## 11317   1  1817
## 11318   1  1817
## 11319   1  1817
## 11320   1  1817
## 11321   1  1817
## 11322   1  1817
## 11323   1  1817
## 11324   1  1817
## 11325   1  1817
## 11326   1  1817
## 11327   1  1817
## 11328   1  1817
## 11329   1  1817
## 11330   1  1817
## 11331   1  1817
## 11332   1  1817
## 11333   1  1817
## 11334   1  1817
## 11335   1  1817
## 11336   1  1817
## 11337   1  1817
## 11338   1  1817
## 11339   1  1817
## 11340   1  1817
## 11341   1  1817
## 11342   1  1817
## 11343   1  1817
## 11344   1  1817
## 11345   1  1817
## 11346   1  1817
## 11347   1  1817
## 11348   1  1817
## 11349   1  1817
## 11350   1  1817
## 11351   1  1817
## 11352   1  1817
## 11353   1  1817
## 11354   1  1817
## 11355   1  1817
## 11356   1  1817
## 11357   1  1817
## 11358   1  1817
## 11359   1  1817
## 11360   1  1817
## 11361   1  1817
## 11362   1  1817
## 11363   1  1817
## 11364   1  1817
## 11365   1  1817
## 11366   1  1817
## 11367   1  1817
## 11368   1  1817
## 11369   1  1817
## 11370   1  1817
## 11371   1  1817
## 11372   1  1817
## 11373   1  1817
## 11374   1  1817
## 11375   1  1817
## 11376   1  1817
## 11377   1  1817
## 11378   1  1817
## 11379   1  1817
## 11380   1  1817
## 11381   1  1817
## 11382   1  1817
## 11383   1  1817
## 11384   1  1817
## 11385   1  1817
## 11386   1  1817
## 11387   1  1817
## 11388   1  1817
## 11389   1  1817
## 11390   1  1817
## 11391   1  1817
## 11392   1  1817
## 11393   1  1817
## 11394   1  1817
## 11395   1  1817
## 11396   1  1817
## 11397   1  1817
## 11398   1  1817
## 11399   1  1817
## 11400   1  1817
## 11401   1  1817
## 11402   1  1817
## 11403   1  1817
## 11404   1  1817
## 11405   1  1817
## 11406   1  1817
## 11407   1  1817
## 11408   1  1817
## 11409   1  1817
## 11410   1  1817
## 11411   1  1817
## 11412   1  1817
## 11413   1  1817
## 11414   1  1817
## 11415   1  1817
## 11416   1  1817
## 11417   1  1817
## 11418   1  1817
## 11419   1  1817
## 11420   1  1817
## 11421   1  1817
## 11422   1  1817
## 11423   1  1817
## 11424   1  1817
## 11425   1  1817
## 11426   1  1817
## 11427   1  1817
## 11428   1  1817
## 11429   1  1817
## 11430   1  1817
## 11431   1  1817
## 11432   1  1817
## 11433   1  1817
## 11434   1  1817
## 11435   1  1817
## 11436   1  1817
## 11437   1  1817
## 11438   1  1817
## 11439   1  1817
## 11440   1  1817
## 11441   1  1817
## 11442   1  1817
## 11443   1  1817
## 11444   1  1817
## 11445   1  1817
## 11446   1  1817
## 11447   1  1817
## 11448   1  1817
## 11449   1  1817
## 11450   1  1817
## 11451   1  1817
## 11452   1  1817
## 11453   1  1817
## 11454   1  1817
## 11455   1  1817
## 11456   1  1817
## 11457   1  1817
## 11458   1  1817
## 11459   1  1817
## 11460   1  1817
## 11461   1  1817
## 11462   1  1817
## 11463   1  1817
## 11464   1  1817
## 11465   1  1817
## 11466   1  1817
## 11467   1  1817
## 11468   1  1817
## 11469   1  1817
## 11470   1  1817
## 11471   1  1817
## 11472   1  1817
## 11473   1  1817
## 11474   1  1817
## 11475   1  1817
## 11476   1  1817
## 11477   1  1817
## 11478   1  1817
## 11479   1  1817
## 11480   1  1817
## 11481   1  1817
## 11482   1  1817
## 11483   1  1817
## 11484   1  1817
## 11485   1  1817
## 11486   1  1817
## 11487   1  1817
## 11488   1  1817
## 11489   1  1817
## 11490   1  1817
## 11491   1  1817
## 11492   1  1817
## 11493   1  1817
## 11494   1  1817
## 11495   1  1817
## 11496   1  1817
## 11497   1  1817
## 11498   1  1817
## 11499   1  1817
## 11500   1  1817
## 11501   1  1817
## 11502   1  1817
## 11503   1  1817
## 11504   1  1817
## 11505   1  1817
## 11506   1  1817
## 11507   1  1817
## 11508   1  1817
## 11509   1  1817
## 11510   1  1817
## 11511   1  1817
## 11512   1  1817
## 11513   1  1817
## 11514   1  1817
## 11515   1  1817
## 11516   1  1817
## 11517   1  1817
## 11518   1  1817
## 11519   1  1817
## 11520   1  1817
## 11521   1  1817
## 11522   1  1817
## 11523   1  1817
## 11524   1  1817
## 11525   1  1817
## 11526   1  1817
## 11527   1  1817
## 11528   1  1817
## 11529   1  1817
## 11530   1  1817
## 11531   1  1817
## 11532   1  1817
## 11533   1  1817
## 11534   1  1817
## 11535   1  1817
## 11536   1  1817
## 11537   1  1817
## 11538   1  1817
## 11539   1  1817
## 11540   1  1817
## 11541   1  1817
## 11542   1  1817
## 11543   1  1817
## 11544   1  1817
## 11545   1  1817
## 11546   1  1817
## 11547   1  1817
## 11548   1  1817
## 11549   1  1817
## 11550   1  1817
## 11551   1  1817
## 11552   1  1817
## 11553   1  1817
## 11554   1  1817
## 11555   1  1817
## 11556   1  1817
## 11557   1  1817
## 11558   1  1817
## 11559   1  1817
## 11560   1  1817
## 11561   1  1817
## 11562   1  1817
## 11563   1  1817
## 11564   1  1817
## 11565   1  1817
## 11566   1  1817
## 11567   1  1817
## 11568   1  1817
## 11569   1  1817
## 11570   1  1817
## 11571   1  1817
## 11572   1  1817
## 11573   1  1817
## 11574   1  1817
## 11575   1  1817
## 11576   1  1817
## 11577   1  1817
## 11578   1  1817
## 11579   1  1817
## 11580   1  1817
## 11581   1  1817
## 11582   1  1817
## 11583   1  1817
## 11584   1  1817
## 11585   1  1817
## 11586   1  1817
## 11587   1  1817
## 11588   1  1817
## 11589   1  1817
## 11590   1  1817
## 11591   1  1817
## 11592   1  1817
## 11593   1  1817
## 11594   1  1817
## 11595   1  1817
## 11596   1  1817
## 11597   1  1817
## 11598   1  1817
## 11599   1  1817
## 11600   1  1817
## 11601   1  1817
## 11602   1  1817
## 11603   1  1817
## 11604   1  1817
## 11605   1  1817
## 11606   1  1817
## 11607   1  1817
## 11608   1  1817
## 11609   1  1817
## 11610   1  1817
## 11611   1  1817
## 11612   1  1817
## 11613   1  1817
## 11614   1  1817
## 11615   1  1817
## 11616   1  1817
## 11617   1  1817
## 11618   1  1817
## 11619   1  1817
## 11620   1  1817
## 11621   1  1817
## 11622   1  1817
## 11623   1  1817
## 11624   1  1817
## 11625   1  1817
## 11626   1  1817
## 11627   1  1817
## 11628   1  1817
## 11629   1  1817
## 11630   1  1817
## 11631   1  1817
## 11632   1  1817
## 11633   1  1817
## 11634   1  1817
## 11635   1  1817
## 11636   1  1817
## 11637   1  1817
## 11638   1  1817
## 11639   1  1817
## 11640   1  1817
## 11641   1  1817
## 11642   1  1817
## 11643   1  1817
## 11644   1  1817
## 11645   1  1817
## 11646   1  1817
## 11647   1  1817
## 11648   1  1817
## 11649   1  1817
## 11650   1  1817
## 11651   1  1817
## 11652   1  1817
## 11653   1  1817
## 11654   1  1817
## 11655   1  1817
## 11656   1  1817
## 11657   1  1817
## 11658   1  1817
## 11659   1  1817
## 11660   1  1817
## 11661   1  1817
## 11662   1  1817
## 11663   1  1817
## 11664   1  1817
## 11665   1  1817
## 11666   1  1817
## 11667   1  1817
## 11668   1  1817
## 11669   1  1817
## 11670   1  1817
## 11671   1  1817
## 11672   1  1817
## 11673   1  1817
## 11674   1  1817
## 11675   1  1817
## 11676   1  1817
## 11677   1  1817
## 11678   1  1817
## 11679   1  1817
## 11680   1  1817
## 11681   1  1817
## 11682   1  1817
## 11683   1  1817
## 11684   1  1817
## 11685   1  1817
## 11686   1  1817
## 11687   1  1817
## 11688   1  1817
## 11689   1  1817
## 11690   1  1817
## 11691   1  1817
## 11692   1  1817
## 11693   1  1817
## 11694   1  1817
## 11695   1  1817
## 11696   1  1817
## 11697   1  1817
## 11698   1  1817
## 11699   1  1817
## 11700   1  1817
## 11701   1  1817
## 11702   1  1817
## 11703   1  1817
## 11704   1  1817
## 11705   1  1817
## 11706   1  1817
## 11707   1  1817
## 11708   1  1817
## 11709   1  1817
## 11710   1  1817
## 11711   1  1817
## 11712   1  1817
## 11713   1  1817
## 11714   1  1817
## 11715   1  1817
## 11716   1  1817
## 11717   1  1817
## 11718   1  1817
## 11719   1  1817
## 11720   1  1817
## 11721   1  1817
## 11722   1  1817
## 11723   1  1817
## 11724   1  1817
## 11725   1  1817
## 11726   1  1817
## 11727   1  1817
## 11728   1  1817
## 11729   1  1817
## 11730   1  1817
## 11731   1  1817
## 11732   1  1817
## 11733   1  1817
## 11734   1  1817
## 11735   1  1817
## 11736   1  1817
## 11737   1  1817
## 11738   1  1817
## 11739   1  1817
## 11740   1  1817
## 11741   1  1817
## 11742   1  1817
## 11743   1  1817
## 11744   1  1817
## 11745   1  1817
## 11746   1  1817
## 11747   1  1817
## 11748   1  1817
## 11749   1  1817
## 11750   1  1817
## 11751   1  1817
## 11752   1  1817
## 11753   1  1817
## 11754   1  1817
## 11755   1  1817
## 11756   1  1817
## 11757   1  1817
## 11758   1  1817
## 11759   1  1817
## 11760   1  1817
## 11761   1  1817
## 11762   1  1817
## 11763   1  1817
## 11764   1  1817
## 11765   1  1817
## 11766   1  1817
## 11767   1  1817
## 11768   1  1817
## 11769   1  1817
## 11770   1  1817
## 11771   1  1817
## 11772   1  1817
## 11773   1  1817
## 11774   1  1817
## 11775   1  1817
## 11776   1  1817
## 11777   1  1817
## 11778   1  1817
## 11779   1  1817
## 11780   1  1817
## 11781   1  1817
## 11782   1  1817
## 11783   1  1817
## 11784   1  1817
## 11785   1  1817
## 11786   1  1817
## 11787   1  1817
## 11788   1  1817
## 11789   1  1817
## 11790   1  1817
## 11791   1  1817
## 11792   1  1817
## 11793   1  1817
## 11794   1  1817
## 11795   1  1817
## 11796   1  1817
## 11797   1  1817
## 11798   1  1817
## 11799   1  1817
## 11800   1  1817
## 11801   1  1817
## 11802   1  1817
## 11803   1  1817
## 11804   1  1817
## 11805   1  1817
## 11806   1  1817
## 11807   1  1817
## 11808   1  1817
## 11809   1  1817
## 11810   1  1817
## 11811   1  1817
## 11812   1  1817
## 11813   1  1817
## 11814   1  1817
## 11815   1  1817
## 11816   1  1817
## 11817   1  1817
## 11818   1  1817
## 11819   1  1817
## 11820   1  1817
## 11821   1  1817
## 11822   1  1817
## 11823   1  1817
## 11824   1  1817
## 11825   1  1817
## 11826   1  1817
## 11827   1  1817
## 11828   1  1817
## 11829   1  1817
## 11830   1  1817
## 11831   1  1817
## 11832   1  1817
## 11833   1  1817
## 11834   1  1817
## 11835   1  1817
## 11836   1  1817
## 11837   1  1817
## 11838   1  1817
## 11839   1  1817
## 11840   1  1817
## 11841   1  1817
## 11842   1  1817
## 11843   1  1817
## 11844   1  1817
## 11845   1  1817
## 11846   1  1817
## 11847   1  1817
## 11848   1  1817
## 11849   1  1817
## 11850   1  1817
## 11851   1  1817
## 11852   1  1817
## 11853   1  1817
## 11854   1  1817
## 11855   1  1817
## 11856   1  1817
## 11857   1  1817
## 11858   1  1817
## 11859   1  1817
## 11860   1  1817
## 11861   1  1817
## 11862   1  1817
## 11863   1  1817
## 11864   1  1817
## 11865   1  1817
## 11866   1  1817
## 11867   1  1817
## 11868   1  1817
## 11869   1  1817
## 11870   1  1817
## 11871   1  1817
## 11872   1  1817
## 11873   1  1817
## 11874   1  1817
## 11875   1   890
## 11876   1   890
## 11877   1   890
## 11878   1   890
## 11879   1   890
## 11880   1   890
## 11881   1   890
## 11882   1   890
## 11883   1   890
## 11884   1   890
## 11885   1   890
## 11886   1   890
## 11887   1   890
## 11888   1   890
## 11889   1   890
## 11890   1   890
## 11891   1   890
## 11892   1   890
## 11893   1   890
## 11894   1   890
## 11895   1   890
## 11896   1   890
## 11897   1   890
## 11898   1   890
## 11899   1   890
## 11900   1   890
## 11901   1   890
## 11902   1   890
## 11903   1   890
## 11904   1   890
## 11905   1   890
## 11906   1   890
## 11907   1   890
## 11908   1   890
## 11909   1   890
## 11910   1   890
## 11911   1   890
## 11912   1   890
## 11913   1   890
## 11914   1   890
## 11915   1   890
## 11916   1   890
## 11917   1   890
## 11918   1   890
## 11919   1   890
## 11920   1   890
## 11921   1   890
## 11922   1   890
## 11923   1   890
## 11924   1   890
## 11925   1   890
## 11926   1   890
## 11927   1   890
## 11928   1   890
## 11929   1   890
## 11930   1   890
## 11931   1   890
## 11932   1   890
## 11933   1   890
## 11934   1   890
## 11935   1   890
## 11936   1   890
## 11937   1   890
## 11938   1   890
## 11939   1   890
## 11940   1   890
## 11941   1   890
## 11942   1   890
## 11943   1   890
## 11944   1   890
## 11945   1   890
## 11946   1   890
## 11947   1   890
## 11948   1   890
## 11949   1   890
## 11950   1   890
## 11951   1   890
## 11952   1   890
## 11953   1   890
## 11954   1   890
## 11955   1   890
## 11956   1   890
## 11957   1   890
## 11958   1   890
## 11959   1   890
## 11960   1   890
## 11961   1   890
## 11962   1   890
## 11963   1   890
## 11964   1   890
## 11965   1   890
## 11966   1   890
## 11967   1   890
## 11968   1   890
## 11969   1   890
## 11970   1   890
## 11971   1   890
## 11972   1   890
## 11973   1   890
## 11974   1   890
## 11975   1   890
## 11976   1   890
## 11977   1   890
## 11978   1   890
## 11979   1   890
## 11980   1   890
## 11981   1   890
## 11982   1   890
## 11983   1   890
## 11984   1   890
## 11985   1   890
## 11986   1   890
## 11987   1   890
## 11988   1   890
## 11989   1   890
## 11990   1   890
## 11991   1   890
## 11992   1   890
## 11993   1   890
## 11994   1   890
## 11995   1   890
## 11996   1   890
## 11997   1   890
## 11998   1   890
## 11999   1   890
## 12000   1   890
## 12001   1   890
## 12002   1   890
## 12003   1   890
## 12004   1   890
## 12005   1   890
## 12006   1   890
## 12007   1   890
## 12008   1   890
## 12009   1   890
## 12010   1   890
## 12011   1   890
## 12012   1   890
## 12013   1   890
## 12014   1   890
## 12015   1   890
## 12016   1   890
## 12017   1   890
## 12018   1   890
## 12019   1   890
## 12020   1   890
## 12021   1   890
## 12022   1   890
## 12023   1   890
## 12024   1   890
## 12025   1   890
## 12026   1   890
## 12027   1   890
## 12028   1   890
## 12029   1   890
## 12030   1   890
## 12031   1   890
## 12032   1   890
## 12033   1   890
## 12034   1   890
## 12035   1   890
## 12036   1   890
## 12037   1   890
## 12038   1   890
## 12039   1   890
## 12040   1   890
## 12041   1   890
## 12042   1   890
## 12043   1   890
## 12044   1   890
## 12045   1   890
## 12046   1   890
## 12047   1   890
## 12048   1   890
## 12049   1   890
## 12050   1   890
## 12051   1   890
## 12052   1   890
## 12053   1   890
## 12054   1   890
## 12055   1   890
## 12056   1   890
## 12057   1   890
## 12058   1   890
## 12059   1   890
## 12060   1   890
## 12061   1   890
## 12062   1   890
## 12063   1   890
## 12064   1   890
## 12065   1   890
## 12066   1   890
## 12067   1   890
## 12068   1   890
## 12069   1   890
## 12070   1   890
## 12071   1   890
## 12072   1   890
## 12073   1   890
## 12074   1   890
## 12075   1   890
## 12076   1   890
## 12077   1   890
## 12078   1   890
## 12079   1   890
## 12080   1   890
## 12081   1   890
## 12082   1   890
## 12083   1   890
## 12084   1   890
## 12085   1   890
## 12086   1   890
## 12087   1   890
## 12088   1   890
## 12089   1   890
## 12090   1   890
## 12091   1   890
## 12092   1   890
## 12093   1   890
## 12094   1   890
## 12095   1   890
## 12096   1   890
## 12097   1   890
## 12098   1   890
## 12099   1   890
## 12100   1   890
## 12101   1   890
## 12102   1   890
## 12103   1   890
## 12104   1   890
## 12105   1   890
## 12106   1   890
## 12107   1   890
## 12108   1   890
## 12109   1   890
## 12110   1   890
## 12111   1   890
## 12112   1   890
## 12113   1   890
## 12114   1   890
## 12115   1   890
## 12116   1   890
## 12117   1   890
## 12118   1   890
## 12119   1   890
## 12120   1   890
## 12121   1   890
## 12122   1   890
## 12123   1   890
## 12124   1   890
## 12125   1   890
## 12126   1   890
## 12127   1   890
## 12128   1   890
## 12129   1   890
## 12130   1   890
## 12131   1   890
## 12132   1   890
## 12133   1   890
## 12134   1   890
## 12135   1   890
## 12136   1   890
## 12137   1   890
## 12138   1   890
## 12139   1   890
## 12140   1   890
## 12141   1   890
## 12142   1   890
## 12143   1   890
## 12144   1   890
## 12145   1   890
## 12146   1   890
## 12147   1   890
## 12148   1   890
## 12149   1   890
## 12150   1   890
## 12151   1   890
## 12152   1   890
## 12153   1   890
## 12154   1   890
## 12155   1   890
## 12156   1   890
## 12157   1   890
## 12158   1   890
## 12159   1   890
## 12160   1   890
## 12161   1   890
## 12162   1   890
## 12163   1   890
## 12164   1   890
## 12165   1   890
## 12166   1   890
## 12167   1   890
## 12168   1   890
## 12169   1   890
## 12170   1   890
## 12171   1   890
## 12172   1   890
## 12173   1   890
## 12174   1   890
## 12175   1   890
## 12176   1   890
## 12177   1   890
## 12178   1   890
## 12179   1   890
## 12180   1   890
## 12181   1   890
## 12182   1   890
## 12183   1   890
## 12184   1   890
## 12185   1   890
## 12186   1   890
## 12187   1   890
## 12188   1   890
## 12189   1   890
## 12190   1   890
## 12191   1   890
## 12192   1   890
## 12193   1   890
## 12194   1   890
## 12195   1   890
## 12196   1   890
## 12197   1   890
## 12198   1   890
## 12199   1   890
## 12200   1   890
## 12201   1   890
## 12202   1   890
## 12203   1   890
## 12204   1   890
## 12205   1   890
## 12206   1   890
## 12207   1   890
## 12208   1   890
## 12209   1   890
## 12210   1   890
## 12211   1   890
## 12212   1   890
## 12213   1   890
## 12214   1   890
## 12215   1   890
## 12216   1   890
## 12217   1   890
## 12218   1   890
## 12219   1   890
## 12220   1   890
## 12221   1   890
## 12222   1   890
## 12223   1   890
## 12224   1   890
## 12225   1   890
## 12226   1   890
## 12227   1   890
## 12228   1   890
## 12229   1   890
## 12230   1   890
## 12231   1   890
## 12232   1   890
## 12233   1   890
## 12234   1   890
## 12235   1   890
## 12236   1   890
## 12237   1   890
## 12238   1   890
## 12239   1   890
## 12240   1   890
## 12241   1   890
## 12242   1   890
## 12243   1   890
## 12244   1   890
## 12245   1   890
## 12246   1   890
## 12247   1   890
## 12248   1   890
## 12249   1   890
## 12250   1   335
## 12251   1   335
## 12252   1   335
## 12253   1   335
## 12254   1   335
## 12255   1   335
## 12256   1   335
## 12257   1   335
## 12258   1   335
## 12259   1   335
## 12260   1   335
## 12261   1   335
## 12262   1   335
## 12263   1   335
## 12264   1   335
## 12265   1   335
## 12266   1   335
## 12267   1   335
## 12268   1   335
## 12269   1   335
## 12270   1   335
## 12271   1   335
## 12272   1   335
## 12273   1   335
## 12274   1   335
## 12275   1   335
## 12276   1   335
## 12277   1   335
## 12278   1   335
## 12279   1   335
## 12280   1   335
## 12281   1   335
## 12282   1   335
## 12283   1   335
## 12284   1   335
## 12285   1   335
## 12286   1   335
## 12287   1   335
## 12288   1   335
## 12289   1   335
## 12290   1   335
## 12291   1   335
## 12292   1   335
## 12293   1   335
## 12294   1   335
## 12295   1   335
## 12296   1   335
## 12297   1   335
## 12298   1   335
## 12299   1   335
## 12300   1   335
## 12301   1   335
## 12302   1   335
## 12303   1   335
## 12304   1   335
## 12305   1   335
## 12306   1   335
## 12307   1   335
## 12308   1   335
## 12309   1   335
## 12310   1   335
## 12311   1   335
## 12312   1   335
## 12313   1   335
## 12314   1   335
## 12315   1   335
## 12316   1   335
## 12317   1   335
## 12318   1   335
## 12319   1   335
## 12320   1   335
## 12321   1   335
## 12322   1   335
## 12323   1   335
## 12324   1   335
## 12325   1   335
## 12326   1   335
## 12327   1   335
## 12328   1   335
## 12329   1   335
## 12330   1   335
## 12331   1   335
## 12332   1   335
## 12333   1   335
## 12334   1   335
## 12335   1   335
## 12336   1   335
## 12337   1   335
## 12338   1   335
## 12339   1   335
## 12340   1   335
## 12341   1   335
## 12342   1   335
## 12343   1   335
## 12344   1   335
## 12345   1   335
## 12346   1   335
## 12347   1   335
## 12348   1   335
## 12349   1   335
## 12350   1   335
## 12351   1   335
## 12352   1   335
## 12353   1   335
## 12354   1   335
## 12355   1   335
## 12356   1   335
## 12357   1   335
## 12358   1   335
## 12359   1   335
## 12360   1   335
## 12361   1   335
## 12362   1   335
## 12363   1   335
## 12364   1   335
## 12365   1   335
## 12366   1   335
## 12367   1   335
## 12368   1   335
## 12369   1   335
## 12370   1   335
## 12371   1   335
## 12372   1   335
## 12373   1   335
## 12374   1   335
## 12375   1   335
## 12376   1   335
## 12377   1   335
## 12378   1   335
## 12379   1   335
## 12380   1   335
## 12381   1   335
## 12382   1   335
## 12383   1   335
## 12384   1   335
## 12385   1   335
## 12386   1   335
## 12387   1   335
## 12388   1   335
## 12389   1   335
## 12390   1   335
## 12391   1   335
## 12392   1   335
## 12393   1   335
## 12394   1   335
## 12395   1   335
## 12396   1   335
## 12397   1   335
## 12398   1   335
## 12399   1   335
## 12400   1   335
## 12401   1   335
## 12402   1   335
## 12403   1   335
## 12404   1   335
## 12405   1   335
## 12406   1   335
## 12407   1   335
## 12408   1   335
## 12409   1   335
## 12410   1   335
## 12411   1   335
## 12412   1   335
## 12413   1   164
## 12414   1   164
## 12415   1   164
## 12416   1   164
## 12417   1   164
## 12418   1   164
## 12419   1   164
## 12420   1   164
## 12421   1   164
## 12422   1   164
## 12423   1   164
## 12424   1   164
## 12425   1   164
## 12426   1   164
## 12427   1   164
## 12428   1   164
## 12429   1   164
## 12430   1   164
## 12431   1   164
## 12432   1   164
## 12433   1   164
## 12434   1   164
## 12435   1   164
## 12436   1   164
## 12437   1   164
## 12438   1   164
## 12439   1   164
## 12440   1   164
## 12441   1   164
## 12442   1   164
## 12443   1   164
## 12444   1   164
## 12445   1   164
## 12446   1   164
## 12447   1   164
## 12448   1   164
## 12449   1   164
## 12450   1   164
## 12451   1   164
## 12452   1   164
## 12453   1   164
## 12454   1   164
## 12455   1   164
## 12456   1   164
## 12457   1   164
## 12458   1   164
## 12459   1   164
## 12460   1   164
## 12461   1   164
## 12462   1   164
## 12463   1   164
## 12464   1   164
## 12465   1   164
## 12466   1   164
## 12467   1   164
## 12468   1   164
## 12469   1   164
## 12470   1   164
## 12471   1   164
## 12472   1   164
## 12473   1   164
## 12474   1   164
## 12475   1   164
## 12476   1   164
## 12477   1   164
## 12478   1   164
## 12479   1   164
## 12480   1   164
## 12481   1   164
## 12482   1   164
## 12483   1   164
## 12484   1   164
## 12485   1   164
## 12486   1   164
## 12487   1   164
## 12488   1   164
## 12489   1   164
## 12490   1   164
## 12491   1   164
## 12492   1   164
## 12493   1   164
## 12494   1   164
## 12495   1   164
## 12496   1   164
## 12497   1   164
## 12498   1   164
## 12499   1   164
## 12500   1   164
## 12501   1   164
## 12502   1   164
## 12503   1   164
## 12504   1   164
## 12505   1   164
## 12506   1   164
## 12507   1   164
## 12508   1   164
## 12509   1   164
## 12510   1   164
## 12511   1   164
## 12512   1   358
## 12513   1   358
## 12514   1   358
## 12515   1   358
## 12516   1   358
## 12517   1   358
## 12518   1   358
## 12519   1   358
## 12520   1   358
## 12521   1   358
## 12522   1   358
## 12523   1   358
## 12524   1   358
## 12525   1   358
## 12526   1   358
## 12527   1   358
## 12528   1   358
## 12529   1   358
## 12530   1   358
## 12531   1   358
## 12532   1   358
## 12533   1   358
## 12534   1   358
## 12535   1   358
## 12536   1   358
## 12537   1   358
## 12538   1   358
## 12539   1   358
## 12540   1   358
## 12541   1   358
## 12542   1   358
## 12543   1   358
## 12544   1   358
## 12545   1   358
## 12546   1   358
## 12547   1   358
## 12548   1   358
## 12549   1   358
## 12550   1   358
## 12551   1   358
## 12552   1   358
## 12553   1   358
## 12554   1   358
## 12555   1   358
## 12556   1   358
## 12557   1   358
## 12558   1   358
## 12559   1   358
## 12560   1   358
## 12561   1   358
## 12562   1   358
## 12563   1   358
## 12564   1   358
## 12565   1   358
## 12566   1   358
## 12567   1   358
## 12568   1   358
## 12569   1   358
## 12570   1   358
## 12571   1   358
## 12572   1   358
## 12573   1   358
## 12574   1   358
## 12575   1   358
## 12576   1   358
## 12577   1   358
## 12578   1   358
## 12579   1   358
## 12580   1   358
## 12581   1   358
## 12582   1   358
## 12583   1   358
## 12584   1   358
## 12585   1   358
## 12586   1   358
## 12587   1   358
## 12588   1   358
## 12589   1   358
## 12590   1   358
## 12591   1   358
## 12592   1   358
## 12593   1   358
## 12594   1   358
## 12595   1   358
## 12596   1   358
## 12597   1   358
## 12598   1   358
## 12599   1   358
## 12600   1   358
## 12601   1   358
## 12602   1   358
## 12603   1   358
## 12604   1   358
## 12605   1   358
## 12606   1   358
## 12607   1   358
## 12608   1   358
## 12609   1   358
## 12610   1   358
## 12611   1   358
## 12612   1   358
## 12613   1   358
## 12614   1   358
## 12615   1   358
## 12616   1   358
## 12617   1   358
## 12618   1   358
## 12619   1   358
## 12620   1   358
## 12621   1   358
## 12622   1   358
## 12623   1   358
## 12624   1   358
## 12625   1   358
## 12626   1   358
## 12627   1   358
## 12628   1   358
## 12629   1   358
## 12630   1   358
## 12631   1   358
## 12632   1   358
## 12633   1   358
## 12634   1   358
## 12635   1   358
## 12636   1   358
## 12637   1   358
## 12638   1   358
## 12639   1   358
## 12640   1   358
## 12641   1   358
## 12642   1   358
## 12643   1   358
## 12644   1   358
## 12645   1   358
## 12646   1   358
## 12647   1   358
## 12648   1   358
## 12649   1   358
## 12650   1   358
## 12651   1   358
## 12652   1   358
## 12653   1   358
## 12654   1   358
## 12655   1   358
## 12656   1   358
## 12657   1   358
## 12658   1   358
## 12659   1   358
## 12660   1   358
## 12661   1   358
## 12662   1   358
## 12663   1   358
## 12664   1   358
## 12665   1   358
## 12666   1   358
## 12667   1   358
## 12668   1   358
## 12669   1   358
## 12670   1   358
## 12671   1   358
## 12672   1   358
## 12673   1   358
## 12674   1   358
## 12675   1   358
## 12676   1   358
## 12677   1  1590
## 12678   1  1590
## 12679   1  1590
## 12680   1  1590
## 12681   1  1590
## 12682   1  1590
## 12683   1  1590
## 12684   1  1590
## 12685   1  1590
## 12686   1  1590
## 12687   1  1590
## 12688   1  1590
## 12689   1  1590
## 12690   1  1590
## 12691   1  1590
## 12692   1  1590
## 12693   1  1590
## 12694   1  1590
## 12695   1  1590
## 12696   1  1590
## 12697   1  1590
## 12698   1  1590
## 12699   1  1590
## 12700   1  1590
## 12701   1  1590
## 12702   1  1590
## 12703   1  1590
## 12704   1  1590
## 12705   1  1590
## 12706   1  1590
## 12707   1  1590
## 12708   1  1590
## 12709   1  1590
## 12710   1  1590
## 12711   1  1590
## 12712   1  1590
## 12713   1  1590
## 12714   1  1590
## 12715   1  1590
## 12716   1  1590
## 12717   1  1590
## 12718   1  1590
## 12719   1  1590
## 12720   1  1590
## 12721   1  1590
## 12722   1  1590
## 12723   1  1590
## 12724   1  1590
## 12725   1  1590
## 12726   1  1590
## 12727   1  1590
## 12728   1  1590
## 12729   1  1590
## 12730   1  1590
## 12731   1  1590
## 12732   1  1590
## 12733   1  1590
## 12734   1  1590
## 12735   1  1590
## 12736   1  1590
## 12737   1  1590
## 12738   1  1590
## 12739   1  1590
## 12740   1  1590
## 12741   1  1590
## 12742   1  1590
## 12743   1  1590
## 12744   1  1590
## 12745   1  1590
## 12746   1  1590
## 12747   1  1590
## 12748   1  1590
## 12749   1  1590
## 12750   1  1590
## 12751   1  1590
## 12752   1  1590
## 12753   1  1590
## 12754   1  1590
## 12755   1  1590
## 12756   1  1590
## 12757   1  1590
## 12758   1  1590
## 12759   1  1590
## 12760   1  1590
## 12761   1  1590
## 12762   1  1590
## 12763   1  1590
## 12764   1  1590
## 12765   1  1590
## 12766   1  1590
## 12767   1  1590
## 12768   1  1590
## 12769   1  1590
## 12770   1  1590
## 12771   1  1590
## 12772   1  1590
## 12773   1  1590
## 12774   1  1590
## 12775   1  1590
## 12776   1  1590
## 12777   1  1590
## 12778   1  1590
## 12779   1  1590
## 12780   1  1590
## 12781   1  1590
## 12782   1  1590
## 12783   1  1590
## 12784   1  1590
## 12785   1  1590
## 12786   1  1590
## 12787   1  1590
## 12788   1  1590
## 12789   1  1590
## 12790   1  1590
## 12791   1  1590
## 12792   1  1590
## 12793   1  1590
## 12794   1  1590
## 12795   1  1590
## 12796   1  1590
## 12797   1  1590
## 12798   1  1590
## 12799   1  1590
## 12800   1  1590
## 12801   1  1590
## 12802   1  1590
## 12803   1  1590
## 12804   1  1590
## 12805   1  1590
## 12806   1  1590
## 12807   1  1590
## 12808   1  1590
## 12809   1  1590
## 12810   1  1590
## 12811   1  1590
## 12812   1  1590
## 12813   1  1590
## 12814   1  1590
## 12815   1  1590
## 12816   1  1590
## 12817   1  1590
## 12818   1  1590
## 12819   1  1590
## 12820   1  1590
## 12821   1  1590
## 12822   1  1590
## 12823   1  1590
## 12824   1  1590
## 12825   1  1590
## 12826   1  1590
## 12827   1  1590
## 12828   1  1590
## 12829   1  1590
## 12830   1  1590
## 12831   1  1590
## 12832   1  1590
## 12833   1  1590
## 12834   1  1590
## 12835   1  1590
## 12836   1  1590
## 12837   1  1590
## 12838   1  1590
## 12839   1  1590
## 12840   1  1590
## 12841   1  1590
## 12842   1  1590
## 12843   1  1590
## 12844   1  1590
## 12845   1  1590
## 12846   1  1590
## 12847   1  1590
## 12848   1  1590
## 12849   1  1590
## 12850   1  1590
## 12851   1  1590
## 12852   1  1590
## 12853   1  1590
## 12854   1  1590
## 12855   1  1590
## 12856   1  1590
## 12857   1  1590
## 12858   1  1590
## 12859   1  1590
## 12860   1  1590
## 12861   1  1590
## 12862   1  1590
## 12863   1  1590
## 12864   1  1590
## 12865   1  1590
## 12866   1  1590
## 12867   1  1590
## 12868   1  1590
## 12869   1  1590
## 12870   1  1590
## 12871   1  1590
## 12872   1  1590
## 12873   1  1590
## 12874   1  1590
## 12875   1  1590
## 12876   1  1590
## 12877   1  1590
## 12878   1  1590
## 12879   1  1590
## 12880   1  1590
## 12881   1  1590
## 12882   1  1590
## 12883   1  1590
## 12884   1  1590
## 12885   1  1590
## 12886   1  1590
## 12887   1  1590
## 12888   1  1590
## 12889   1  1590
## 12890   1  1590
## 12891   1  1590
## 12892   1  1590
## 12893   1  1590
## 12894   1  1590
## 12895   1  1590
## 12896   1  1590
## 12897   1  1590
## 12898   1  1590
## 12899   1  1590
## 12900   1  1590
## 12901   1  1590
## 12902   1  1590
## 12903   1  1590
## 12904   1  1590
## 12905   1  1590
## 12906   1  1590
## 12907   1  1590
## 12908   1  1590
## 12909   1  1590
## 12910   1  1590
## 12911   1  1590
## 12912   1  1590
## 12913   1  1590
## 12914   1  1590
## 12915   1  1590
## 12916   1  1590
## 12917   1  1590
## 12918   1  1590
## 12919   1  1590
## 12920   1  1590
## 12921   1  1590
## 12922   1  1590
## 12923   1  1590
## 12924   1  1590
## 12925   1  1590
## 12926   1  1590
## 12927   1  1590
## 12928   1  1590
## 12929   1  1590
## 12930   1  1590
## 12931   1  1590
## 12932   1  1590
## 12933   1  1590
## 12934   1  1590
## 12935   1  1590
## 12936   1  1590
## 12937   1  1590
## 12938   1  1590
## 12939   1  1590
## 12940   1  1590
## 12941   1  1590
## 12942   1  1590
## 12943   1  1590
## 12944   1  1590
## 12945   1  1590
## 12946   1  1590
## 12947   1  1590
## 12948   1  1590
## 12949   1  1590
## 12950   1  1590
## 12951   1  1590
## 12952   1  1590
## 12953   1  1590
## 12954   1  1590
## 12955   1  1590
## 12956   1  1590
## 12957   1  1590
## 12958   1  1590
## 12959   1  1590
## 12960   1  1590
## 12961   1  1590
## 12962   1  1590
## 12963   1  1590
## 12964   1  1590
## 12965   1  1590
## 12966   1  1590
## 12967   1  1590
## 12968   1  1590
## 12969   1  1590
## 12970   1  1590
## 12971   1  1590
## 12972   1  1590
## 12973   1  1590
## 12974   1  1590
## 12975   1  1590
## 12976   1  1590
## 12977   1  1590
## 12978   1  1590
## 12979   1  1590
## 12980   1  1590
## 12981   1  1590
## 12982   1  1590
## 12983   1  1590
## 12984   1  1590
## 12985   1  1590
## 12986   1  1590
## 12987   1  1590
## 12988   1  1590
## 12989   1  1590
## 12990   1  1590
## 12991   1  1590
## 12992   1  1590
## 12993   1  1590
## 12994   1  1590
## 12995   1  1590
## 12996   1  1590
## 12997   1  1590
## 12998   1  1590
## 12999   1  1590
## 13000   1  1590
## 13001   1  1590
## 13002   1  1590
## 13003   1  1590
## 13004   1  1590
## 13005   1  1590
## 13006   1  1590
## 13007   1  1590
## 13008   1  1590
## 13009   1  1590
## 13010   1  1590
## 13011   1  1590
## 13012   1  1590
## 13013   1  1590
## 13014   1  1590
## 13015   1  1590
## 13016   1  1590
## 13017   1  1590
## 13018   1  1590
## 13019   1  1590
## 13020   1  1590
## 13021   1  1590
## 13022   1  1590
## 13023   1  1590
## 13024   1  1590
## 13025   1  1590
## 13026   1  1590
## 13027   1  1590
## 13028   1  1590
## 13029   1  1590
## 13030   1  1590
## 13031   1  1590
## 13032   1  1590
## 13033   1  1590
## 13034   1  1590
## 13035   1  1590
## 13036   1  1590
## 13037   1  1590
## 13038   1  1590
## 13039   1  1590
## 13040   1  1590
## 13041   1  1590
## 13042   1  1590
## 13043   1  1590
## 13044   1  1590
## 13045   1  1590
## 13046   1  1590
## 13047   1  1590
## 13048   1  1590
## 13049   1  1590
## 13050   1  1590
## 13051   1  1590
## 13052   1  1590
## 13053   1  1590
## 13054   1  1590
## 13055   1  1590
## 13056   1  1590
## 13057   1  1590
## 13058   1  1590
## 13059   1  1590
## 13060   1  1590
## 13061   1  1590
## 13062   1  1590
## 13063   1  1590
## 13064   1  1590
## 13065   1  1590
## 13066   1  1590
## 13067   1  1590
## 13068   1  1590
## 13069   1  1590
## 13070   1  1590
## 13071   1  1590
## 13072   1  1590
## 13073   1  1590
## 13074   1  1590
## 13075   1  1590
## 13076   1  1590
## 13077   1  1590
## 13078   1  1590
## 13079   1  1590
## 13080   1  1590
## 13081   1  1590
## 13082   1  1590
## 13083   1  1590
## 13084   1  1590
## 13085   1  1590
## 13086   1  1590
## 13087   1  1590
## 13088   1  1590
## 13089   1  1590
## 13090   1  1590
## 13091   1  1590
## 13092   1  1590
## 13093   1  1590
## 13094   1  1590
## 13095   1  1590
## 13096   1  1590
## 13097   1  1590
## 13098   1  1590
## 13099   1  1590
## 13100   1  1590
## 13101   1  1590
## 13102   1  1590
## 13103   1  1590
## 13104   1  1590
## 13105   1  1590
## 13106   1  1590
## 13107   1  1590
## 13108   1  1590
## 13109   1  1590
## 13110   1  1590
## 13111   1  1590
## 13112   1  1590
## 13113   1  1590
## 13114   1  1590
## 13115   1  1590
## 13116   1  1590
## 13117   1  1590
## 13118   1  1590
## 13119   1  1590
## 13120   1  1590
## 13121   1  1590
## 13122   1  1590
## 13123   1  1590
## 13124   1  1590
## 13125   1  1590
## 13126   1  1590
## 13127   1  1590
## 13128   1  1590
## 13129   1  1590
## 13130   1  1590
## 13131   1  1590
## 13132   1  1590
## 13133   1  1590
## 13134   1  1590
## 13135   1  1590
## 13136   1  1590
## 13137   1  1590
## 13138   1  1590
## 13139   1  1590
## 13140   1  1590
## 13141   1  1590
## 13142   1  1590
## 13143   1  1590
## 13144   1  1590
## 13145   1  1590
## 13146   1  1531
## 13147   1  1531
## 13148   1  1531
## 13149   1  1531
## 13150   1  1531
## 13151   1  1531
## 13152   1  1531
## 13153   1  1531
## 13154   1  1531
## 13155   1  1531
## 13156   1  1531
## 13157   1  1531
## 13158   1  1531
## 13159   1  1531
## 13160   1  1531
## 13161   1  1531
## 13162   1  1531
## 13163   1  1531
## 13164   1  1531
## 13165   1  1531
## 13166   1  1531
## 13167   1  1531
## 13168   1  1531
## 13169   1  1531
## 13170   1  1531
## 13171   1  1531
## 13172   1  1531
## 13173   1  1531
## 13174   1  1531
## 13175   1  1531
## 13176   1  1531
## 13177   1  1531
## 13178   1  1531
## 13179   1  1531
## 13180   1  1531
## 13181   1  1531
## 13182   1  1531
## 13183   1  1531
## 13184   1  1531
## 13185   1  1531
## 13186   1  1531
## 13187   1  1531
## 13188   1  1531
## 13189   1  1531
## 13190   1  1531
## 13191   1  1531
## 13192   1  1531
## 13193   1  1531
## 13194   1  1531
## 13195   1  1531
## 13196   1  1531
## 13197   1  1531
## 13198   1  1531
## 13199   1  1531
## 13200   1  1531
## 13201   1  1531
## 13202   1  1531
## 13203   1  1531
## 13204   1  1531
## 13205   1  1531
## 13206   1  1531
## 13207   1  1531
## 13208   1  1531
## 13209   1  1531
## 13210   1  1531
## 13211   1  1531
## 13212   1  1531
## 13213   1  1531
## 13214   1  1531
## 13215   1  1531
## 13216   1  1531
## 13217   1  1531
## 13218   1  1531
## 13219   1  1531
## 13220   1  1531
## 13221   1  1531
## 13222   1  1531
## 13223   1  1531
## 13224   1  1531
## 13225   1  1531
## 13226   1  1531
## 13227   1  1531
## 13228   1  1531
## 13229   1  1531
## 13230   1  1531
## 13231   1  1531
## 13232   1  1531
## 13233   1  1531
## 13234   1  1531
## 13235   1  1531
## 13236   1  1531
## 13237   1  1531
## 13238   1  1531
## 13239   1  1531
## 13240   1  1531
## 13241   1  1531
## 13242   1  1531
## 13243   1  1531
## 13244   1  1531
## 13245   1  1531
## 13246   1  1531
## 13247   1  1531
## 13248   1  1531
## 13249   1  1531
## 13250   1  1531
## 13251   1  1531
## 13252   1  1531
## 13253   1  1531
## 13254   1  1531
## 13255   1  1531
## 13256   1  1531
## 13257   1  1531
## 13258   1  1531
## 13259   1  1531
## 13260   1  1531
## 13261   1  1531
## 13262   1  1531
## 13263   1  1531
## 13264   1  1531
## 13265   1  1531
## 13266   1  1531
## 13267   1  1531
## 13268   1  1531
## 13269   1  1531
## 13270   1  1531
## 13271   1  1531
## 13272   1  1531
## 13273   1  1531
## 13274   1  1531
## 13275   1  1531
## 13276   1  1531
## 13277   1  1531
## 13278   1  1531
## 13279   1  1531
## 13280   1  1531
## 13281   1  1531
## 13282   1  1531
## 13283   1  1531
## 13284   1  1531
## 13285   1  1531
## 13286   1  1531
## 13287   1  1531
## 13288   1  1531
## 13289   1  1531
## 13290   1  1531
## 13291   1  1531
## 13292   1  1531
## 13293   1  1531
## 13294   1  1531
## 13295   1  1531
## 13296   1  1531
## 13297   1  1531
## 13298   1  1531
## 13299   1  1531
## 13300   1  1531
## 13301   1  1531
## 13302   1  1531
## 13303   1  1531
## 13304   1  1531
## 13305   1  1531
## 13306   1  1531
## 13307   1  1531
## 13308   1  1531
## 13309   1  1531
## 13310   1  1531
## 13311   1  1531
## 13312   1  1531
## 13313   1  1531
## 13314   1  1531
## 13315   1  1531
## 13316   1  1531
## 13317   1  1531
## 13318   1  1531
## 13319   1  1531
## 13320   1  1531
## 13321   1  1531
## 13322   1  1531
## 13323   1  1531
## 13324   1  1531
## 13325   1  1531
## 13326   1  1531
## 13327   1  1531
## 13328   1  1531
## 13329   1  1531
## 13330   1  1531
## 13331   1  1531
## 13332   1  1531
## 13333   1  1531
## 13334   1  1531
## 13335   1  1531
## 13336   1  1531
## 13337   1  1531
## 13338   1  1531
## 13339   1  1531
## 13340   1  1531
## 13341   1  1531
## 13342   1  1531
## 13343   1  1531
## 13344   1  1531
## 13345   1  1531
## 13346   1  1531
## 13347   1  1531
## 13348   1  1531
## 13349   1  1531
## 13350   1  1531
## 13351   1  1531
## 13352   1  1531
## 13353   1  1531
## 13354   1  1531
## 13355   1  1531
## 13356   1  1531
## 13357   1  1531
## 13358   1  1531
## 13359   1  1531
## 13360   1  1531
## 13361   1  1531
## 13362   1  1531
## 13363   1  1531
## 13364   1  1531
## 13365   1  1531
## 13366   1  1531
## 13367   1  1531
## 13368   1  1531
## 13369   1  1531
## 13370   1  1531
## 13371   1  1531
## 13372   1  1531
## 13373   1  1531
## 13374   1  1531
## 13375   1  1531
## 13376   1  1531
## 13377   1  1531
## 13378   1  1531
## 13379   1  1531
## 13380   1  1531
## 13381   1  1531
## 13382   1  1531
## 13383   1  1531
## 13384   1  1531
## 13385   1  1531
## 13386   1  1531
## 13387   1  1531
## 13388   1  1531
## 13389   1  1531
## 13390   1  1531
## 13391   1  1531
## 13392   1  1531
## 13393   1  1531
## 13394   1  1531
## 13395   1  1531
## 13396   1  1531
## 13397   1  1531
## 13398   1  1531
## 13399   1  1531
## 13400   1  1531
## 13401   1  1531
## 13402   1  1531
## 13403   1  1531
## 13404   1  1531
## 13405   1  1531
## 13406   1  1531
## 13407   1  1531
## 13408   1  1531
## 13409   1  1531
## 13410   1  1531
## 13411   1  1531
## 13412   1  1531
## 13413   1  1531
## 13414   1  1531
## 13415   1  1531
## 13416   1  1531
## 13417   1  1531
## 13418   1  1531
## 13419   1  1531
## 13420   1  1531
## 13421   1  1531
## 13422   1  1531
## 13423   1  1531
## 13424   1  1531
## 13425   1  1531
## 13426   1  1531
## 13427   1  1531
## 13428   1  1531
## 13429   1  1531
## 13430   1  1531
## 13431   1  1531
## 13432   1  1531
## 13433   1  1531
## 13434   1  1531
## 13435   1  1531
## 13436   1  1531
## 13437   1  1531
## 13438   1  1531
## 13439   1  1531
## 13440   1  1531
## 13441   1  1531
## 13442   1  1531
## 13443   1  1531
## 13444   1  1531
## 13445   1  1531
## 13446   1  1531
## 13447   1  1531
## 13448   1  1531
## 13449   1  1531
## 13450   1  1531
## 13451   1  1531
## 13452   1  1531
## 13453   1  1531
## 13454   1  1531
## 13455   1  1531
## 13456   1  1531
## 13457   1  1531
## 13458   1  1531
## 13459   1  1531
## 13460   1  1531
## 13461   1  1531
## 13462   1  1531
## 13463   1  1531
## 13464   1  1531
## 13465   1  1531
## 13466   1  1531
## 13467   1  1531
## 13468   1  1531
## 13469   1  1531
## 13470   1  1531
## 13471   1  1531
## 13472   1  1531
## 13473   1  1531
## 13474   1  1531
## 13475   1  1531
## 13476   1  1531
## 13477   1  1531
## 13478   1  1531
## 13479   1  1531
## 13480   1  1531
## 13481   1  1531
## 13482   1  1531
## 13483   1  1531
## 13484   1  1531
## 13485   1  1531
## 13486   1  1531
## 13487   1  1531
## 13488   1  1531
## 13489   1  1531
## 13490   1  1531
## 13491   1  1531
## 13492   1  1531
## 13493   1  1531
## 13494   1  1531
## 13495   1  1531
## 13496   1  1531
## 13497   1  1531
## 13498   1  1531
## 13499   1  1531
## 13500   1  1531
## 13501   1  1531
## 13502   1  1531
## 13503   1  1531
## 13504   1  1531
## 13505   1  1531
## 13506   1  1531
## 13507   1  1531
## 13508   1  1531
## 13509   1  1531
## 13510   1  1531
## 13511   1  1531
## 13512   1  1531
## 13513   1  1531
## 13514   1  1531
## 13515   1  1531
## 13516   1   908
## 13517   1   908
## 13518   1   908
## 13519   1   908
## 13520   1   908
## 13521   1   908
## 13522   1   908
## 13523   1   908
## 13524   1   908
## 13525   1   908
## 13526   1   908
## 13527   1   908
## 13528   1   908
## 13529   1   908
## 13530   1   908
## 13531   1   908
## 13532   1   908
## 13533   1   908
## 13534   1   908
## 13535   1   908
## 13536   1   908
## 13537   1   908
## 13538   1   908
## 13539   1   908
## 13540   1   908
## 13541   1   908
## 13542   1   908
## 13543   1   908
## 13544   1   908
## 13545   1   908
## 13546   1   908
## 13547   1   908
## 13548   1   908
## 13549   1   908
## 13550   1   908
## 13551   1   908
## 13552   1   908
## 13553   1   908
## 13554   1   908
## 13555   1   908
## 13556   1   908
## 13557   1   908
## 13558   1   908
## 13559   1   908
## 13560   1   908
## 13561   1   908
## 13562   1   908
## 13563   1   908
## 13564   1   908
## 13565   1   908
## 13566   1   908
## 13567   1   908
## 13568   1   908
## 13569   1   908
## 13570   1   908
## 13571   1   908
## 13572   1   908
## 13573   1   908
## 13574   1   908
## 13575   1   908
## 13576   1   908
## 13577   1   908
## 13578   1   908
## 13579   1   908
## 13580   1   908
## 13581   1   908
## 13582   1   908
## 13583   1   908
## 13584   1   908
## 13585   1   908
## 13586   1   908
## 13587   1   908
## 13588   1   908
## 13589   1   908
## 13590   1   908
## 13591   1   908
## 13592   1   908
## 13593   1   908
## 13594   1   908
## 13595   1   908
## 13596   1   908
## 13597   1   908
## 13598   1   908
## 13599   1   908
## 13600   1   908
## 13601   1   908
## 13602   1   908
## 13603   1   908
## 13604   1   908
## 13605   1   908
## 13606   1   908
## 13607   1   908
## 13608   1   908
## 13609   1   908
## 13610   1   908
## 13611   1   908
## 13612   1   908
## 13613   1   908
## 13614   1   908
## 13615   1   908
## 13616   1   908
## 13617   1   908
## 13618   1   908
## 13619   1   908
## 13620   1   908
## 13621   1   908
## 13622   1   908
## 13623   1   908
## 13624   1   908
## 13625   1   908
## 13626   1   908
## 13627   1   908
## 13628   1   908
## 13629   1   908
## 13630   1   908
## 13631   1   908
## 13632   1   908
## 13633   1   908
## 13634   1   908
## 13635   1   908
## 13636   1   908
## 13637   1   908
## 13638   1   908
## 13639   1   908
## 13640   1   908
## 13641   1   908
## 13642   1   908
## 13643   1   908
## 13644   1   908
## 13645   1   908
## 13646   1   908
## 13647   1   908
## 13648   1   908
## 13649   1   908
## 13650   1   908
## 13651   1   908
## 13652   1   908
## 13653   1   908
## 13654   1   908
## 13655   1   908
## 13656   1   908
## 13657   1   908
## 13658   1   908
## 13659   1   908
## 13660   1   908
## 13661   1   908
## 13662   1   908
## 13663   1   908
## 13664   1   908
## 13665   1   908
## 13666   1   908
## 13667   1   908
## 13668   1   908
## 13669   1   908
## 13670   1   908
## 13671   1   908
## 13672   1   908
## 13673   1   908
## 13674   1   908
## 13675   1   908
## 13676   1   908
## 13677   1   908
## 13678   1   908
## 13679   1   908
## 13680   1   908
## 13681   1   908
## 13682   1   908
## 13683   1   908
## 13684   1   908
## 13685   1   908
## 13686   1   908
## 13687   1   908
## 13688   1   908
## 13689   1   908
## 13690   1   908
## 13691   1   908
## 13692   1   908
## 13693   1   908
## 13694   1   908
## 13695   1   908
## 13696   1   908
## 13697   1   908
## 13698   1   908
## 13699   1   908
## 13700   1   908
## 13701   1   908
## 13702   1   908
## 13703   1   908
## 13704   1   908
## 13705   1   908
## 13706   1   908
## 13707   1   908
## 13708   1   908
## 13709   1   908
## 13710   1   908
## 13711   1   908
## 13712   1   908
## 13713   1   908
## 13714   1   908
## 13715   1   908
## 13716   1   908
## 13717   1   908
## 13718   1   908
## 13719   1   908
## 13720   1   908
## 13721   1   908
## 13722   1   908
## 13723   1   908
## 13724   1   908
## 13725   1   908
## 13726   1   908
## 13727   1   908
## 13728   1   908
## 13729   1   908
## 13730   1   908
## 13731   1   908
## 13732   1   908
## 13733   1   908
## 13734   1   908
## 13735   1   908
## 13736   1   908
## 13737   1   908
## 13738   1   908
## 13739   1   908
## 13740   1   908
## 13741   1   908
## 13742   1   908
## 13743   1   908
## 13744   1   908
## 13745   1   908
## 13746   1   908
## 13747   1   908
## 13748   1   908
## 13749   1   908
## 13750   1   908
## 13751   1   908
## 13752   1   908
## 13753   1   908
## 13754   1   908
## 13755   1   908
## 13756   1   908
## 13757   1   908
## 13758   1   908
## 13759   1   908
## 13760   1   908
## 13761   1   908
## 13762   1   908
## 13763   1   908
## 13764   1   908
## 13765   1   908
## 13766   1   908
## 13767   1   908
## 13768   1   908
## 13769   1   908
## 13770   1   908
## 13771   1   908
## 13772   1   908
## 13773   1   908
## 13774   1   908
## 13775   1   908
## 13776   1   908
## 13777   1   908
## 13778   1   908
## 13779   1   908
## 13780   1   908
## 13781   1   908
## 13782   1   908
## 13783   1   908
## 13784   1   908
## 13785   1   908
## 13786   1   908
## 13787   1   908
## 13788   1   908
## 13789   1   908
## 13790   1   908
## 13791   1   908
## 13792   1   908
## 13793   1   908
## 13794   1   908
## 13795   1   908
## 13796   1   908
## 13797   1   908
## 13798   1   908
## 13799   1   908
## 13800   1   908
## 13801   1   908
## 13802   1   908
## 13803   1   908
## 13804   1   908
## 13805   1   908
## 13806   1   908
## 13807   1   908
## 13808   1   908
## 13809   1   908
## 13810   1   908
## 13811   1   908
## 13812   1   908
## 13813   1   908
## 13814   1   908
## 13815   1   908
## 13816   1   908
## 13817   1   908
## 13818   1   908
## 13819   1   908
## 13820   1   908
## 13821   1   908
## 13822   1   908
## 13823   1   908
## 13824   1   908
## 13825   1   908
## 13826   1   908
## 13827   1   908
## 13828   1   289
## 13829   1   289
## 13830   1   289
## 13831   1   289
## 13832   1   289
## 13833   1   289
## 13834   1   289
## 13835   1   289
## 13836   1   289
## 13837   1   289
## 13838   1   289
## 13839   1   289
## 13840   1   289
## 13841   1   289
## 13842   1   289
## 13843   1   289
## 13844   1   289
## 13845   1   289
## 13846   1   289
## 13847   1   289
## 13848   1   289
## 13849   1   289
## 13850   1   289
## 13851   1   289
## 13852   1   289
## 13853   1   289
## 13854   1   289
## 13855   1   289
## 13856   1   289
## 13857   1   289
## 13858   1   289
## 13859   1   289
## 13860   1   289
## 13861   1   289
## 13862   1   289
## 13863   1   289
## 13864   1   289
## 13865   1   289
## 13866   1   289
## 13867   1   289
## 13868   1   289
## 13869   1   289
## 13870   1   289
## 13871   1   289
## 13872   1   289
## 13873   1   289
## 13874   1   289
## 13875   1   289
## 13876   1   289
## 13877   1   289
## 13878   1   289
## 13879   1   289
## 13880   1   289
## 13881   1   289
## 13882   1   289
## 13883   1   289
## 13884   1   289
## 13885   1   289
## 13886   1   289
## 13887   1   289
## 13888   1   289
## 13889   1   289
## 13890   1   289
## 13891   1   289
## 13892   1   289
## 13893   1   289
## 13894   1   289
## 13895   1   289
## 13896   1   289
## 13897   1   289
## 13898   1   289
## 13899   1   289
## 13900   1   289
## 13901   1   289
## 13902   1   289
## 13903   1   289
## 13904   1   289
## 13905   1   289
## 13906   1   289
## 13907   1   289
## 13908   1   289
## 13909   1   289
## 13910   1   289
## 13911   1   289
## 13912   1   289
## 13913   1   289
## 13914   1   289
## 13915   1   289
## 13916   1   289
## 13917   1   289
## 13918   1   289
## 13919   1   289
## 13920   1   289
## 13921   1   289
## 13922   1   289
## 13923   1   289
## 13924   1   289
## 13925   1   289
## 13926   1   289
## 13927   1   289
## 13928   1   289
## 13929   1   289
## 13930   1   289
## 13931   1   289
## 13932   1   289
## 13933   1   289
## 13934   1   289
## 13935   1   289
## 13936   1   289
## 13937   1   289
## 13938   1   289
## 13939   1   289
## 13940   1   289
## 13941   1   289
## 13942   1   289
## 13943   1   289
## 13944   1   289
## 13945   1   289
## 13946   1   289
## 13947   1   289
## 13948   1   289
## 13949   1   289
## 13950   1   289
## 13951   1   289
## 13952   1   289
## 13953   1   289
## 13954   1   289
## 13955   1   289
## 13956   1   289
## 13957   1   289
## 13958   1   289
## 13959   1   289
## 13960   1   289
## 13961   1   289
## 13962   1   289
## 13963   1   289
## 13964   1   878
## 13965   1   878
## 13966   1   878
## 13967   1   878
## 13968   1   878
## 13969   1   878
## 13970   1   878
## 13971   1   878
## 13972   1   878
## 13973   1   878
## 13974   1   878
## 13975   1   878
## 13976   1   878
## 13977   1   878
## 13978   1   878
## 13979   1   878
## 13980   1   878
## 13981   1   878
## 13982   1   878
## 13983   1   878
## 13984   1   878
## 13985   1   878
## 13986   1   878
## 13987   1   878
## 13988   1   878
## 13989   1   878
## 13990   1   878
## 13991   1   878
## 13992   1   878
## 13993   1   878
## 13994   1   878
## 13995   1   878
## 13996   1   878
## 13997   1   878
## 13998   1   878
## 13999   1   878
## 14000   1   878
## 14001   1   878
## 14002   1   878
## 14003   1   878
## 14004   1   878
## 14005   1   878
## 14006   1   878
## 14007   1   878
## 14008   1   878
## 14009   1   878
## 14010   1   878
## 14011   1   878
## 14012   1   878
## 14013   1   878
## 14014   1   878
## 14015   1   878
## 14016   1   878
## 14017   1   878
## 14018   1   878
## 14019   1   878
## 14020   1   878
## 14021   1   878
## 14022   1   878
## 14023   1   878
## 14024   1   878
## 14025   1   878
## 14026   1   878
## 14027   1   878
## 14028   1   878
## 14029   1   878
## 14030   1   878
## 14031   1   878
## 14032   1   878
## 14033   1   878
## 14034   1   878
## 14035   1   878
## 14036   1   878
## 14037   1   878
## 14038   1   878
## 14039   1   878
## 14040   1   878
## 14041   1   878
## 14042   1   878
## 14043   1   878
## 14044   1   878
## 14045   1   878
## 14046   1   878
## 14047   1   878
## 14048   1   878
## 14049   1   878
## 14050   1   878
## 14051   1   878
## 14052   1   878
## 14053   1   878
## 14054   1   878
## 14055   1   878
## 14056   1   878
## 14057   1   878
## 14058   1   878
## 14059   1   878
## 14060   1   878
## 14061   1   878
## 14062   1   878
## 14063   1   878
## 14064   1   878
## 14065   1   878
## 14066   1   878
## 14067   1   878
## 14068   1   878
## 14069   1   878
## 14070   1   878
## 14071   1   878
## 14072   1   878
## 14073   1   878
## 14074   1   878
## 14075   1   878
## 14076   1   878
## 14077   1   878
## 14078   1   878
## 14079   1   878
## 14080   1   878
## 14081   1   878
## 14082   1   878
## 14083   1   878
## 14084   1   878
## 14085   1   878
## 14086   1   878
## 14087   1   878
## 14088   1   878
## 14089   1   878
## 14090   1   878
## 14091   1   878
## 14092   1   878
## 14093   1   878
## 14094   1   878
## 14095   1   878
## 14096   1   878
## 14097   1   878
## 14098   1   878
## 14099   1   878
## 14100   1   878
## 14101   1   878
## 14102   1   878
## 14103   1   878
## 14104   1   878
## 14105   1   878
## 14106   1   878
## 14107   1   878
## 14108   1   878
## 14109   1   878
## 14110   1   878
## 14111   1   878
## 14112   1   878
## 14113   1   878
## 14114   1   878
## 14115   1   878
## 14116   1   878
## 14117   1   878
## 14118   1   878
## 14119   1   878
## 14120   1   878
## 14121   1   878
## 14122   1   878
## 14123   1   878
## 14124   1   878
## 14125   1   878
## 14126   1   878
## 14127   1   878
## 14128   1   878
## 14129   1   878
## 14130   1   878
## 14131   1   878
## 14132   1   878
## 14133   1   878
## 14134   1   878
## 14135   1   878
## 14136   1   878
## 14137   1   878
## 14138   1   878
## 14139   1   878
## 14140   1   878
## 14141   1   878
## 14142   1   878
## 14143   1   878
## 14144   1   878
## 14145   1   878
## 14146   1   878
## 14147   1   878
## 14148   1   878
## 14149   1   878
## 14150   1   878
## 14151   1   878
## 14152   1   878
## 14153   1   878
## 14154   1   878
## 14155   1   878
## 14156   1   878
## 14157   1   878
## 14158   1   878
## 14159   1   878
## 14160   1   878
## 14161   1   878
## 14162   1   878
## 14163   1   878
## 14164   1   878
## 14165   1   878
## 14166   1   878
## 14167   1   878
## 14168   1   878
## 14169   1   878
## 14170   1   878
## 14171   1   878
## 14172   1   878
## 14173   1   878
## 14174   1   878
## 14175   1   878
## 14176   1   878
## 14177   1   878
## 14178   1   878
## 14179   1   878
## 14180   1   878
## 14181   1   878
## 14182   1   878
## 14183   1   878
## 14184   1   878
## 14185   1   878
## 14186   1   878
## 14187   1   878
## 14188   1   878
## 14189   1   878
## 14190   1   878
## 14191   1   878
## 14192   1   878
## 14193   1   878
## 14194   1   878
## 14195   1   878
## 14196   1   878
## 14197   1   878
## 14198   1   878
## 14199   1   878
## 14200   1   878
## 14201   1   878
## 14202   1   878
## 14203   1   878
## 14204   1   878
## 14205   1   878
## 14206   1   878
## 14207   1   878
## 14208   1   878
## 14209   1   878
## 14210   1   878
## 14211   1   878
## 14212   1   878
## 14213   1   878
## 14214   1   878
## 14215   1   878
## 14216   1   878
## 14217   1   878
## 14218   1   878
## 14219   1   878
## 14220   1   878
## 14221   1   878
## 14222   1   878
## 14223   1   878
## 14224   1   878
## 14225   1   878
## 14226   1   878
## 14227   1   878
## 14228   1   878
## 14229   1   878
## 14230   1   878
## 14231   1   878
## 14232   1   878
## 14233   1   878
## 14234   1   878
## 14235   1   878
## 14236   1   878
## 14237   1   878
## 14238   1   878
## 14239   1   878
## 14240   1   878
## 14241   1   878
## 14242   1   878
## 14243   1   878
## 14244   1   878
## 14245   1   878
## 14246   1   878
## 14247   1   878
## 14248   1   878
## 14249   1   878
## 14250   1   878
## 14251   1   878
## 14252   1   878
## 14253   1   878
## 14254   1   878
## 14255   1   878
## 14256   1   878
## 14257   1   878
## 14258   1   878
## 14259   1   878
## 14260   1   878
## 14261   1   878
## 14262   1   878
## 14263   1   878
## 14264   1   878
## 14265   1   878
## 14266   1   878
## 14267   1   878
## 14268   1   878
## 14269   1   878
## 14270   1   878
## 14271   1   878
## 14272   1   878
## 14273   1   878
## 14274   1   878
## 14275   1   878
## 14276   1   878
## 14277   1   878
## 14278   1   878
## 14279   1   878
## 14280   1   878
## 14281   1   878
## 14282   1   878
## 14283   1   878
## 14284   1   878
## 14285   1   878
## 14286   1   878
## 14287   1   878
## 14288   1   878
## 14289   1   878
## 14290   1   988
## 14291   1   988
## 14292   1   988
## 14293   1   988
## 14294   1   988
## 14295   1   988
## 14296   1   988
## 14297   1   988
## 14298   1   988
## 14299   1   988
## 14300   1   988
## 14301   1   988
## 14302   1   988
## 14303   1   988
## 14304   1   988
## 14305   1   988
## 14306   1   988
## 14307   1   988
## 14308   1   988
## 14309   1   988
## 14310   1   988
## 14311   1   988
## 14312   1   988
## 14313   1   988
## 14314   1   988
## 14315   1   988
## 14316   1   988
## 14317   1   988
## 14318   1   988
## 14319   1   988
## 14320   1   988
## 14321   1   988
## 14322   1   988
## 14323   1   988
## 14324   1   988
## 14325   1   988
## 14326   1   988
## 14327   1   988
## 14328   1   988
## 14329   1   988
## 14330   1   988
## 14331   1   988
## 14332   1   988
## 14333   1   988
## 14334   1   988
## 14335   1   988
## 14336   1   988
## 14337   1   988
## 14338   1   988
## 14339   1   988
## 14340   1   988
## 14341   1   988
## 14342   1   988
## 14343   1   988
## 14344   1   988
## 14345   1   988
## 14346   1   988
## 14347   1   988
## 14348   1   988
## 14349   1   988
## 14350   1   988
## 14351   1   988
## 14352   1   988
## 14353   1   988
## 14354   1   988
## 14355   1   988
## 14356   1   988
## 14357   1   988
## 14358   1   988
## 14359   1   988
## 14360   1   988
## 14361   1   988
## 14362   1   988
## 14363   1   988
## 14364   1   988
## 14365   1   988
## 14366   1   988
## 14367   1   988
## 14368   1   988
## 14369   1   988
## 14370   1   988
## 14371   1   988
## 14372   1   988
## 14373   1   988
## 14374   1   988
## 14375   1   988
## 14376   1   988
## 14377   1   988
## 14378   1   988
## 14379   1   988
## 14380   1   988
## 14381   1   988
## 14382   1   988
## 14383   1   988
## 14384   1   988
## 14385   1   988
## 14386   1   988
## 14387   1   988
## 14388   1   988
## 14389   1   988
## 14390   1   988
## 14391   1   988
## 14392   1   988
## 14393   1   988
## 14394   1   988
## 14395   1   988
## 14396   1   988
## 14397   1   988
## 14398   1   988
## 14399   1   988
## 14400   1   988
## 14401   1   988
## 14402   1   988
## 14403   1   988
## 14404   1   988
## 14405   1   988
## 14406   1   988
## 14407   1   988
## 14408   1   988
## 14409   1   988
## 14410   1   988
## 14411   1   988
## 14412   1   988
## 14413   1   988
## 14414   1   988
## 14415   1   988
## 14416   1   988
## 14417   1   988
## 14418   1   988
## 14419   1   988
## 14420   1   988
## 14421   1   988
## 14422   1   988
## 14423   1   988
## 14424   1   988
## 14425   1   988
## 14426   1   988
## 14427   1   988
## 14428   1   988
## 14429   1   988
## 14430   1   988
## 14431   1   988
## 14432   1   988
## 14433   1   988
## 14434   1   988
## 14435   1   988
## 14436   1   988
## 14437   1   988
## 14438   1   988
## 14439   1   988
## 14440   1   988
## 14441   1   988
## 14442   1   988
## 14443   1   988
## 14444   1   988
## 14445   1   988
## 14446   1   988
## 14447   1   988
## 14448   1   988
## 14449   1   988
## 14450   1   988
## 14451   1   988
## 14452   1   988
## 14453   1   988
## 14454   1   988
## 14455   1   988
## 14456   1   988
## 14457   1   988
## 14458   1   988
## 14459   1   988
## 14460   1   988
## 14461   1   988
## 14462   1   988
## 14463   1   988
## 14464   1   988
## 14465   1   988
## 14466   1   988
## 14467   1   988
## 14468   1   988
## 14469   1   988
## 14470   1   988
## 14471   1   988
## 14472   1   988
## 14473   1   988
## 14474   1   988
## 14475   1   988
## 14476   1   988
## 14477   1   988
## 14478   1   988
## 14479   1   988
## 14480   1   988
## 14481   1   988
## 14482   1   988
## 14483   1   988
## 14484   1   988
## 14485   1   988
## 14486   1   988
## 14487   1   988
## 14488   1   988
## 14489   1   988
## 14490   1   988
## 14491   1   988
## 14492   1   988
## 14493   1   988
## 14494   1   988
## 14495   1   988
## 14496   1   988
## 14497   1   988
## 14498   1   988
## 14499   1   988
## 14500   1   988
## 14501   1   988
## 14502   1   988
## 14503   1   988
## 14504   1   988
## 14505   1   988
## 14506   1   988
## 14507   1   988
## 14508   1   988
## 14509   1   988
## 14510   1   988
## 14511   1   988
## 14512   1   988
## 14513   1   988
## 14514   1   988
## 14515   1   988
## 14516   1   988
## 14517   1   988
## 14518   1   988
## 14519   1   988
## 14520   1   988
## 14521   1   988
## 14522   1   988
## 14523   1   988
## 14524   1   988
## 14525   1   988
## 14526   1   988
## 14527   1   988
## 14528   1   988
## 14529   1   988
## 14530   1   988
## 14531   1   988
## 14532   1   988
## 14533   1   988
## 14534   1   988
## 14535   1   988
## 14536   1   988
## 14537   1   988
## 14538   1   988
## 14539   1   988
## 14540   1   988
## 14541   1   988
## 14542   1   988
## 14543   1   988
## 14544   1   988
## 14545   1   988
## 14546   1   988
## 14547   1   988
## 14548   1   988
## 14549   1   988
## 14550   1   988
## 14551   1   988
## 14552   1   988
## 14553   1   988
## 14554   1   988
## 14555   1   988
## 14556   1   988
## 14557   1   988
## 14558   1   988
## 14559   1   988
## 14560   1   988
## 14561   1   988
## 14562   1   988
## 14563   1   988
## 14564   1   988
## 14565   1   988
## 14566   1   988
## 14567   1   988
## 14568   1   988
## 14569   1   988
## 14570   1   988
## 14571   1   988
## 14572   1   988
## 14573   1   988
## 14574   1   988
## 14575   1   988
## 14576   1   988
## 14577   1   988
## 14578   1   988
## 14579   1   988
## 14580   1   988
## 14581   1   988
## 14582   1   988
## 14583   1   988
## 14584   1   988
## 14585   1   988
## 14586   1   988
## 14587   1   988
## 14588   1   988
## 14589   1   988
## 14590   1   988
## 14591   1   988
## 14592   1   988
## 14593   1   988
## 14594   1   988
## 14595   1   988
## 14596   1   988
## 14597   1   988
## 14598   1   988
## 14599   1   988
## 14600   1   988
## 14601   1   988
## 14602   1   988
## 14603   1   988
## 14604   1   988
## 14605   1   988
## 14606   1   988
## 14607   1   988
## 14608   1   988
## 14609   1   988
## 14610   1   988
## 14611   1   988
## 14612   1   988
## 14613   1   988
## 14614   1   988
## 14615   1   988
## 14616   1   988
## 14617   1   988
## 14618   1   988
## 14619   1   988
## 14620   1   988
## 14621   1   988
## 14622   1   988
## 14623   1   988
## 14624   1   988
## 14625   1   988
## 14626   1   988
## 14627   1   988
## 14628   1   988
## 14629   1   988
## 14630   1   988
## 14631   1   988
## 14632   1   988
## 14633   1   988
## 14634   1   988
## 14635   1   988
## 14636   1   988
## 14637   1   988
## 14638   1   988
## 14639   1   988
## 14640   1   988
## 14641   1   988
## 14642   1   988
## 14643   1   988
## 14644   1   988
## 14645   1   988
## 14646   1   988
## 14647   1   988
## 14648   1   988
## 14649   1   988
## 14650   1   988
## 14651   1   988
## 14652   1   988
## 14653   1   988
## 14654   1   988
## 14655   1   988
## 14656   1   988
## 14657   1   988
## 14658   1   988
## 14659   1   988
## 14660   1   988
## 14661   1   988
## 14662   1   988
## 14663   1   988
## 14664   1   988
## 14665   1   988
## 14666   1   988
## 14667   1   988
## 14668   1   988
## 14669   1   988
## 14670   1   988
## 14671   1   988
## 14672   1   988
freq_by_rank <- syllabus_words %>%
  group_by(syllabus) %>%
  mutate(rank = row_number(),
         `term frequency` = n/total)

freq_by_rank
## # A tibble: 14,672 × 6
## # Groups:   syllabus [35]
##    syllabus                  word        n total  rank `term frequency`
##    <chr>                     <chr>   <int> <int> <int>            <dbl>
##  1 Drexel                    data      113  1970     1           0.0574
##  2 UWisconsin                data       70  1531     1           0.0457
##  3 NYU_DS4E                  data       68  1168     1           0.0582
##  4 UWisc_Madison_Programming project    51  1590     1           0.0321
##  5 Drexel                    science    45  1970     2           0.0228
##  6 NYU_DS4E                  week       45  1168     2           0.0385
##  7 Harvard                   data       44   753     1           0.0584
##  8 UVA_SDS                   data       42   890     1           0.0472
##  9 Washington_State          data       42   878     1           0.0478
## 10 UKentucky                 data       41   967     1           0.0424
## # ℹ 14,662 more rows
corpus_df %>%
  bind_tf_idf(word, syllabus, n)%>%
  arrange(tf_idf)
##                        syllabus                                            word
## 1                        Drexel                                            data
## 2                    UWisconsin                                            data
## 3                      NYU_DS4E                                            data
## 4                        Drexel                                         science
## 5                       Harvard                                            data
## 6                       UVA_SDS                                            data
## 7              Washington_State                                            data
## 8                     UKentucky                                            data
## 9                UniSys_Georgia                                            data
## 10                    Princeton                                            data
## 11                        UUtah                                            data
## 12                  NYU_IntroDS                                            data
## 13             William_and_Mary                                            data
## 14                     NYU_DS4E                                         science
## 15                      UVA_SDS                                         science
## 16                          LSU                                            data
## 17                          UMD                                            data
## 18              Montgomery_Coll                                            data
## 19                   UWisconsin                                         science
## 20       UWisc_Madison_Modeling                                            data
## 21                        Brown                                            data
## 22                      Rutgers                                            data
## 23             Washington_State                                         science
## 24                       UMaine                                            data
## 25                         CUNY                                            data
## 26                   UCBerkeley                                            data
## 27                          LSU                                         science
## 28                       UMaine                                         science
## 29                 USouthampton                                            data
## 30                      Cornell                                            data
## 31                      UZurich                                            data
## 32                   Boston_Uni                                            data
## 33                  NYU_IntroDS                                         science
## 34                   UCSanDiego                                            data
## 35                    UKentucky                                         science
## 36                      Harvard                                         science
## 37                      UZurich                                         science
## 38                      UIU_207                                            data
## 39                     UToronto                                            data
## 40                        UUtah                                         science
## 41                 Georgia_Tech                                            data
## 42    UWisc_Madison_Programming                                         science
## 43                        Brown                                         science
## 44                    Princeton                                         science
## 45                 USouthampton                                         science
## 46                         CUNY                                         science
## 47              Montgomery_Coll                                         science
## 48                      UIU_207                                         science
## 49               UniSys_Georgia                                         science
## 50             William_and_Mary                                         science
## 51                          ASU                                            data
## 52                   Boston_Uni                                         science
## 53                          MIT                                         science
## 54                      Rutgers                                         science
## 55                   UCSanDiego                                         science
## 56                      UIU_107                                            data
## 57    UWisc_Madison_Programming                                            data
## 58                 Georgia_Tech                                         science
## 59                          MIT                                            data
## 60                   UCBerkeley                                         science
## 61                      UIU_107                                         science
## 62                  UWashington                                            data
## 63       UWisc_Madison_Modeling                                         science
## 64                          ASU                                         science
## 65                      Cornell                                         science
## 66                     UVA_Stat                                            data
## 67                          UMD                                         science
## 68                     UToronto                                         science
## 69                     UVA_Stat                                         science
## 70                  UWashington                                         science
## 71                  NYU_IntroDS                                        learning
## 72    UWisc_Madison_Programming                                        learning
## 73                         CUNY                                        learning
## 74                       UMaine                                        learning
## 75                   UWisconsin                                        learning
## 76                      UIU_107                                        learning
## 77                          ASU                                        learning
## 78       UWisc_Madison_Modeling                                        learning
## 79                     UVA_Stat                                        learning
## 80                    UKentucky                                        learning
## 81                   UCSanDiego                                        learning
## 82                   UCSanDiego                                      instructor
## 83              Montgomery_Coll                                        learning
## 84                          MIT                                        learning
## 85                      Cornell                                        learning
## 86                   UCSanDiego                                    introduction
## 87    UWisc_Madison_Programming                                          topics
## 88                  UWashington                                        learning
## 89                   UCSanDiego                                     information
## 90                        UUtah                                            week
## 91                       Drexel                                        learning
## 92                       Drexel                                         grading
## 93                       Drexel                                           world
## 94                          LSU                                        learning
## 95               UniSys_Georgia                                        learning
## 96                        UUtah                                           final
## 97                        UUtah                                        learning
## 98                        UUtah                                         grading
## 99                        UUtah                                           world
## 100                  UCSanDiego                                      university
## 101                     UVA_SDS                                           final
## 102   UWisc_Madison_Programming                                           learn
## 103                  UWisconsin                                          online
## 104                  UWisconsin                                     programming
## 105                  UWisconsin                                            week
## 106                    NYU_DS4E                                        learning
## 107                     UIU_207                                        learning
## 108                  UCSanDiego                                       including
## 109            William_and_Mary                                        learning
## 110                      Drexel                                          python
## 111   UWisc_Madison_Programming                                           world
## 112                         UMD                                     programming
## 113                  UWisconsin                                           world
## 114                     UVA_SDS                                      instructor
## 115                      Drexel                                        complete
## 116                     UVA_SDS                                        learning
## 117                  UCSanDiego                                      statistics
## 118                   Princeton                                      instructor
## 119            William_and_Mary                                    introduction
## 120                      Drexel                                          topics
## 121                USouthampton                                        learning
## 122            Washington_State                                        learning
## 123                  UWisconsin                                        schedule
## 124                     Cornell                                          topics
## 125                      Drexel                                         lecture
## 126                      Drexel                                        lectures
## 127                      Drexel                                          models
## 128                      Drexel                                         provide
## 129                      Drexel                                        teaching
## 130                       UUtah                                          topics
## 131                     UZurich                                          topics
## 132                      Drexel                                           final
## 133                  UCSanDiego                                            free
## 134   UWisc_Madison_Programming                                            free
## 135                  UWisconsin                                         contact
## 136                  UWisconsin                                            free
## 137                   Princeton                                         student
## 138                         UMD                                        learning
## 139                     Harvard                                        learning
## 140                       UUtah                                            real
## 141                      Drexel                                         include
## 142                      Drexel                                          review
## 143                      Drexel                                           staff
## 144                  Boston_Uni                                        learning
## 145                     Cornell                                     information
## 146                  UCSanDiego                                           based
## 147   UWisc_Madison_Programming                                   understanding
## 148                    NYU_DS4E                                         grading
## 149                    NYU_DS4E                                        required
## 150   UWisc_Madison_Programming                                    introduction
## 151                     UZurich                                     information
## 152                         UMD                                            free
## 153                  UWisconsin                                        semester
## 154                       UUtah                                          grades
## 155                      Drexel                                      additional
## 156                      Drexel                                       materials
## 157                      Drexel                                         support
## 158            Washington_State                                            time
## 159                  UWisconsin                                         student
## 160            William_and_Mary                                          online
## 161            William_and_Mary                                            week
## 162                      Drexel                                        syllabus
## 163                     Harvard                                          topics
## 164                  UCSanDiego                                        lectures
## 165                  UCSanDiego                                         machine
## 166                  UCSanDiego                                            real
## 167                  UCSanDiego                                      techniques
## 168                    UToronto                                        analysis
## 169                   Princeton                                     information
## 170                   Princeton                                            time
## 171   UWisc_Madison_Programming                                         provide
## 172   UWisc_Madison_Programming                                      techniques
## 173                     Rutgers                                        learning
## 174                     Cornell                                           learn
## 175                       UUtah                                           basic
## 176                       UUtah                                         section
## 177                       UUtah                                             set
## 178                      Drexel                                          access
## 179                      Drexel                                             day
## 180                      Drexel                                    disabilities
## 181                      Drexel                                            page
## 182                      Drexel                                   visualization
## 183                       UUtah                                     statistical
## 184                       UUtah                                        syllabus
## 185                     UZurich                                          online
## 186                     UZurich                                     statistical
## 187            William_and_Mary                                           world
## 188            Washington_State                                     programming
## 189            Washington_State                                            week
## 190   UWisc_Madison_Programming                                      activities
## 191                     Harvard                                     information
## 192                         UMD                                     description
## 193                         UMD                                        projects
## 194                         UMD                                        teaching
## 195                   Princeton                                          online
## 196                   Princeton                                        syllabus
## 197                   Princeton                                      university
## 198                       Brown                                        learning
## 199                      Drexel                                           apply
## 200                      Drexel                                           exams
## 201                      Drexel                                        language
## 202                      Drexel                                   prerequisites
## 203                      Drexel                                        textbook
## 204                       UUtah                                            page
## 205                       UUtah                                   participation
## 206                       UUtah                                        software
## 207                    NYU_DS4E                                            code
## 208                    NYU_DS4E                                           tools
## 209                         UMD                                        analysis
## 210                  UWisconsin                                          credit
## 211                  UWisconsin                                         include
## 212                  Boston_Uni                                      instructor
## 213                     Cornell                                           world
## 214                Georgia_Tech                                        analysis
## 215                  UCSanDiego                                      additional
## 216                  UCSanDiego                                           basic
## 217                    UToronto                                      instructor
## 218                       UUtah                                        required
## 219                     UZurich                                           world
## 220   UWisc_Madison_Programming                                      additional
## 221   UWisc_Madison_Programming                                         midterm
## 222   UWisc_Madison_Programming                                       resources
## 223   UWisc_Madison_Programming                                             set
## 224   UWisc_Madison_Programming                                      understand
## 225                         UMD                                            time
## 226                     UVA_SDS                                        analysis
## 227                     UVA_SDS                                       including
## 228            William_and_Mary                                            exam
## 229                      Drexel                                        personal
## 230                      Drexel                                            read
## 231                       UUtah                                           exams
## 232                       UUtah                                       submitted
## 233                       UUtah                                        textbook
## 234                         UMD                                  accommodations
## 235                         UMD                                         include
## 236                         UMD                                      regression
## 237                         UMD                                          skills
## 238                   UKentucky                                        schedule
## 239                  UWisconsin                                      experience
## 240                  UWisconsin                                       materials
## 241                  UWisconsin                                      understand
## 242                    NYU_DS4E                                           based
## 243                    NYU_DS4E                                   understanding
## 244                  UWisconsin                                           learn
## 245                  UWisconsin                                      university
## 246                   Princeton                                         grading
## 247                   Princeton                                           world
## 248                 NYU_IntroDS                                          topics
## 249                     Cornell                                        schedule
## 250                     Harvard                                     statistical
## 251                         LSU                                           learn
## 252                         LSU                                     statistical
## 253                         LSU                                            week
## 254                  UCSanDiego                                        assigned
## 255                  UCSanDiego                                        software
## 256   UWisc_Madison_Programming                                        assigned
## 257   UWisc_Madison_Programming                                      discussion
## 258   UWisc_Madison_Programming                                            page
## 259   UWisc_Madison_Programming                                   participation
## 260   UWisc_Madison_Programming                                         website
## 261                     UZurich                                            exam
## 262                     UZurich                                      statistics
## 263                         ASU                                     statistical
## 264                  Boston_Uni                                         student
## 265                      Drexel                                     environment
## 266                      Drexel                                        identify
## 267                      Drexel                                        outcomes
## 268                      Drexel                                        practice
## 269                      Drexel                                         receive
## 270                      Drexel                                        services
## 271                      Drexel                                          social
## 272                      Drexel                                        thinking
## 273                       UUtah                                  classification
## 274                       UUtah                                            labs
## 275                       UUtah                                           times
## 276                         UMD                                          submit
## 277            William_and_Mary                                         contact
## 278            William_and_Mary                                           tools
## 279                  UWisconsin                                        assigned
## 280                  UWisconsin                                            page
## 281                     UVA_SDS                                        schedule
## 282                     Cornell                                      instructor
## 283                         UMD                                           learn
## 284                      Drexel                                        analysis
## 285            Washington_State                                            exam
## 286                    NYU_DS4E                                        teaching
## 287                    UToronto                                    introduction
## 288                    UToronto                                          topics
## 289                  UCSanDiego                                        examples
## 290                  UCSanDiego                                   prerequisites
## 291                  UCSanDiego                                         reading
## 292                  UCSanDiego                                         results
## 293                  UCSanDiego                                        textbook
## 294                Georgia_Tech                                      instructor
## 295   UWisc_Madison_Programming                                        language
## 296   UWisc_Madison_Programming                                         reading
## 297                  UWisconsin                                       including
## 298                   Princeton                                        schedule
## 299                     Harvard                                         grading
## 300                     Harvard                                           world
## 301                      Drexel                                     application
## 302                      Drexel                                      department
## 303                      Drexel                                      determined
## 304                      Drexel                                     discussions
## 305                      Drexel                                          letter
## 306                      Drexel                                     opportunity
## 307                      Drexel                                      submission
## 308                         LSU                                       including
## 309                         LSU                                        required
## 310                         LSU                                           world
## 311                       UUtah                                          common
## 312                       UUtah                                       community
## 313                       UUtah                                       completed
## 314                       UUtah                                         explore
## 315                       UUtah                                           score
## 316            Washington_State                                      instructor
## 317                Georgia_Tech                                        learning
## 318                    NYU_DS4E                                     information
## 319                 NYU_IntroDS                                     information
## 320                 NYU_IntroDS                                            time
## 321                         UMD                                    disabilities
## 322                         UMD                                         website
## 323                         UMD                                         written
## 324                  UWisconsin                                     foundations
## 325                  UWisconsin                                          issues
## 326                  UWisconsin                                       submitted
## 327                  UWisconsin                                          weekly
## 328                     UZurich                                         contact
## 329                     UZurich                                            free
## 330                     UZurich                                           tools
## 331                      Drexel                                           learn
## 332                      Drexel                                          online
## 333            William_and_Mary                                        complete
## 334            William_and_Mary                                        expected
## 335                         ASU                                        analysis
## 336                      Drexel                                           based
## 337                     UVA_SDS                                            code
## 338                    NYU_DS4E                                        material
## 339                    NYU_DS4E                                           notes
## 340            William_and_Mary                                         student
## 341                  UCSanDiego                                         sources
## 342                  UCSanDiego                                         variety
## 343                  UCSanDiego                                             web
## 344                   UKentucky                                        complete
## 345                   UKentucky                                   understanding
## 346   UWisc_Madison_Programming                                           found
## 347   UWisc_Madison_Programming                                        personal
## 348   UWisc_Madison_Programming                                         sources
## 349   UWisc_Madison_Programming                                         variety
## 350                   UKentucky                                          topics
## 351                      Drexel                                           check
## 352                      Drexel                                      completion
## 353                      Drexel                                        designed
## 354                      Drexel                                            drop
## 355                      Drexel                                           error
## 356                      Drexel                                            goal
## 357                      Drexel                                    mathematical
## 358                      Drexel                                         process
## 359                      Drexel                                          random
## 360                      Drexel                                           study
## 361                      Drexel                                       variables
## 362                       UUtah                                           books
## 363                       UUtah                                         courses
## 364                       UUtah                                      determined
## 365                       UUtah                                     discussions
## 366                       UUtah                                          letter
## 367                       UUtah                                         meeting
## 368                       UUtah                                            post
## 369                       UUtah                                       solutions
## 370                       UUtah                                      submission
## 371                       UUtah                                      technology
## 372             Montgomery_Coll                                     programming
## 373             Montgomery_Coll                                     statistical
## 374                   Princeton                                            code
## 375                   Princeton                                            free
## 376                     Cornell                                    introduction
## 377                         UMD                                        examples
## 378                         UMD                                     foundations
## 379                  UWisconsin                                        accepted
## 380                  UWisconsin                                          center
## 381                  UWisconsin                                        modeling
## 382                  UWisconsin                                            note
## 383                  UWisconsin                                        personal
## 384                  UWisconsin                                           times
## 385                  UWisconsin                                         variety
## 386                         MIT                                      instructor
## 387                         LSU                                        schedule
## 388                         LSU                                      statistics
## 389                    UVA_Stat                                           final
## 390                       UUtah                                   understanding
## 391                      UMaine                                         contact
## 392                      Drexel                                      instructor
## 393            William_and_Mary                                         machine
## 394            William_and_Mary                                            real
## 395            William_and_Mary                                        teaching
## 396                Georgia_Tech                                         student
## 397                Georgia_Tech                                          topics
## 398                    NYU_DS4E                                      additional
## 399                    NYU_DS4E                                             set
## 400                  UCSanDiego                                   computational
## 401                  UCSanDiego                                        identify
## 402                  UCSanDiego                                         related
## 403                  UCSanDiego                                          social
## 404                  UCSanDiego                                           solve
## 405                  UCSanDiego                                     submissions
## 406                  UCSanDiego                                        thinking
## 407                  UCSanDiego                                           write
## 408            William_and_Mary                                        analysis
## 409                     UZurich                                    introduction
## 410                     UVA_SDS                                        complete
## 411                     UVA_SDS                                        expected
## 412                     UVA_SDS                                   understanding
## 413                    NYU_DS4E                                          online
## 414                 NYU_IntroDS                                     programming
## 415                 NYU_IntroDS                                        syllabus
## 416   UWisc_Madison_Programming                                          campus
## 417   UWisc_Madison_Programming                                       completed
## 418   UWisc_Madison_Programming                                   computational
## 419   UWisc_Madison_Programming                                          create
## 420   UWisc_Madison_Programming                                        identify
## 421   UWisc_Madison_Programming                                        outcomes
## 422   UWisc_Madison_Programming                                         related
## 423   UWisc_Madison_Programming                                           score
## 424                         ASU                                        schedule
## 425                   UKentucky                                     description
## 426                   UKentucky                                        lectures
## 427                   UKentucky                                          models
## 428                   UKentucky                                        teaching
## 429                   Princeton                                        learning
## 430            Washington_State                                           based
## 431            Washington_State                                   understanding
## 432                   UKentucky                                           final
## 433   UWisc_Madison_Programming                                        concepts
## 434   UWisc_Madison_Programming                                         contact
## 435                      Drexel                                   accommodation
## 436                      Drexel                                      components
## 437                      Drexel                                         covered
## 438                      Drexel                                         explain
## 439                      Drexel                                         perform
## 440                      Drexel                                          person
## 441                      Drexel                                         program
## 442                      Drexel                                          report
## 443                      Drexel                                         request
## 444                      Drexel                                        requires
## 445                      Drexel                                           visit
## 446                       UUtah                                        calendar
## 447                       UUtah                                     communicate
## 448                       UUtah                                      considered
## 449                       UUtah                                          design
## 450                       UUtah                                           error
## 451                       UUtah                                           goals
## 452                       UUtah                                       inference
## 453                       UUtah                                       knowledge
## 454                       UUtah                                         missing
## 455                       UUtah                                         sharing
## 456                       UUtah                                           study
## 457                       UUtah                                       technical
## 458                       UUtah                                       variables
## 459            Washington_State                                    introduction
## 460            Washington_State                                          topics
## 461   UWisc_Madison_Programming                                           final
## 462                     Harvard                                      instructor
## 463                         UMD                                            exam
## 464                         UMD                                         project
## 465                         UMD                                        schedule
## 466                         LSU                                      instructor
## 467                     Cornell                                     description
## 468                     Cornell                                            real
## 469                         UMD                                   communication
## 470                         UMD                                      encouraged
## 471                         UMD                                         sources
## 472                  UWisconsin                                          campus
## 473                  UWisconsin                                       completed
## 474                  UWisconsin                                     environment
## 475                  UWisconsin                                         explore
## 476                  UWisconsin                                          posted
## 477                  UWisconsin                                          social
## 478                  UWisconsin                                           solve
## 479                   Princeton                                        semester
## 480                  Boston_Uni                                     statistical
## 481                  Boston_Uni                                        syllabus
## 482                  Boston_Uni                                            week
## 483                  UWisconsin                                            code
## 484             Montgomery_Coll                                         grading
## 485             Montgomery_Coll                                           world
## 486                        CUNY                                         student
## 487                  UWisconsin                                        analysis
## 488                  UCSanDiego                                           books
## 489                  UCSanDiego                                       component
## 490                  UCSanDiego                                         courses
## 491                  UCSanDiego                                     discussions
## 492                  UCSanDiego                                        includes
## 493                  UCSanDiego                                     opportunity
## 494                  UCSanDiego                                           prior
## 495                  UCSanDiego                                           scale
## 496                  UCSanDiego                                          source
## 497                  UCSanDiego                                       standards
## 498                  UCSanDiego                                           weeks
## 499                       UUtah                                         lecture
## 500                     UZurich                                         lecture
## 501                     UZurich                                        lectures
## 502                     UZurich                                            real
## 503                     UZurich                                        teaching
## 504                     Harvard                                            free
## 505                     Harvard                                           tools
## 506                    NYU_DS4E                                        assigned
## 507                    NYU_DS4E                                      discussion
## 508                    NYU_DS4E                                          linear
## 509                    NYU_DS4E                                            page
## 510            William_and_Mary                                         include
## 511                         LSU                                            free
## 512                         LSU                                           tools
## 513                      UMaine                                           based
## 514                      UMaine                                        expected
## 515                      Drexel                                  accommodations
## 516                      Drexel                                          credit
## 517                      Drexel                                           notes
## 518                      Drexel                                          skills
## 519   UWisc_Madison_Programming                                         meeting
## 520   UWisc_Madison_Programming                                     opportunity
## 521   UWisc_Madison_Programming                                        overview
## 522   UWisc_Madison_Programming                                          source
## 523   UWisc_Madison_Programming                                       standards
## 524                    UToronto                                           learn
## 525                    UToronto                                     statistical
## 526                  UCSanDiego                                     programming
## 527                     UVA_SDS                                          models
## 528                     UVA_SDS                                         provide
## 529                      UMaine                                          topics
## 530                   UKentucky                                          grades
## 531                   UKentucky                                         include
## 532                   UKentucky                                        material
## 533                   UKentucky                                           notes
## 534                   UKentucky                                      regression
## 535                   UKentucky                                           staff
## 536   UWisc_Madison_Programming                                        syllabus
## 537                  UCSanDiego                                   understanding
## 538                      Drexel                                        advanced
## 539                      Drexel                                        approach
## 540                      Drexel                                            core
## 541                      Drexel                                      coursework
## 542                      Drexel                                            form
## 543                      Drexel                                           level
## 544                      Drexel                                        sciences
## 545                      Drexel                                          spring
## 546                      Drexel                                       statement
## 547                      Drexel                                            talk
## 548                       UUtah                                   accommodation
## 549                       UUtah                                       analyzing
## 550                       UUtah                                         details
## 551                       UUtah                                      evaluation
## 552                       UUtah                                           focus
## 553                       UUtah                                          format
## 554                       UUtah                                            home
## 555                       UUtah                                           ideas
## 556                       UUtah                                        internet
## 557                       UUtah                                         program
## 558                       UUtah                                        requires
## 559                       UUtah                                        resource
## 560            Washington_State                                     description
## 561            Washington_State                                        lectures
## 562            Washington_State                                         methods
## 563                     Rutgers                                         student
## 564                      Drexel                                        schedule
## 565                         ASU                                            code
## 566                         ASU                                         contact
## 567                         ASU                                            free
## 568   UWisc_Madison_Programming                                        expected
## 569                 NYU_IntroDS                                       including
## 570                  UWisconsin                                           books
## 571                  UWisconsin                                         courses
## 572                  UWisconsin                                        includes
## 573                  UWisconsin                                     opportunity
## 574                  UWisconsin                                           prior
## 575                  UWisconsin                                           scale
## 576                  UWisconsin                                       standards
## 577                  UWisconsin                                      submission
## 578                         UMD                                          create
## 579                         UMD                                       encourage
## 580                         UMD                                     environment
## 581                         UMD                                         explore
## 582                         UMD                                        identify
## 583                         UMD                                         receive
## 584                         UMD                                          social
## 585                     Cornell                                           notes
## 586                     Cornell                                          review
## 587                   Princeton                                     description
## 588                   Princeton                                        lectures
## 589                   Princeton                                            real
## 590                  UWisconsin                                     statistical
## 591                   Princeton                                           final
## 592                         UMD                                           final
## 593                  UCSanDiego                                        calendar
## 594                  UCSanDiego                                      completion
## 595                  UCSanDiego                                           hands
## 596                  UCSanDiego                                       knowledge
## 597                    NYU_DS4E                                    introduction
## 598                    NYU_DS4E                                           apply
## 599                    NYU_DS4E                                        examples
## 600                    NYU_DS4E                                        textbook
## 601                       UUtah                                         include
## 602                       UUtah                                          review
## 603                     UZurich                                        material
## 604                  Boston_Uni                                        analysis
## 605            William_and_Mary                                         section
## 606            William_and_Mary                                             set
## 607            William_and_Mary                                          submit
## 608            William_and_Mary                                         support
## 609   UWisc_Madison_Programming                                        calendar
## 610   UWisc_Madison_Programming                                     communicate
## 611   UWisc_Madison_Programming                                           error
## 612   UWisc_Madison_Programming                                           extra
## 613   UWisc_Madison_Programming                                            goal
## 614   UWisc_Madison_Programming                                           goals
## 615   UWisc_Madison_Programming                                         missing
## 616   UWisc_Madison_Programming                                           short
## 617   UWisc_Madison_Programming                                       technical
## 618   UWisc_Madison_Programming                                       variables
## 619                  Boston_Uni                                         grading
## 620                  Boston_Uni                                           world
## 621                      Drexel                                       resources
## 622                      Drexel                                         section
## 623                      Drexel                                          submit
## 624                      Drexel                                      understand
## 625                      UMaine                                         machine
## 626                      UMaine                                          models
## 627                     Harvard                                        complete
## 628                     Harvard                                        expected
## 629                     Harvard                                        semester
## 630                         LSU                                        complete
## 631                         LSU                                        semester
## 632            William_and_Mary                                     programming
## 633            William_and_Mary                                        syllabus
## 634                      Drexel                                     programming
## 635                      Drexel                                     statistical
## 636                      UMaine                                           final
## 637                     UIU_207                                    introduction
## 638                     UVA_SDS                                          credit
## 639                     UVA_SDS                                         include
## 640                   UKentucky                                         support
## 641                      Drexel                                           basis
## 642                      Drexel                                   circumstances
## 643                      Drexel                                        cleaning
## 644                      Drexel                                           cross
## 645                      Drexel                                         current
## 646                      Drexel                                           files
## 647                      Drexel                                          friday
## 648                      Drexel                                           intro
## 649                      Drexel                                          method
## 650                      Drexel                                     preparation
## 651                      Drexel                                        requests
## 652                      Drexel                                    requirements
## 653                      Drexel                                         summary
## 654                       UUtah                                        advanced
## 655                       UUtah                                         algebra
## 656                       UUtah                                        approach
## 657                       UUtah                                            core
## 658                       UUtah                                     exploratory
## 659                       UUtah                                        feedback
## 660                       UUtah                                      individual
## 661                       UUtah                                            life
## 662                       UUtah                                     participate
## 663                       UUtah                                        solution
## 664                       UUtah                                       statement
## 665                       UUtah                                            talk
## 666                       UUtah                                             top
## 667            Washington_State                                          credit
## 668            Washington_State                                          grades
## 669            Washington_State                                          review
## 670            Washington_State                                           staff
## 671                   UKentucky                                           learn
## 672                    UToronto                                           final
## 673                  UWisconsin                                           check
## 674                  UWisconsin                                      clustering
## 675                  UWisconsin                                     communicate
## 676                  UWisconsin                                        designed
## 677                  UWisconsin                                            list
## 678                  UWisconsin                                           model
## 679                  UWisconsin                                          system
## 680                  UWisconsin                                       technical
## 681                         UMD                                        addition
## 682                         UMD                                     application
## 683                         UMD                                      determined
## 684                         UMD                                       standards
## 685                    UToronto                                         grading
## 686                    UToronto                                       including
## 687   UWisc_Madison_Programming                                            real
## 688                      Drexel                                        concepts
## 689                      Drexel                                         contact
## 690                     Cornell                                           basic
## 691                     Cornell                                      experience
## 692                     Cornell                                         support
## 693                     Cornell                                      understand
## 694   UWisc_Madison_Programming                                       including
## 695                     Cornell                                          online
## 696                     Cornell                                     programming
## 697                     Cornell                                      university
## 698                   Princeton                                            late
## 699                   Princeton                                        material
## 700                  UCSanDiego                                   accommodation
## 701                  UCSanDiego                                         analyze
## 702                  UCSanDiego                                          expect
## 703                  UCSanDiego                                         perform
## 704                  UCSanDiego                                        resource
## 705                         UMD                                           based
## 706      UWisc_Madison_Modeling                                    introduction
## 707      UWisc_Madison_Modeling                                         student
## 708      UWisc_Madison_Modeling                                          topics
## 709                    NYU_DS4E                                           found
## 710   UWisc_Madison_Programming                                       analyzing
## 711   UWisc_Madison_Programming                                           build
## 712   UWisc_Madison_Programming                                         college
## 713   UWisc_Madison_Programming                                      components
## 714   UWisc_Madison_Programming                                          expect
## 715   UWisc_Madison_Programming                                          format
## 716   UWisc_Madison_Programming                                        internet
## 717   UWisc_Madison_Programming                                        relevant
## 718   UWisc_Madison_Programming                                          report
## 719   UWisc_Madison_Programming                                         request
## 720   UWisc_Madison_Programming                                        resource
## 721   UWisc_Madison_Programming                                           visit
## 722            William_and_Mary                                            date
## 723            William_and_Mary                                    disabilities
## 724            William_and_Mary                                      discussion
## 725            William_and_Mary                                         written
## 726                  UWisconsin                                     description
## 727                  UWisconsin                                         machine
## 728                  UWisconsin                                         methods
## 729                  UWisconsin                                         provide
## 730                  UWisconsin                                      techniques
## 731                       UUtah                                      experience
## 732                       UUtah                                      understand
## 733                      Drexel                                         discuss
## 734                      Drexel                                   participation
## 735                      Drexel                                         website
## 736                Georgia_Tech                                     statistical
## 737                Georgia_Tech                                        syllabus
## 738                  UWisconsin                                         grading
## 739                      UMaine                                  accommodations
## 740                      UMaine                                      activities
## 741                      UMaine                                          credit
## 742                      UMaine                                         include
## 743                      UMaine                                        material
## 744                         MIT                                     information
## 745                         MIT                                            time
## 746                     Harvard                                     description
## 747                         LSU                                        lectures
## 748                         LSU                                          models
## 749                         LSU                                        projects
## 750                         LSU                                         provide
## 751                   UKentucky                                          access
## 752                   UKentucky                                        assigned
## 753                   UKentucky                                    disabilities
## 754                   UKentucky                                            page
## 755                   UKentucky                                        software
## 756                     UVA_SDS                                      experience
## 757                       UUtah                                         applied
## 758                       UUtah                                           avoid
## 759                       UUtah                                           basis
## 760                       UUtah                                   circumstances
## 761                       UUtah                                      classmates
## 762                       UUtah                                          coding
## 763                       UUtah                                           cross
## 764                       UUtah                                        notebook
## 765                       UUtah                                         prepare
## 766                       UUtah                                         require
## 767                       UUtah                                         testing
## 768                      Drexel                                         central
## 769                      Drexel                                       decisions
## 770                      Drexel                                        describe
## 771                      Drexel                                          modern
## 772                      Drexel                                      procedures
## 773                      Drexel                                       professor
## 774                      Drexel                                           range
## 775                      Drexel                                            role
## 776                      Drexel                                          theory
## 777                      Drexel                                          vector
## 778                  Boston_Uni                                        schedule
## 779                  Boston_Uni                                      statistics
## 780                    UToronto                                        learning
## 781                         UMD                                   accessibility
## 782                         UMD                                         classes
## 783                         UMD                                     communicate
## 784                         UMD                                      considered
## 785                         UMD                                        designed
## 786                         UMD                                            drop
## 787                         UMD                                            goal
## 788                         UMD                                           goals
## 789                         UMD                                            list
## 790                         UMD                                    mathematical
## 791                         UMD                                         privacy
## 792                         UMD                                          system
## 793                  UWisconsin                                   accommodation
## 794                  UWisconsin                                          change
## 795                  UWisconsin                                      components
## 796                  UWisconsin                                            home
## 797                  UWisconsin                                        internet
## 798                  UWisconsin                                        requires
## 799                  UWisconsin                                        resource
## 800                  UWisconsin                                           visit
## 801            Washington_State                                      additional
## 802            Washington_State                                      experience
## 803            Washington_State                                          submit
## 804                  UCSanDiego                                      activities
## 805                  UCSanDiego                                          credit
## 806                  UCSanDiego                                          review
## 807                  UCSanDiego                                          skills
## 808            William_and_Mary                                         grading
## 809            William_and_Mary                                       including
## 810            William_and_Mary                                        required
## 811            Washington_State                                           learn
## 812                     Cornell                                          access
## 813                     Cornell                                    disabilities
## 814                     Cornell                                            page
## 815                     Cornell                                         website
## 816                     Cornell                                         written
## 817   UWisc_Madison_Programming                                         include
## 818   UWisc_Madison_Programming                                           notes
## 819   UWisc_Madison_Programming                                          review
## 820   UWisc_Madison_Programming                                           staff
## 821                         ASU                                     description
## 822                         ASU                                        teaching
## 823                    UVA_Stat                                         student
## 824                  UWisconsin                                     information
## 825                      Drexel                                   understanding
## 826                    UToronto                                            exam
## 827                    UToronto                                        schedule
## 828                  UCSanDiego                                        advanced
## 829                  UCSanDiego                                         algebra
## 830                  UCSanDiego                                            core
## 831                  UCSanDiego                                      coursework
## 832                  UCSanDiego                                            form
## 833                  UCSanDiego                                           guide
## 834                  UCSanDiego                                         jupyter
## 835                  UCSanDiego                                          laptop
## 836                  UCSanDiego                                            life
## 837                  UCSanDiego                                          monday
## 838                  UCSanDiego                                           rules
## 839                  UCSanDiego                                          school
## 840                  UCSanDiego                                        solution
## 841                  UCSanDiego                                        standard
## 842                  UCSanDiego                                         subject
## 843                  UCSanDiego                                            talk
## 844                  UCSanDiego                                             top
## 845                  UCSanDiego                                         tuesday
## 846                  UCSanDiego                                           types
## 847                   UKentucky                                       including
## 848                   Princeton                                           basic
## 849                   Princeton                                         support
## 850                    NYU_DS4E                                          common
## 851                    NYU_DS4E                                       encourage
## 852                    NYU_DS4E                                         explore
## 853                    NYU_DS4E                                        outcomes
## 854                    NYU_DS4E                                          social
## 855   UWisc_Madison_Programming                                             2nd
## 856   UWisc_Madison_Programming                                      coursework
## 857   UWisc_Madison_Programming                                            feel
## 858   UWisc_Madison_Programming                                            life
## 859   UWisc_Madison_Programming                                          monday
## 860   UWisc_Madison_Programming                                           rules
## 861   UWisc_Madison_Programming                                        solution
## 862   UWisc_Madison_Programming                                            talk
## 863            William_and_Mary                                          topics
## 864                         UMD                                          models
## 865            William_and_Mary                                           apply
## 866            William_and_Mary                                           dates
## 867            William_and_Mary                                          issues
## 868            William_and_Mary                                        language
## 869            William_and_Mary                                          weekly
## 870                      Drexel                                       submitted
## 871                       UUtah                                          access
## 872                       UUtah                                        assigned
## 873                       UUtah                                    disabilities
## 874                       UUtah                                         discuss
## 875                    NYU_DS4E                                         contact
## 876                    NYU_DS4E                                            free
## 877                 NYU_IntroDS                                         contact
## 878                 NYU_IntroDS                                           tools
## 879                     UZurich                                            page
## 880                     UZurich                                         written
## 881                        CUNY                                          online
## 882                        CUNY                                        syllabus
## 883                        CUNY                                            week
## 884                  UWisconsin                                          grades
## 885                  UWisconsin                                        material
## 886                     UZurich                                        learning
## 887                     Cornell                                        analysis
## 888                    NYU_DS4E                                           final
## 889                      UMaine                                      experience
## 890                      UMaine                                         section
## 891                      UMaine                                          submit
## 892                   UKentucky                                           dates
## 893                   UKentucky                                         reading
## 894                     Harvard                                  accommodations
## 895                     Harvard                                      activities
## 896                     Harvard                                          credit
## 897                     Harvard                                         include
## 898                     Harvard                                          skills
## 899                     UVA_SDS                                          access
## 900                     UVA_SDS                                      discussion
## 901                     UVA_SDS                                            page
## 902                       UUtah                                         account
## 903                       UUtah                                          action
## 904                       UUtah                                         aspects
## 905                       UUtah                                        describe
## 906                       UUtah                                      extensions
## 907                       UUtah                                        findings
## 908                       UUtah                                          follow
## 909                       UUtah                                          future
## 910                       UUtah                                          impact
## 911                       UUtah                                         learned
## 912                       UUtah                                          modern
## 913                       UUtah                                      permission
## 914                       UUtah                                            plan
## 915                       UUtah                                       preferred
## 916                       UUtah                                           press
## 917                       UUtah                                      principles
## 918                       UUtah                                           reach
## 919                       UUtah                                          theory
## 920                         LSU                                      activities
## 921                         LSU                                          grades
## 922                         LSU                                           notes
## 923                         LSU                                          skills
## 924                         LSU                                           staff
## 925                      Drexel                                         control
## 926                      Drexel                                       detection
## 927                      Drexel                                     development
## 928                      Drexel                                          driven
## 929                      Drexel                                     effectively
## 930                      Drexel                                    expectations
## 931                      Drexel                                            main
## 932                      Drexel                                           makes
## 933                      Drexel                                          mining
## 934                      Drexel                                      plagiarism
## 935                      Drexel                                       practices
## 936                      Drexel                                        recorded
## 937                      Drexel                                           refer
## 938                      Drexel                                          survey
## 939                      Drexel                                           video
## 940                      Drexel                                       wrangling
## 941                         UMD                                       analyzing
## 942                         UMD                                           build
## 943                         UMD                                         covered
## 944                         UMD                                          format
## 945                         UMD                                           ideas
## 946                         UMD                                      management
## 947                         UMD                                        requires
## 948                         UMD                                        resource
## 949                         UMD                                            site
## 950                         UMD                                           visit
## 951                  UWisconsin                                      coursework
## 952                  UWisconsin                                         ethical
## 953                  UWisconsin                                      individual
## 954                  UWisconsin                                          monday
## 955                  UWisconsin                                      objectives
## 956                  UWisconsin                                        sciences
## 957                  UWisconsin                                       statement
## 958                  UWisconsin                                             top
## 959                  UWisconsin                                           total
## 960            Washington_State                                            date
## 961            Washington_State                                    disabilities
## 962            Washington_State                                   participation
## 963            Washington_State                                        software
## 964            Washington_State                                         written
## 965                     Rutgers                                          online
## 966                     Rutgers                                     programming
## 967                  UCSanDiego                                      experience
## 968                  UCSanDiego                                             set
## 969                  UCSanDiego                                      understand
## 970                Georgia_Tech                                        required
## 971             Montgomery_Coll                                        complete
## 972      UWisc_Madison_Modeling                                            time
## 973                  Boston_Uni                                           tools
## 974                     Cornell                                           dates
## 975                     Cornell                                        examples
## 976                     Cornell                                   prerequisites
## 977                     Cornell                                         reading
## 978                     Cornell                                        readings
## 979   UWisc_Madison_Programming                                      experience
## 980   UWisc_Madison_Programming                                         section
## 981   UWisc_Madison_Programming                                          submit
## 982                  UCSanDiego                                           learn
## 983                         MIT                                           learn
## 984                         MIT                                        syllabus
## 985                         ASU                                      activities
## 986                         ASU                                          grades
## 987                         ASU                                         include
## 988                         ASU                                            late
## 989                       UUtah                                        complete
## 990                       UUtah                                        expected
## 991                  UCSanDiego                                         applied
## 992                  UCSanDiego                                          choose
## 993                  UCSanDiego                                         dataset
## 994                  UCSanDiego                                          health
## 995                  UCSanDiego                                       introduce
## 996                  UCSanDiego                                          pandas
## 997                  UCSanDiego                                     preparation
## 998                  UCSanDiego                                         require
## 999                  UCSanDiego                                       scheduled
## 1000                 UCSanDiego                                        specific
## 1001                 UCSanDiego                                         version
## 1002  UWisc_Madison_Programming                                      university
## 1003                   NYU_DS4E                                        addition
## 1004                   NYU_DS4E                                       computing
## 1005                   NYU_DS4E                                         courses
## 1006                   NYU_DS4E                                       exercises
## 1007                   NYU_DS4E                                          letter
## 1008                   NYU_DS4E                                            post
## 1009                   NYU_DS4E                                           prior
## 1010                   NYU_DS4E                                           scale
## 1011                   NYU_DS4E                                       solutions
## 1012           William_and_Mary                                      statistics
## 1013                     Drexel                                      statistics
## 1014  UWisc_Madison_Programming                                      assessment
## 1015  UWisc_Madison_Programming                                           avoid
## 1016  UWisc_Madison_Programming                                           basis
## 1017  UWisc_Madison_Programming                                   circumstances
## 1018  UWisc_Madison_Programming                                         edition
## 1019  UWisc_Madison_Programming                                        evaluate
## 1020  UWisc_Madison_Programming                                           files
## 1021  UWisc_Madison_Programming                                          health
## 1022  UWisc_Madison_Programming                                      processing
## 1023  UWisc_Madison_Programming                                        programs
## 1024  UWisc_Madison_Programming                                     recommended
## 1025  UWisc_Madison_Programming                                    requirements
## 1026  UWisc_Madison_Programming                                            type
## 1027               USouthampton                                        analysis
## 1028           Washington_State                                           final
## 1029                      UUtah                                    introduction
## 1030           William_and_Mary                                          center
## 1031           William_and_Mary                                        personal
## 1032           William_and_Mary                                           times
## 1033           William_and_Mary                                         variety
## 1034           William_and_Mary                                             web
## 1035           Washington_State                                         grading
## 1036           Washington_State                                       including
## 1037                      UUtah                                      instructor
## 1038                     Drexel                                           found
## 1039                     Drexel                                        modeling
## 1040                     Drexel                                         variety
## 1041                   UToronto                                         contact
## 1042                   UToronto                                            free
## 1043                      UUtah                                           dates
## 1044                      UUtah                                        examples
## 1045                      UUtah                                   prerequisites
## 1046                      UUtah                                         reading
## 1047                      UUtah                                        readings
## 1048                    UZurich                                           apply
## 1049                    UZurich                                   prerequisites
## 1050                    UZurich                                         reading
## 1051                        UMD                                      activities
## 1052                        UMD                                          grades
## 1053                 UCBerkeley                                     information
## 1054                 UCBerkeley                                            time
## 1055                 UWisconsin                                       resources
## 1056                   NYU_DS4E                                        complete
## 1057                NYU_IntroDS                                           based
## 1058                NYU_IntroDS                                        expected
## 1059                NYU_IntroDS                                   understanding
## 1060                    UVA_SDS                                          topics
## 1061                     UMaine                                        assigned
## 1062                     UMaine                                             day
## 1063                     UMaine                                            page
## 1064                     UMaine                                   visualization
## 1065                     UMaine                                         written
## 1066                  UKentucky                                   communication
## 1067                  UKentucky                                        modeling
## 1068                  UKentucky                                           times
## 1069                  UKentucky                                         variety
## 1070                  UKentucky                                             web
## 1071                    UVA_SDS                                           dates
## 1072                    UVA_SDS                                       submitted
## 1073                    Harvard                                      additional
## 1074                    Harvard                                       materials
## 1075                    Harvard                                       resources
## 1076                    Harvard                                      understand
## 1077                        UMD                                        advanced
## 1078                        UMD                                        approach
## 1079                        UMD                                        decision
## 1080                        UMD                                         ethical
## 1081                        UMD                                     exploratory
## 1082                        UMD                                           guide
## 1083                        UMD                                      individual
## 1084                        UMD                                           level
## 1085                        UMD                                      objectives
## 1086                        UMD                                        question
## 1087                        UMD                                          spring
## 1088                        UMD                                         subject
## 1089                        UMD                                             top
## 1090                        UMD                                           total
## 1091                      UUtah                                        approved
## 1092                      UUtah                                         control
## 1093                      UUtah                                     development
## 1094                      UUtah                                          direct
## 1095                      UUtah                                        download
## 1096                      UUtah                                          driven
## 1097                      UUtah                                              ds
## 1098                      UUtah                                          entire
## 1099                      UUtah                                           field
## 1100                      UUtah                                            live
## 1101                      UUtah                                           makes
## 1102                      UUtah                                           meets
## 1103                      UUtah                                    presentation
## 1104                      UUtah                                      previously
## 1105                      UUtah                                          public
## 1106                      UUtah                                           refer
## 1107                      UUtah                                       reference
## 1108                      UUtah                                           start
## 1109                      UUtah                                           topic
## 1110                      UUtah                                           video
## 1111                      UUtah                                  visualizations
## 1112                      UUtah                                           words
## 1113                      UUtah                                       wrangling
## 1114                        LSU                                      additional
## 1115                        LSU                                      experience
## 1116                        LSU                                         section
## 1117                        LSU                                             set
## 1118                        LSU                                          submit
## 1119                        LSU                                      understand
## 1120           Washington_State                                         student
## 1121                 UWisconsin                                         allowed
## 1122                 UWisconsin                                      assessment
## 1123                 UWisconsin                                        cheating
## 1124                 UWisconsin                                          choose
## 1125                 UWisconsin                                            copy
## 1126                 UWisconsin                                     fundamental
## 1127                 UWisconsin                                     instructors
## 1128                 UWisconsin                                     preparation
## 1129                 UWisconsin                                      processing
## 1130                 UWisconsin                                    requirements
## 1131                 UWisconsin                                        sections
## 1132                 UWisconsin                                         summary
## 1133                   UVA_Stat                                            time
## 1134                  Princeton                                        required
## 1135                    UIU_207                                           learn
## 1136                    UIU_207                                          online
## 1137                    UIU_207                                     programming
## 1138                    UIU_207                                        syllabus
## 1139                    UIU_207                                            week
## 1140                NYU_IntroDS                                    introduction
## 1141           Washington_State                                           dates
## 1142           Washington_State                                        examples
## 1143           Washington_State                                   prerequisites
## 1144           Washington_State                                       submitted
## 1145           Washington_State                                        textbook
## 1146                    Cornell                                         project
## 1147                    Cornell                                      statistics
## 1148                    Harvard                                            week
## 1149                     Drexel                                        chapters
## 1150                     Drexel                                           cheat
## 1151                     Drexel                                        creating
## 1152                     Drexel                                      definition
## 1153                     Drexel                                      harassment
## 1154                     Drexel                                    individually
## 1155                     Drexel                                        intended
## 1156                     Drexel                                       interpret
## 1157                     Drexel                                           james
## 1158                     Drexel                                          length
## 1159                     Drexel                                            mark
## 1160                     Drexel                                             pre
## 1161                     Drexel                                         product
## 1162                     Drexel                                       providing
## 1163                     Drexel                                      requesting
## 1164                     Drexel                                       scientist
## 1165                     Drexel                                      successful
## 1166                     Drexel                                       tentative
## 1167                     Drexel                                            view
## 1168                     Drexel                                          weight
## 1169                     Drexel                                            wide
## 1170                        LSU                                      university
## 1171                 UCSanDiego                                             day
## 1172                    Cornell                                   communication
## 1173                    Cornell                                      encouraged
## 1174                    Cornell                                           found
## 1175                    Cornell                                        personal
## 1176                    Cornell                                         sources
## 1177           William_and_Mary                                      instructor
## 1178                     Drexel                                     information
## 1179                    UIU_107                                           learn
## 1180                    UIU_107                                          online
## 1181                    UIU_107                                     programming
## 1182                    UIU_107                                        syllabus
## 1183                    UIU_107                                      university
## 1184            Montgomery_Coll                                     description
## 1185                 UWisconsin                                        concepts
## 1186                 UWisconsin                                           tools
## 1187                 Boston_Uni                                        semester
## 1188                     UMaine                                         grading
## 1189                     UMaine                                           world
## 1190                  Princeton                                          topics
## 1191                        ASU                                           basic
## 1192                        ASU                                       materials
## 1193                        ASU                                         midterm
## 1194                        ASU                                         section
## 1195                        UMD                                          topics
## 1196                   NYU_DS4E                                        calendar
## 1197                   NYU_DS4E                                         classes
## 1198                   NYU_DS4E                                     communicate
## 1199                   NYU_DS4E                                          design
## 1200                   NYU_DS4E                                        designed
## 1201                   NYU_DS4E                                            drop
## 1202                   NYU_DS4E                                           extra
## 1203                   NYU_DS4E                                         process
## 1204                   NYU_DS4E                                            sets
## 1205                   NYU_DS4E                                           short
## 1206                   NYU_DS4E                                           study
## 1207                   NYU_DS4E                                       variables
## 1208                 UCSanDiego                                          action
## 1209                 UCSanDiego                                            book
## 1210                 UCSanDiego                                          github
## 1211                 UCSanDiego                                         honesty
## 1212                 UCSanDiego                                     inferential
## 1213                 UCSanDiego                                            john
## 1214                 UCSanDiego                                        location
## 1215                 UCSanDiego                                      permission
## 1216                 UCSanDiego                                            plan
## 1217                 UCSanDiego                                         primary
## 1218                 UCSanDiego                                      principles
## 1219                 UCSanDiego                                            role
## 1220                 UCSanDiego                                    specifically
## 1221                 UCSanDiego                                          status
## 1222                 UCSanDiego                                       wednesday
## 1223               Georgia_Tech                                        schedule
## 1224                  Princeton                                           dates
## 1225                  Princeton                                          issues
## 1226                  Princeton                                       submitted
## 1227                     Drexel                                         student
## 1228                      UUtah                                        computer
## 1229                      UUtah                                         machine
## 1230                      UUtah                                      techniques
## 1231                    Rutgers                                        analysis
## 1232                      UUtah                                      statistics
## 1233           William_and_Mary                                          campus
## 1234           William_and_Mary                                          common
## 1235           William_and_Mary                                       community
## 1236           William_and_Mary                                   computational
## 1237           William_and_Mary                                          create
## 1238           William_and_Mary                                         explore
## 1239           William_and_Mary                                          graded
## 1240           William_and_Mary                                         receive
## 1241  UWisc_Madison_Programming                                         account
## 1242  UWisc_Madison_Programming                                         aspects
## 1243  UWisc_Madison_Programming                                      assistance
## 1244  UWisc_Madison_Programming                                            book
## 1245  UWisc_Madison_Programming                                         central
## 1246  UWisc_Madison_Programming                                        comments
## 1247  UWisc_Madison_Programming                                        document
## 1248  UWisc_Madison_Programming                                       functions
## 1249  UWisc_Madison_Programming                                          future
## 1250  UWisc_Madison_Programming                                        meetings
## 1251  UWisc_Madison_Programming                                       preferred
## 1252  UWisc_Madison_Programming                                    professional
## 1253  UWisc_Madison_Programming                                           range
## 1254  UWisc_Madison_Programming                                          simple
## 1255  UWisc_Madison_Programming                                       wednesday
## 1256                 Boston_Uni                                    introduction
## 1257                     Drexel                                       community
## 1258                     Drexel                                          graded
## 1259                     Drexel                                          grades
## 1260                      UUtah                                        accepted
## 1261                      UUtah                                      encouraged
## 1262                      UUtah                                           found
## 1263                      UUtah                                            note
## 1264                      UUtah                                             web
## 1265                    UZurich                                           found
## 1266                    UZurich                                             web
## 1267                        UMD                                             set
## 1268     UWisc_Madison_Modeling                                     programming
## 1269                        MIT                                         grading
## 1270                        MIT                                       including
## 1271                        MIT                                        required
## 1272                        MIT                                           world
## 1273                 UWisconsin                                          access
## 1274                 UWisconsin                                            date
## 1275                 UWisconsin                                             day
## 1276                 UWisconsin                                    disabilities
## 1277                  UKentucky                                          campus
## 1278                  UKentucky                                       community
## 1279                  UKentucky                                       completed
## 1280                  UKentucky                                       encourage
## 1281                  UKentucky                                     environment
## 1282                  UKentucky                                          posted
## 1283                  UKentucky                                           score
## 1284                  UKentucky                                           write
## 1285                     UMaine                                     foundations
## 1286                     UMaine                                        language
## 1287                     UMaine                                   prerequisites
## 1288                     UMaine                                         reading
## 1289                     UMaine                                        readings
## 1290                     UMaine                                         results
## 1291                     UMaine                                        textbook
## 1292                     UMaine                                          weekly
## 1293  UWisc_Madison_Programming                                        required
## 1294                    UVA_SDS                                        accepted
## 1295                    UVA_SDS                                         content
## 1296                    UVA_SDS                                      encouraged
## 1297                    UVA_SDS                                            read
## 1298                    UVA_SDS                                           times
## 1299                    UVA_SDS                                             web
## 1300                 UCSanDiego                                        expected
## 1301           Washington_State                                        schedule
## 1302                     Drexel                                        required
## 1303                   NYU_DS4E                                        computer
## 1304                   NYU_DS4E                                          models
## 1305                   NYU_DS4E                                      techniques
## 1306                NYU_IntroDS                                     description
## 1307                NYU_IntroDS                                        projects
## 1308                NYU_IntroDS                                         provide
## 1309                NYU_IntroDS                                        teaching
## 1310                    Harvard                                        assigned
## 1311                    Harvard                                    disabilities
## 1312                    Harvard                                   participation
## 1313                    Harvard                                        software
## 1314                    Harvard                                         website
## 1315                        UMD                                         dataset
## 1316                        UMD                                          health
## 1317                        UMD                                          pandas
## 1318                        UMD                                         prepare
## 1319                        UMD                                         require
## 1320                  UKentucky                                            code
## 1321                  UKentucky                                           tools
## 1322                        LSU                                          access
## 1323                        LSU                                            date
## 1324                        LSU                                         discuss
## 1325                        LSU                                            page
## 1326                        LSU                                   visualization
## 1327                        LSU                                         website
## 1328                 UWisconsin                                         central
## 1329                 UWisconsin                                        document
## 1330                 UWisconsin                                        findings
## 1331                 UWisconsin                                          follow
## 1332                 UWisconsin                                           phone
## 1333                 UWisconsin                                       preferred
## 1334                 UWisconsin                                    professional
## 1335                 UWisconsin                                          result
## 1336                 UWisconsin                                        strongly
## 1337                 UWisconsin                                      validation
## 1338           Washington_State                                        accepted
## 1339           Washington_State                                   communication
## 1340           Washington_State                                           found
## 1341           Washington_State                                            note
## 1342           Washington_State                                            read
## 1343           Washington_State                                         sources
## 1344           Washington_State                                         variety
## 1345                NYU_IntroDS                                           final
## 1346                 UCSanDiego                                         student
## 1347                      UUtah                                           ahead
## 1348                      UUtah                                      analytical
## 1349                      UUtah                                   announcements
## 1350                      UUtah                                            call
## 1351                      UUtah                                         complex
## 1352                      UUtah                                       deadlines
## 1353                      UUtah                                     descriptive
## 1354                      UUtah                                   documentation
## 1355                      UUtah                                            earn
## 1356                      UUtah                                          emails
## 1357                      UUtah                                          ethics
## 1358                      UUtah                                          events
## 1359                      UUtah                                     expressions
## 1360                      UUtah                                       extension
## 1361                      UUtah                                         failing
## 1362                      UUtah                                         friends
## 1363                      UUtah                                            gain
## 1364                      UUtah                                            hand
## 1365                      UUtah                                      harassment
## 1366                      UUtah                                          hastie
## 1367                      UUtah                                      hypothesis
## 1368                      UUtah                                       implement
## 1369                      UUtah                                           james
## 1370                      UUtah                                       logistics
## 1371                      UUtah                                         mastery
## 1372                      UUtah                                         message
## 1373                      UUtah                                        mistakes
## 1374                      UUtah                                   opportunities
## 1375                      UUtah                                          output
## 1376                      UUtah                                          papers
## 1377                      UUtah                                   participating
## 1378                      UUtah                                    perspectives
## 1379                      UUtah                                     predictions
## 1380                      UUtah                                       privately
## 1381                      UUtah                                         quality
## 1382                      UUtah                                         respect
## 1383                      UUtah                                      tibshirani
## 1384                      UUtah                                     visualizing
## 1385                      UUtah                                            wide
## 1386                    Cornell                                          common
## 1387                    Cornell                                       community
## 1388                    Cornell                                          create
## 1389                    Cornell                                       encourage
## 1390                    Cornell                                         receive
## 1391                 UCBerkeley                                     programming
## 1392                 UCBerkeley                                     statistical
## 1393                      UUtah                                     information
## 1394                        UMD                                           tools
## 1395  UWisc_Madison_Programming                                           apply
## 1396  UWisc_Madison_Programming                                         results
## 1397                     Drexel                                             add
## 1398                     Drexel                                             age
## 1399                     Drexel                                     algorithmic
## 1400                     Drexel                                           board
## 1401                     Drexel                                         chapter
## 1402                     Drexel                                  communications
## 1403                     Drexel                                      conceptual
## 1404                     Drexel                                              dr
## 1405                     Drexel                                         express
## 1406                     Drexel                                     extenuating
## 1407                     Drexel                                            fail
## 1408                     Drexel                                             fun
## 1409                     Drexel                                          gender
## 1410                     Drexel                                     individuals
## 1411                     Drexel                                     interactive
## 1412                     Drexel                                         involve
## 1413                     Drexel                                           minor
## 1414                     Drexel                                         natural
## 1415                     Drexel                                   presentations
## 1416                     Drexel                                            race
## 1417                     Drexel                                      references
## 1418                     Drexel                                      relational
## 1419                     Drexel                                   relationships
## 1420                     Drexel                                       represent
## 1421                     Drexel                                     requirement
## 1422                     Drexel                                          sample
## 1423                     Drexel                                            stat
## 1424                     Drexel                                           table
## 1425                     Drexel                                           texts
## 1426                    Cornell                                            free
## 1427                   NYU_DS4E                                          change
## 1428                   NYU_DS4E                                            home
## 1429                   NYU_DS4E                                        relevant
## 1430                   NYU_DS4E                                            site
## 1431            Montgomery_Coll                                         include
## 1432            Montgomery_Coll                                          skills
## 1433            Montgomery_Coll                                           staff
## 1434                       CUNY                                            exam
## 1435                       CUNY                                         project
## 1436                       CUNY                                      statistics
## 1437                        ASU                                        assigned
## 1438                        ASU                                         discuss
## 1439                        ASU                                          linear
## 1440                    UIU_207                                        required
## 1441                  Princeton                                        accepted
## 1442                  Princeton                                  classification
## 1443                  Princeton                                   communication
## 1444                  Princeton                                        modeling
## 1445                  Princeton                                        personal
## 1446                  Princeton                                         variety
## 1447                 UCSanDiego                                           aware
## 1448                 UCSanDiego                                           bring
## 1449                 UCSanDiego                                       committed
## 1450                 UCSanDiego                                     conclusions
## 1451                 UCSanDiego                                         control
## 1452                 UCSanDiego                                      cumulative
## 1453                 UCSanDiego                                         develop
## 1454                 UCSanDiego                                      documented
## 1455                 UCSanDiego                                        graduate
## 1456                 UCSanDiego                                            live
## 1457                 UCSanDiego                                           makes
## 1458                 UCSanDiego                                        original
## 1459                 UCSanDiego                                      plagiarism
## 1460                 UCSanDiego                                      previously
## 1461                 UCSanDiego                                           refer
## 1462                 UCSanDiego                                       reference
## 1463                 UCSanDiego                                         running
## 1464                 UWisconsin                                        expected
## 1465                 UWisconsin                                   understanding
## 1466                 Boston_Uni                                     description
## 1467                 Boston_Uni                                         methods
## 1468                 Boston_Uni                                         provide
## 1469                 Boston_Uni                                            real
## 1470                 Boston_Uni                                      techniques
## 1471                    UVA_SDS                                     information
## 1472           William_and_Mary                                       component
## 1473           William_and_Mary                                     discussions
## 1474           William_and_Mary                                         meeting
## 1475           William_and_Mary                                           prior
## 1476           William_and_Mary                                      submission
## 1477                     Drexel                                     probability
## 1478                     Drexel                                       standards
## 1479                        LSU                                         grading
## 1480                      UUtah                                          create
## 1481                      UUtah                                     environment
## 1482                      UUtah                                          graded
## 1483                      UUtah                                        outcomes
## 1484                      UUtah                                          posted
## 1485                      UUtah                                        practice
## 1486                      UUtah                                           solve
## 1487                      UUtah                                          skills
## 1488                      UUtah                                           staff
## 1489                    UZurich                                          common
## 1490                    UZurich                                           means
## 1491                    UZurich                                        outcomes
## 1492                 Boston_Uni                                           final
## 1493  UWisc_Madison_Programming                                       algorithm
## 1494  UWisc_Madison_Programming                                          assess
## 1495  UWisc_Madison_Programming                                         context
## 1496  UWisc_Madison_Programming                                      cumulative
## 1497  UWisc_Madison_Programming                                            hard
## 1498  UWisc_Madison_Programming                                         limited
## 1499  UWisc_Madison_Programming                                            main
## 1500  UWisc_Madison_Programming                                           makes
## 1501  UWisc_Madison_Programming                                           meets
## 1502  UWisc_Madison_Programming                                       numerical
## 1503  UWisc_Madison_Programming                                      plagiarism
## 1504  UWisc_Madison_Programming                                    presentation
## 1505  UWisc_Madison_Programming                                      previously
## 1506  UWisc_Madison_Programming                                          public
## 1507  UWisc_Madison_Programming                                        recorded
## 1508  UWisc_Madison_Programming                                         special
## 1509  UWisc_Madison_Programming                                           start
## 1510  UWisc_Madison_Programming                                          survey
## 1511  UWisc_Madison_Programming                                    technologies
## 1512                    UIU_107                                       including
## 1513                    UIU_107                                        required
## 1514                 UWisconsin                                          topics
## 1515                      Brown                                     information
## 1516                      Brown                                            time
## 1517               Georgia_Tech                                          python
## 1518                      UUtah                                        concepts
## 1519                 UWisconsin                                         results
## 1520                    UZurich                                          python
## 1521                  UKentucky                                        addition
## 1522                  UKentucky                                       component
## 1523                  UKentucky                                      determined
## 1524                  UKentucky                                          letter
## 1525                  UKentucky                                         meeting
## 1526                  UKentucky                                     opportunity
## 1527                  UKentucky                                       solutions
## 1528                  UKentucky                                       standards
## 1529                  UKentucky                                      submission
## 1530                     UMaine                                          center
## 1531                     UMaine                                  classification
## 1532                     UMaine                                      encouraged
## 1533                     UMaine                                            labs
## 1534                     UMaine                                        personal
## 1535                     UMaine                                            read
## 1536                    UVA_SDS                                   computational
## 1537                    UVA_SDS                                          create
## 1538                    Harvard                                    introduction
## 1539                    Harvard                                         student
## 1540           William_and_Mary                                           based
## 1541           William_and_Mary                                   understanding
## 1542                      UUtah                                        analysis
## 1543                        ASU                                           final
## 1544                   UToronto                                     description
## 1545                        ASU                                        required
## 1546                    Harvard                                           apply
## 1547                    Harvard                                     foundations
## 1548                    Harvard                                          issues
## 1549                    Harvard                                   prerequisites
## 1550                    Harvard                                        textbook
## 1551                    Harvard                                          weekly
## 1552                        UMD                                         credits
## 1553                        UMD                                        describe
## 1554                        UMD                                          follow
## 1555                        UMD                                      foundation
## 1556                        UMD                                         honesty
## 1557                        UMD                                          impact
## 1558                        UMD                                            john
## 1559                        UMD                                      permission
## 1560                        UMD                                           phone
## 1561                        UMD                                    professional
## 1562                        UMD                                        sessions
## 1563                        UMD                                          simple
## 1564                        UMD                                          status
## 1565                    UVA_SDS                                        concepts
## 1566                    UVA_SDS                                         contact
## 1567                    UVA_SDS                                          python
## 1568                    UVA_SDS                                           tools
## 1569           Washington_State                                          common
## 1570           Washington_State                                       community
## 1571           Washington_State                                       completed
## 1572           Washington_State                                   computational
## 1573           Washington_State                                        outcomes
## 1574           Washington_State                                        practice
## 1575           Washington_State                                        thinking
## 1576                  UKentucky                                      university
## 1577                 UCSanDiego                                        computer
## 1578                 UCSanDiego                                         provide
## 1579                NYU_IntroDS                                          grades
## 1580                 UCSanDiego                                          online
## 1581                 UWisconsin                                        approved
## 1582                 UWisconsin                                       committed
## 1583                 UWisconsin                                           cover
## 1584                 UWisconsin                                      documented
## 1585                 UWisconsin                                       education
## 1586                 UWisconsin                                        original
## 1587                 UWisconsin                                          piazza
## 1588                 UWisconsin                                      previously
## 1589                 UWisconsin                                          survey
## 1590                 UWisconsin                                    technologies
## 1591                    Cornell                                           books
## 1592                    Cornell                                       computing
## 1593                    Cornell                                         courses
## 1594                    Cornell                                      determined
## 1595                    Cornell                                     discussions
## 1596                    Cornell                                         meeting
## 1597                    Cornell                                       standards
## 1598                    Cornell                                      technology
## 1599                 UCSanDiego                                        datasets
## 1600                 UCSanDiego                                            read
## 1601                 UCSanDiego                                           times
## 1602     UWisc_Madison_Modeling                                         grading
## 1603     UWisc_Madison_Modeling                                       including
## 1604                       CUNY                                      instructor
## 1605  UWisc_Madison_Programming                                     description
## 1606  UWisc_Madison_Programming                                          models
## 1607           Washington_State                                            free
## 1608  UWisc_Madison_Programming                                        accepted
## 1609  UWisc_Madison_Programming                                          center
## 1610  UWisc_Madison_Programming                                            note
## 1611                        UMD                                       including
## 1612                        UMD                                        required
## 1613                      UUtah                                     acquisition
## 1614                      UUtah                                       attention
## 1615                      UUtah                                       automatic
## 1616                      UUtah                                       carefully
## 1617                      UUtah                                         chapter
## 1618                      UUtah                                  communications
## 1619                      UUtah                                        concerns
## 1620                      UUtah                                         defined
## 1621                      UUtah                                       developed
## 1622                      UUtah                                         diverse
## 1623                      UUtah                                       efficient
## 1624                      UUtah                                       exploring
## 1625                      UUtah                                          family
## 1626                      UUtah                                          finish
## 1627                      UUtah                                            held
## 1628                      UUtah                                           honor
## 1629                      UUtah                                     individuals
## 1630                      UUtah                                      inferences
## 1631                      UUtah                                   instructional
## 1632                      UUtah                                         involve
## 1633                      UUtah                                         jeffrey
## 1634                      UUtah                                           meant
## 1635                      UUtah                                          missed
## 1636                      UUtah                                         natural
## 1637                      UUtah                                          option
## 1638                      UUtah                                       permitted
## 1639                      UUtah                                        platform
## 1640                      UUtah                                        previous
## 1641                      UUtah                                          recent
## 1642                      UUtah                                      references
## 1643                      UUtah                                        referred
## 1644                      UUtah                                         reflect
## 1645                      UUtah                                   relationships
## 1646                      UUtah                                          scores
## 1647                      UUtah                                            seek
## 1648                      UUtah                                          series
## 1649                      UUtah                                           share
## 1650                      UUtah                                         studies
## 1651                      UUtah                                     suggestions
## 1652                      UUtah                                           texts
## 1653                      UUtah                                     theoretical
## 1654                      UUtah                                          videos
## 1655                   NYU_DS4E                                        advanced
## 1656                   NYU_DS4E                                         algebra
## 1657                   NYU_DS4E                                      algorithms
## 1658                   NYU_DS4E                                          basics
## 1659                   NYU_DS4E                                            core
## 1660                   NYU_DS4E                                         ethical
## 1661                   NYU_DS4E                                            form
## 1662                   NYU_DS4E                                           guide
## 1663                   NYU_DS4E                                          monday
## 1664                   NYU_DS4E                                          school
## 1665                   NYU_DS4E                                          spring
## 1666                    Cornell                                     statistical
## 1667                  Princeton                                       community
## 1668                  Princeton                                         related
## 1669                  Princeton                                        thinking
## 1670                        ASU                                           exams
## 1671                        ASU                                   prerequisites
## 1672                        ASU                                         reading
## 1673                        ASU                                        textbook
## 1674            Montgomery_Coll                                      additional
## 1675            Montgomery_Coll                                          submit
## 1676            Montgomery_Coll                                      understand
## 1677                     UMaine                                     information
## 1678                        UMD                                        complete
## 1679                        UMD                                   understanding
## 1680           William_and_Mary                                   accessibility
## 1681           William_and_Mary                                           check
## 1682           William_and_Mary                                            drop
## 1683           William_and_Mary                                            goal
## 1684           William_and_Mary                                           goals
## 1685           William_and_Mary                                           short
## 1686           William_and_Mary                                       technical
## 1687                     Drexel                                      considered
## 1688                     Drexel                                       knowledge
## 1689                     Drexel                                           model
## 1690                     Drexel                                         sharing
## 1691                     Drexel                                           short
## 1692                     Drexel                                          system
## 1693                    Cornell                                           based
## 1694                    Cornell                                        complete
## 1695                    Cornell                                        expected
## 1696                    Cornell                                   understanding
## 1697                      UUtah                                        addition
## 1698                      UUtah                                      department
## 1699                      UUtah                                       exercises
## 1700                      UUtah                                           scale
## 1701                    UZurich                                        addition
## 1702                    UZurich                                     application
## 1703                    UZurich                                       computing
## 1704                    UZurich                                         courses
## 1705                    UZurich                                      department
## 1706                    UZurich                                        overview
## 1707            Montgomery_Coll                                           learn
## 1708            Montgomery_Coll                                            week
## 1709                 Boston_Uni                                         include
## 1710                 Boston_Uni                                          review
## 1711                 Boston_Uni                                          skills
## 1712                 UCBerkeley                                        analysis
## 1713                    Rutgers                                      instructor
## 1714                 UCSanDiego                                            aims
## 1715                 UCSanDiego                                     calculation
## 1716                 UCSanDiego                                            call
## 1717                 UCSanDiego                                      difference
## 1718                 UCSanDiego                                            earn
## 1719                 UCSanDiego                                           event
## 1720                 UCSanDiego                                          events
## 1721                 UCSanDiego                                         friends
## 1722                 UCSanDiego                                      guidelines
## 1723                 UCSanDiego                                            hour
## 1724                 UCSanDiego                                     immediately
## 1725                 UCSanDiego                                       logistics
## 1726                 UCSanDiego                                         mastery
## 1727                 UCSanDiego                                         maximum
## 1728                 UCSanDiego                                           media
## 1729                 UCSanDiego                                        mistakes
## 1730                 UCSanDiego                                       notebooks
## 1731                 UCSanDiego                                          output
## 1732                 UCSanDiego                                      percentage
## 1733                 UCSanDiego                                     predictions
## 1734                 UCSanDiego                                       privately
## 1735                 UCSanDiego                                       providing
## 1736                 UCSanDiego                                       regularly
## 1737                 UCSanDiego                                            rule
## 1738                 UCSanDiego                                      successful
## 1739                 UCSanDiego                                          sunday
## 1740                 UCSanDiego                                          weight
## 1741                 UCBerkeley                                         grading
## 1742                       CUNY                                            code
## 1743                       CUNY                                            free
## 1744                       CUNY                                           tools
## 1745                     Drexel                                            date
## 1746                     Drexel                                        software
## 1747                     Drexel                                         written
## 1748                     Drexel                                       arguments
## 1749                     Drexel                                     categorical
## 1750                     Drexel                                        citation
## 1751                     Drexel                                          citing
## 1752                     Drexel                                         consist
## 1753                     Drexel                                     correctness
## 1754                     Drexel                                        database
## 1755                     Drexel                                       depending
## 1756                     Drexel                                     differences
## 1757                     Drexel                                     educational
## 1758                     Drexel                                       encounter
## 1759                     Drexel                                           forms
## 1760                     Drexel                                        graphics
## 1761                     Drexel                                        handling
## 1762                     Drexel                                        industry
## 1763                     Drexel                                          inside
## 1764                     Drexel                                       interview
## 1765                     Drexel                                      introduces
## 1766                     Drexel                                              li
## 1767                     Drexel                                           local
## 1768                     Drexel                                             lot
## 1769                     Drexel                                          manner
## 1770                     Drexel                                            news
## 1771                     Drexel                                          o'neil
## 1772                     Drexel                                           offer
## 1773                     Drexel                                         outline
## 1774                     Drexel                                    plagiarizing
## 1775                     Drexel                                        proposal
## 1776                     Drexel                                        purposes
## 1777                     Drexel                                  recommendation
## 1778                     Drexel                                        religion
## 1779                     Drexel                                       remaining
## 1780                     Drexel                                       requiring
## 1781                     Drexel                                     responsibly
## 1782                     Drexel                                          robert
## 1783                     Drexel                                             sas
## 1784                     Drexel                                      scientific
## 1785                     Drexel                                          stated
## 1786                     Drexel                                      statements
## 1787                     Drexel                                      strategies
## 1788                     Drexel                                       student’s
## 1789                     Drexel                                              uc
## 1790                     Drexel                                            user
## 1791                     Drexel                                         veteran
## 1792                        UMD                                           dates
## 1793                        UMD                                          issues
## 1794                  Princeton                                        analysis
## 1795                 UWisconsin                                   communication
## 1796                 UWisconsin                                           found
## 1797                  UKentucky                                          answer
## 1798                  UKentucky                                      completion
## 1799                  UKentucky                                            drop
## 1800                  UKentucky                                            goal
## 1801                  UKentucky                                       inference
## 1802                  UKentucky                                            list
## 1803                  UKentucky                                         missing
## 1804                  UKentucky                                            sets
## 1805                  UKentucky                                       technical
## 1806                  UKentucky                                       variables
## 1807                    UIU_207                                         project
## 1808                    UIU_207                                        schedule
## 1809                 UCSanDiego                                            time
## 1810  UWisc_Madison_Programming                                       beginning
## 1811  UWisc_Madison_Programming                                           cheat
## 1812  UWisc_Madison_Programming                                      completing
## 1813  UWisc_Madison_Programming                                    confidential
## 1814  UWisc_Madison_Programming                                       deadlines
## 1815  UWisc_Madison_Programming                                      definition
## 1816  UWisc_Madison_Programming                                        detailed
## 1817  UWisc_Madison_Programming                                          emails
## 1818  UWisc_Madison_Programming                                           equal
## 1819  UWisc_Madison_Programming                                      harassment
## 1820  UWisc_Madison_Programming                                       implement
## 1821  UWisc_Madison_Programming                                       inclusion
## 1822  UWisc_Madison_Programming                                         initial
## 1823  UWisc_Madison_Programming                                       interpret
## 1824  UWisc_Madison_Programming                                          length
## 1825  UWisc_Madison_Programming                                          linked
## 1826  UWisc_Madison_Programming                                         maximum
## 1827  UWisc_Madison_Programming                                         message
## 1828  UWisc_Madison_Programming                                   participating
## 1829  UWisc_Madison_Programming                                         respect
## 1830  UWisc_Madison_Programming                                            send
## 1831  UWisc_Madison_Programming                                         service
## 1832  UWisc_Madison_Programming                                           steps
## 1833  UWisc_Madison_Programming                                       typically
## 1834                     UMaine                                          campus
## 1835                     UMaine                                          common
## 1836                     UMaine                                          create
## 1837                     UMaine                                          posted
## 1838                     UMaine                                           solve
## 1839                     UMaine                                           write
## 1840                      UUtah                                     programming
## 1841                    UZurich                                           learn
## 1842                    UZurich                                     programming
## 1843                    UZurich                                      university
## 1844                    UVA_SDS                                       computing
## 1845                    UVA_SDS                                            fall
## 1846                    UVA_SDS                                        includes
## 1847                    UVA_SDS                                           prior
## 1848                    UVA_SDS                                           scale
## 1849                    UVA_SDS                                       solutions
## 1850                    Harvard                                      statistics
## 1851               Georgia_Tech                                        complete
## 1852               Georgia_Tech                                        expected
## 1853  UWisc_Madison_Programming                                      instructor
## 1854                    UZurich                                   understanding
## 1855                    Harvard                                      encouraged
## 1856                    Harvard                                         variety
## 1857                    Harvard                                             web
## 1858                     UMaine                                        concepts
## 1859                   UVA_Stat                                         grading
## 1860                   UVA_Stat                                       including
## 1861                   UVA_Stat                                        required
## 1862                   UVA_Stat                                           world
## 1863                   NYU_DS4E                                        analysis
## 1864           Washington_State                                       component
## 1865           Washington_State                                      determined
## 1866           Washington_State                                       exercises
## 1867           Washington_State                                            fall
## 1868           Washington_State                                          letter
## 1869           Washington_State                                         meeting
## 1870           Washington_State                                           prior
## 1871           Washington_State                                           scale
## 1872           Washington_State                                       solutions
## 1873                        LSU                                        accepted
## 1874                        LSU                                   communication
## 1875                        LSU                                        datasets
## 1876                        LSU                                            note
## 1877                        LSU                                            read
## 1878                        LSU                                         sources
## 1879                        LSU                                           times
## 1880                        LSU                                             web
## 1881                    UIU_107                                      statistics
## 1882           William_and_Mary                                         lecture
## 1883           William_and_Mary                                        lectures
## 1884           William_and_Mary                                          models
## 1885           William_and_Mary                                        projects
## 1886                   UToronto                                            late
## 1887                   UToronto                                        material
## 1888                   UToronto                                           notes
## 1889                   UToronto                                           staff
## 1890                    UVA_SDS                                      university
## 1891                     Drexel                                         methods
## 1892                     Drexel                                        projects
## 1893                        UMD                                          assess
## 1894                        UMD                                           aware
## 1895                        UMD                                           bring
## 1896                        UMD                                         control
## 1897                        UMD                                       databases
## 1898                        UMD                                       education
## 1899                        UMD                                    expectations
## 1900                        UMD                                         limited
## 1901                        UMD                                            live
## 1902                        UMD                                        original
## 1903                        UMD                                       practices
## 1904                        UMD                                    presentation
## 1905                        UMD                                      previously
## 1906                        UMD                                       reduction
## 1907                        UMD                                         respond
## 1908                        UMD                                          survey
## 1909                        UMD                                  visualizations
## 1910                NYU_IntroDS                                           basic
## 1911                NYU_IntroDS                                         section
## 1912                NYU_IntroDS                                             set
## 1913                    Cornell                                   accessibility
## 1914                    Cornell                                           error
## 1915                    Cornell                                            goal
## 1916                    Cornell                                           goals
## 1917                    Cornell                                        policies
## 1918                    Cornell                                         sharing
## 1919                    Cornell                                       variables
## 1920                 UCSanDiego                                          campus
## 1921                 UCSanDiego                                       community
## 1922                 UCSanDiego                                       completed
## 1923                 UCSanDiego                                          create
## 1924                 UCSanDiego                                           means
## 1925                 UCSanDiego                                        practice
## 1926                 UCSanDiego                                  accommodations
## 1927                 UCSanDiego                                        material
## 1928                    Rutgers                                         contact
## 1929                    Rutgers                                           tools
## 1930                UWashington                                        analysis
## 1931                 UWisconsin                                      analytical
## 1932                 UWisconsin                                       beginning
## 1933                 UWisconsin                                          chance
## 1934                 UWisconsin                                         concept
## 1935                 UWisconsin                                          engage
## 1936                 UWisconsin                                       extension
## 1937                 UWisconsin                                         failing
## 1938                 UWisconsin                                            gain
## 1939                 UWisconsin                                      guidelines
## 1940                 UWisconsin                                     immediately
## 1941                 UWisconsin                                      importance
## 1942                 UWisconsin                                         initial
## 1943                 UWisconsin                                          linked
## 1944                 UWisconsin                                       logistics
## 1945                 UWisconsin                                         mastery
## 1946                 UWisconsin                                         message
## 1947                 UWisconsin                                        mistakes
## 1948                 UWisconsin                                         product
## 1949                 UWisconsin                                      requesting
## 1950                 UWisconsin                                           steps
## 1951                 UWisconsin                                          sunday
## 1952                 UWisconsin                                            tool
## 1953                NYU_IntroDS                                           learn
## 1954                      Brown                                        syllabus
## 1955                      Brown                                      university
## 1956  UWisc_Madison_Programming                                          common
## 1957  UWisc_Madison_Programming                                       community
## 1958  UWisc_Madison_Programming                                       encourage
## 1959  UWisc_Madison_Programming                                           means
## 1960  UWisc_Madison_Programming                                          posted
## 1961  UWisc_Madison_Programming                                        practice
## 1962  UWisc_Madison_Programming                                           solve
## 1963  UWisc_Madison_Programming                                     submissions
## 1964                  UKentucky                                      instructor
## 1965                 UCSanDiego                                         contact
## 1966                 UCSanDiego                                           tools
## 1967                  UKentucky                                      techniques
## 1968                   NYU_DS4E                                       classroom
## 1969                   NYU_DS4E                                         dataset
## 1970                   NYU_DS4E                                     fundamental
## 1971                   NYU_DS4E                                  interpretation
## 1972                   NYU_DS4E                                           intro
## 1973                   NYU_DS4E                                          method
## 1974                   NYU_DS4E                                         prepare
## 1975                   NYU_DS4E                                    requirements
## 1976                   NYU_DS4E                                        specific
## 1977                   NYU_DS4E                                         summary
## 1978                   NYU_DS4E                                         version
## 1979           Washington_State                                        expected
## 1980           Washington_State                                        semester
## 1981             UniSys_Georgia                                      university
## 1982                 UWisconsin                                            time
## 1983                  Princeton                                           books
## 1984                  Princeton                                     probability
## 1985                 UWisconsin                                      instructor
## 1986                    UVA_SDS                                         student
## 1987                        ASU                                        accepted
## 1988                        ASU                                      encouraged
## 1989                        ASU                                           found
## 1990                        ASU                                        personal
## 1991  UWisc_Madison_Programming                                           tools
## 1992                 UCSanDiego                                           final
## 1993                  UKentucky                                        required
## 1994           William_and_Mary                                          expect
## 1995           William_and_Mary                                          format
## 1996           William_and_Mary                                        internet
## 1997           William_and_Mary                                         perform
## 1998           William_and_Mary                                         program
## 1999            Montgomery_Coll                                            date
## 2000            Montgomery_Coll                                         discuss
## 2001            Montgomery_Coll                                         written
## 2002     UWisc_Madison_Modeling                                      statistics
## 2003                 UCSanDiego                                        required
## 2004                     Drexel                                         analyze
## 2005                     Drexel                                         college
## 2006                     Drexel                                        internet
## 2007                     Drexel                                      management
## 2008                     Drexel                                            text
## 2009                      UUtah                                           check
## 2010                      UUtah                                         classes
## 2011                      UUtah                                      clustering
## 2012                      UUtah                                        designed
## 2013                      UUtah                                            drop
## 2014                      UUtah                                            goal
## 2015                      UUtah                                            list
## 2016                      UUtah                                         process
## 2017                      UUtah                                           short
## 2018                    UZurich                                         classes
## 2019                    UZurich                                          design
## 2020                    UZurich                                            goal
## 2021                    UZurich                                           hands
## 2022                    UZurich                                         missing
## 2023                    UZurich                                          random
## 2024               USouthampton                                          topics
## 2025                        UMD                                         machine
## 2026                        UMD                                         provide
## 2027  UWisc_Madison_Programming                                         grading
## 2028                 UWisconsin                                    introduction
## 2029                 Boston_Uni                                       resources
## 2030                 Boston_Uni                                             set
## 2031                    Cornell                                         provide
## 2032                    Cornell                                      techniques
## 2033                     Drexel                                         results
## 2034                      UUtah                                   visualization
## 2035                      UUtah                                      accessible
## 2036                      UUtah                                             act
## 2037                      UUtah                                          adding
## 2038                      UUtah                                       addressed
## 2039                      UUtah                                        adjusted
## 2040                      UUtah                                       answering
## 2041                      UUtah                                           begin
## 2042                      UUtah                                           bonus
## 2043                      UUtah                                       cambridge
## 2044                      UUtah                                        choosing
## 2045                      UUtah                                        citation
## 2046                      UUtah                                         comment
## 2047                      UUtah                                   communicating
## 2048                      UUtah                                         consist
## 2049                      UUtah                                     correctness
## 2050                      UUtah                                        creative
## 2051                      UUtah                                     datascience
## 2052                      UUtah                                            dean
## 2053                      UUtah                                       depending
## 2054                      UUtah                                     differences
## 2055                      UUtah                                    disciplinary
## 2056                      UUtah                                     educational
## 2057                      UUtah                                       exception
## 2058                      UUtah                                        fairness
## 2059                      UUtah                                           feels
## 2060                      UUtah                                         fridays
## 2061                      UUtah                                        graphics
## 2062                      UUtah                                       guarantee
## 2063                      UUtah                                         improve
## 2064                      UUtah                                           joint
## 2065                      UUtah                                             law
## 2066                      UUtah                                         located
## 2067                      UUtah                                          manual
## 2068                      UUtah                                          o'neil
## 2069                      UUtah                                       objective
## 2070                      UUtah                                          obtain
## 2071                      UUtah                                           offer
## 2072                      UUtah                                          origin
## 2073                      UUtah                                         outline
## 2074                      UUtah                                           peers
## 2075                      UUtah                                       platforms
## 2076                      UUtah                                        prepared
## 2077                      UUtah                                      publishing
## 2078                      UUtah                                  recommendation
## 2079                      UUtah                                         regular
## 2080                      UUtah                                          rights
## 2081                      UUtah                                          robert
## 2082                      UUtah                                       sanctions
## 2083                      UUtah                                      scientific
## 2084                      UUtah                                           serve
## 2085                      UUtah                                          slides
## 2086                      UUtah                                         success
## 2087                      UUtah                                    successfully
## 2088                      UUtah                                             tas
## 2089                      UUtah                                     terminology
## 2090                      UUtah                                         updated
## 2091                      UUtah                                            user
## 2092                      UUtah                                         veteran
## 2093                      UUtah                                         visible
## 2094                      UUtah                                        websites
## 2095                        UMD                                           found
## 2096                        UMD                                            read
## 2097                        UMD                                         variety
## 2098                  UKentucky                                   accommodation
## 2099                  UKentucky                                       analyzing
## 2100                  UKentucky                                           build
## 2101                  UKentucky                                        building
## 2102                  UKentucky                                           focus
## 2103                  UKentucky                                            home
## 2104                  UKentucky                                      management
## 2105                  UKentucky                                          person
## 2106                  UKentucky                                        relevant
## 2107                  UKentucky                                          report
## 2108                  UKentucky                                        requires
## 2109                  UKentucky                                            text
## 2110                 UWisconsin                                        identify
## 2111                 UWisconsin                                           means
## 2112                 UWisconsin                                         receive
## 2113                 UWisconsin                                           score
## 2114                 UWisconsin                                        services
## 2115                 UWisconsin                                     submissions
## 2116                 UWisconsin                                        thinking
## 2117                 UWisconsin                                           write
## 2118                 UWisconsin                                  accommodations
## 2119                 UWisconsin                                      activities
## 2120                 UWisconsin                                            late
## 2121                 UWisconsin                                          skills
## 2122                    Cornell                                           final
## 2123                     UMaine                                        addition
## 2124                     UMaine                                           books
## 2125                     UMaine                                      department
## 2126                     UMaine                                     discussions
## 2127                     UMaine                                            fall
## 2128                     UMaine                                           prior
## 2129                     UMaine                                           scale
## 2130                     UMaine                                       standards
## 2131                  Princeton                                           based
## 2132                    UVA_SDS                                        designed
## 2133                    UVA_SDS                                            goal
## 2134                    UVA_SDS                                         process
## 2135                    UVA_SDS                                       technical
## 2136                 Boston_Uni                                           learn
## 2137                 Boston_Uni                                     programming
## 2138                 Boston_Uni                                      university
## 2139                    Cornell                                         grading
## 2140                 UCSanDiego                                             add
## 2141                 UCSanDiego                                          amount
## 2142                 UCSanDiego                                    arrangements
## 2143                 UCSanDiego                                        assessed
## 2144                 UCSanDiego                                       attention
## 2145                 UCSanDiego                                   automatically
## 2146                 UCSanDiego                                        concerns
## 2147                 UCSanDiego                                        criteria
## 2148                 UCSanDiego                                       developed
## 2149                 UCSanDiego                                      discretion
## 2150                 UCSanDiego                                         diverse
## 2151                 UCSanDiego                                            draw
## 2152                 UCSanDiego                                         express
## 2153                 UCSanDiego                                     extenuating
## 2154                 UCSanDiego                                            fail
## 2155                 UCSanDiego                                             fun
## 2156                 UCSanDiego                                          giving
## 2157                 UCSanDiego                                          google
## 2158                 UCSanDiego                                         helpful
## 2159                 UCSanDiego                                           honor
## 2160                 UCSanDiego                                   instructional
## 2161                 UCSanDiego                                         involve
## 2162                 UCSanDiego                                            join
## 2163                 UCSanDiego                                         meaning
## 2164                 UCSanDiego                                          option
## 2165                 UCSanDiego                                        optional
## 2166                 UCSanDiego                                        platform
## 2167                 UCSanDiego                                       potential
## 2168                 UCSanDiego                                          prefer
## 2169                 UCSanDiego                                          recent
## 2170                 UCSanDiego                                         reflect
## 2171                 UCSanDiego                                           share
## 2172                 UCSanDiego                                           sites
## 2173                 UCSanDiego                                        thursday
## 2174                 UCSanDiego                                          videos
## 2175                    Harvard                                       community
## 2176                    Harvard                                     environment
## 2177                    Harvard                                        outcomes
## 2178                    Harvard                                          posted
## 2179                    Harvard                                           solve
## 2180           Washington_State                                      clustering
## 2181           Washington_State                                     communicate
## 2182           Washington_State                                           extra
## 2183           Washington_State                                    mathematical
## 2184                 UCBerkeley                                         project
## 2185            Montgomery_Coll                                           final
## 2186                        LSU                                   computational
## 2187                        LSU                                       encourage
## 2188                        LSU                                         explore
## 2189                        LSU                                        identify
## 2190                        LSU                                           means
## 2191                        LSU                                         related
## 2192                        LSU                                           score
## 2193                        LSU                                           solve
## 2194                     UMaine                                          online
## 2195                     UMaine                                            week
## 2196  UWisc_Madison_Programming                                          active
## 2197  UWisc_Madison_Programming                                     algorithmic
## 2198  UWisc_Madison_Programming                                          amount
## 2199  UWisc_Madison_Programming                                            arts
## 2200  UWisc_Madison_Programming                                            bias
## 2201  UWisc_Madison_Programming                                       carefully
## 2202  UWisc_Madison_Programming                                       copyright
## 2203  UWisc_Madison_Programming                                         correct
## 2204  UWisc_Madison_Programming                                         defined
## 2205  UWisc_Madison_Programming                                       developed
## 2206  UWisc_Madison_Programming                                        directly
## 2207  UWisc_Madison_Programming                                       efficient
## 2208  UWisc_Madison_Programming                                        emphasis
## 2209  UWisc_Madison_Programming                                      equivalent
## 2210  UWisc_Madison_Programming                                        existing
## 2211  UWisc_Madison_Programming                                         express
## 2212  UWisc_Madison_Programming                                            fail
## 2213  UWisc_Madison_Programming                                          inform
## 2214  UWisc_Madison_Programming                                         meaning
## 2215  UWisc_Madison_Programming                                           meant
## 2216  UWisc_Madison_Programming                                         minimum
## 2217  UWisc_Madison_Programming                                         natural
## 2218  UWisc_Madison_Programming                                        platform
## 2219  UWisc_Madison_Programming                                        previous
## 2220  UWisc_Madison_Programming                                          recent
## 2221  UWisc_Madison_Programming                                      references
## 2222  UWisc_Madison_Programming                                       religious
## 2223  UWisc_Madison_Programming                                      requisites
## 2224  UWisc_Madison_Programming                                        response
## 2225  UWisc_Madison_Programming                                          search
## 2226  UWisc_Madison_Programming                                         similar
## 2227  UWisc_Madison_Programming                                           skill
## 2228  UWisc_Madison_Programming                                      submitting
## 2229  UWisc_Madison_Programming                                      sufficient
## 2230            Montgomery_Coll                                        required
## 2231                    UIU_207                                        concepts
## 2232                    UIU_207                                         contact
## 2233                       CUNY                                    introduction
## 2234               Georgia_Tech                                     description
## 2235               Georgia_Tech                                          models
## 2236               Georgia_Tech                                        teaching
## 2237                  UKentucky                                            time
## 2238                    Cornell                                         analyze
## 2239                    Cornell                                           build
## 2240                    Cornell                                   collaboration
## 2241                    Cornell                                         college
## 2242                    Cornell                                      components
## 2243                    Cornell                                            home
## 2244                    Cornell                                          report
## 2245                    Cornell                                        resource
## 2246                 UCSanDiego                                       solutions
## 2247                      UUtah                                        teaching
## 2248                    UZurich                                        computer
## 2249                    UZurich                                      techniques
## 2250                   UToronto                                          submit
## 2251                   NYU_DS4E                                          access
## 2252                   NYU_DS4E                                    disabilities
## 2253                   NYU_DS4E                                   visualization
## 2254                NYU_IntroDS                                            page
## 2255                NYU_IntroDS                                        software
## 2256                NYU_IntroDS                                         website
## 2257           William_and_Mary                                        material
## 2258           William_and_Mary                                           staff
## 2259                        LSU                                        concepts
## 2260                        LSU                                         contact
## 2261                     UMaine                                        semester
## 2262                 UCSanDiego                                         support
## 2263                        UMD                                        accuracy
## 2264                        UMD                                      analytical
## 2265                        UMD                                            call
## 2266                        UMD                                      challenges
## 2267                        UMD                                      completing
## 2268                        UMD                                    confidential
## 2269                        UMD                                      continuous
## 2270                        UMD                                        creating
## 2271                        UMD                                       deadlines
## 2272                        UMD                                       emergency
## 2273                        UMD                                          engage
## 2274                        UMD                                          ensure
## 2275                        UMD                                            gain
## 2276                        UMD                                      harassment
## 2277                        UMD                                         initial
## 2278                        UMD                                         network
## 2279                        UMD                                       providing
## 2280                        UMD                                       regularly
## 2281                        UMD                                            rule
## 2282                        UMD                                         service
## 2283                        UMD                                         society
## 2284                        UMD                                     visualizing
## 2285  UWisc_Madison_Programming                                       component
## 2286  UWisc_Madison_Programming                                       integrity
## 2287  UWisc_Madison_Programming                                          letter
## 2288  UWisc_Madison_Programming                                            post
## 2289                     Drexel                                      accordance
## 2290                     Drexel                                        approval
## 2291                     Drexel                                        berkeley
## 2292                     Drexel                                           carry
## 2293                     Drexel                                           cathy
## 2294                     Drexel                                           color
## 2295                     Drexel                                          commit
## 2296                     Drexel                                       comparing
## 2297                     Drexel                                      comparison
## 2298                     Drexel                                      complaints
## 2299                     Drexel                                      curriculum
## 2300                     Drexel                                       davenport
## 2301                     Drexel                                    descriptions
## 2302                     Drexel                                        director
## 2303                     Drexel                                        dropping
## 2304                     Drexel                                     evaluations
## 2305                     Drexel                                         federal
## 2306                     Drexel                                          filter
## 2307                     Drexel                                         formats
## 2308                     Drexel                                       frontline
## 2309                     Drexel                                         harvard
## 2310                     Drexel                                    intelligence
## 2311                     Drexel                                            laws
## 2312                     Drexel                                         lessons
## 2313                     Drexel                                        matrices
## 2314                     Drexel                                          medium
## 2315                     Drexel                                         michael
## 2316                     Drexel                                        national
## 2317                     Drexel                                           nosql
## 2318                     Drexel                                        notation
## 2319                     Drexel                                   organizations
## 2320                     Drexel                                        parallel
## 2321                     Drexel                                              pc
## 2322                     Drexel                                       performed
## 2323                     Drexel                                      phenomenon
## 2324                     Drexel                                        presence
## 2325                     Drexel                                         promote
## 2326                     Drexel                                           quote
## 2327                     Drexel                                       rationale
## 2328                     Drexel                                     regulations
## 2329                     Drexel                                         reports
## 2330                     Drexel                                          schutt
## 2331                     Drexel                                          senior
## 2332                     Drexel                                             sex
## 2333                     Drexel                                          signal
## 2334                     Drexel                                        straight
## 2335                     Drexel                                        strictly
## 2336                     Drexel                                             tag
## 2337                     Drexel                                             tom
## 2338                     Drexel                                          update
## 2339                     Drexel                                         updates
## 2340                     Drexel                                    verification
## 2341                   UToronto                                          online
## 2342                   UToronto                                            week
## 2343                    UIU_107                                        concepts
## 2344                    UIU_107                                          python
## 2345                   UVA_Stat                                         project
## 2346                   UVA_Stat                                        schedule
## 2347                    Rutgers                                        complete
## 2348                    Rutgers                                        expected
## 2349                    UVA_SDS                                        computer
## 2350                    UVA_SDS                                         machine
## 2351                    UVA_SDS                                            real
## 2352                     UMaine                                    introduction
## 2353                  Princeton                                      clustering
## 2354                  Princeton                                      completion
## 2355                  Princeton                                       inference
## 2356                  Princeton                                            list
## 2357                  Princeton                                    mathematical
## 2358                  Princeton                                        provided
## 2359                  Princeton                                       variables
## 2360                        UMD                                      instructor
## 2361                        ASU                                       community
## 2362                        ASU                                       completed
## 2363                        ASU                                     environment
## 2364                        ASU                                        outcomes
## 2365                        ASU                                        practice
## 2366                        ASU                                        services
## 2367                  UKentucky                                          credit
## 2368                  UKentucky                                            late
## 2369                   NYU_DS4E                                      assistance
## 2370                   NYU_DS4E                                            book
## 2371                   NYU_DS4E                                        calculus
## 2372                   NYU_DS4E                                       decisions
## 2373                   NYU_DS4E                                     demonstrate
## 2374                   NYU_DS4E                                        describe
## 2375                   NYU_DS4E                                          future
## 2376                   NYU_DS4E                                          github
## 2377                   NYU_DS4E                                         honesty
## 2378                   NYU_DS4E                                     inferential
## 2379                   NYU_DS4E                                       professor
## 2380                   NYU_DS4E                                           range
## 2381                   NYU_DS4E                                           reach
## 2382            Montgomery_Coll                                    introduction
## 2383            Montgomery_Coll                                          topics
## 2384                    Cornell                                            time
## 2385           William_and_Mary                                          basics
## 2386           William_and_Mary                                         faculty
## 2387           William_and_Mary                                         feature
## 2388           William_and_Mary                                        feedback
## 2389           William_and_Mary                                         jupyter
## 2390           William_and_Mary                                          laptop
## 2391           William_and_Mary                                           level
## 2392           William_and_Mary                                            life
## 2393           William_and_Mary                                         solving
## 2394           William_and_Mary                                            talk
## 2395           William_and_Mary                                            test
## 2396           William_and_Mary                                         tuesday
## 2397            Montgomery_Coll                                           apply
## 2398            Montgomery_Coll                                           dates
## 2399            Montgomery_Coll                                   prerequisites
## 2400            Montgomery_Coll                                        textbook
## 2401                 UWisconsin                                             add
## 2402                 UWisconsin                                   automatically
## 2403                 UWisconsin                                           click
## 2404                 UWisconsin                                      contribute
## 2405                 UWisconsin                                        covering
## 2406                 UWisconsin                                        criteria
## 2407                 UWisconsin                                              dr
## 2408                 UWisconsin                                            fail
## 2409                 UWisconsin                                          family
## 2410                 UWisconsin                                          finish
## 2411                 UWisconsin                                            join
## 2412                 UWisconsin                                           kinds
## 2413                 UWisconsin                                        security
## 2414                 UWisconsin                                            seek
## 2415                 UWisconsin                                           share
## 2416                 UWisconsin                                           terms
## 2417                    UVA_SDS                                         grading
## 2418                     Drexel                                      algorithms
## 2419                     Drexel                                         faculty
## 2420                     Drexel                                         feature
## 2421                     Drexel                                           guide
## 2422                     Drexel                                      individual
## 2423                     Drexel                                            life
## 2424                     Drexel                                           rules
## 2425                     Drexel                                          school
## 2426                     Drexel                                        standard
## 2427                        MIT                                           based
## 2428                        MIT                                        expected
## 2429                      UUtah                                           build
## 2430                      UUtah                                   collaboration
## 2431                      UUtah                                      components
## 2432                      UUtah                                         perform
## 2433                      UUtah                                        relevant
## 2434                      UUtah                                         request
## 2435                      UUtah                                            text
## 2436                    UZurich                                           build
## 2437                    UZurich                                      components
## 2438                    UZurich                                            home
## 2439                    UZurich                                        multiple
## 2440                    UZurich                                            site
## 2441           Washington_State                                        projects
## 2442           Washington_State                                            real
## 2443           Washington_State                                      techniques
## 2444           William_and_Mary                                         project
## 2445                     Drexel                                            exam
## 2446                        ASU                                           tools
## 2447                     Drexel                                         sources
## 2448                     Drexel                                           times
## 2449                 Boston_Uni                                        assigned
## 2450                 Boston_Uni                                         discuss
## 2451                 Boston_Uni                                   visualization
## 2452                   NYU_DS4E                                       including
## 2453                NYU_IntroDS                                        required
## 2454                NYU_IntroDS                                           world
## 2455                      Brown                                       including
## 2456                      UUtah                                          weekly
## 2457                 UWisconsin                                       integrity
## 2458                        UMD                                       completed
## 2459                        UMD                                          graded
## 2460                        UMD                                        outcomes
## 2461                        UMD                                          posted
## 2462                        UMD                                        services
## 2463                        UMD                                     submissions
## 2464                        UMD                                        thinking
## 2465                        UMD                                           staff
## 2466                        MIT                                         student
## 2467                        MIT                                          topics
## 2468                  UKentucky                                            feel
## 2469                  UKentucky                                           level
## 2470                  UKentucky                                            life
## 2471                  UKentucky                                           major
## 2472                  UKentucky                                      objectives
## 2473                  UKentucky                                     performance
## 2474                  UKentucky                                          school
## 2475                  UKentucky                                        solution
## 2476                  UKentucky                                            talk
## 2477                  UKentucky                                            test
## 2478     UWisc_Madison_Modeling                                         contact
## 2479                     UMaine                                          answer
## 2480                     UMaine                                          attend
## 2481                     UMaine                                         classes
## 2482                     UMaine                                      completion
## 2483                     UMaine                                          design
## 2484                     UMaine                                           extra
## 2485                     UMaine                                    mathematical
## 2486                     UMaine                                        policies
## 2487                     UMaine                                        provided
## 2488                     UMaine                                       technical
## 2489                    Cornell                                         include
## 2490                    Cornell                                           staff
## 2491                    UVA_SDS                                   accommodation
## 2492                    UVA_SDS                                       analyzing
## 2493                    UVA_SDS                                   collaboration
## 2494                    UVA_SDS                                         details
## 2495                    UVA_SDS                                         explain
## 2496                    UVA_SDS                                      management
## 2497                    UVA_SDS                                        research
## 2498                    UVA_SDS                                           visit
## 2499                  UKentucky                                      statistics
## 2500                 UWisconsin                                           basic
## 2501                 UWisconsin                                         section
## 2502                 UCSanDiego                                        schedule
## 2503             UniSys_Georgia                                        required
## 2504             UniSys_Georgia                                           world
## 2505                      UUtah                                            time
## 2506                        UMD                                        concepts
## 2507                        UMD                                         contact
## 2508                    Harvard                                        addition
## 2509                    Harvard                                      determined
## 2510                    Harvard                                        includes
## 2511           Washington_State                                       analyzing
## 2512           Washington_State                                          change
## 2513           Washington_State                                      evaluation
## 2514           Washington_State                                           focus
## 2515           Washington_State                                           ideas
## 2516           Washington_State                                        relevant
## 2517           Washington_State                                        requires
## 2518           Washington_State                                        resource
## 2519           Washington_State                                            site
## 2520           Washington_State                                          taking
## 2521  UWisc_Madison_Programming                                        schedule
## 2522                        LSU                                        addition
## 2523                        LSU                                       component
## 2524                        LSU                                       computing
## 2525                        LSU                                      department
## 2526                        LSU                                       exercises
## 2527                        LSU                                         meeting
## 2528                        LSU                                     opportunity
## 2529                        LSU                                        overview
## 2530                        LSU                                            post
## 2531                        LSU                                           scale
## 2532                        LSU                                          source
## 2533                       CUNY                                         provide
## 2534                       CUNY                                        teaching
## 2535                       CUNY                                      techniques
## 2536                 UCSanDiego                                         classes
## 2537                 UCSanDiego                                        designed
## 2538                 UCSanDiego                                           extra
## 2539                 UCSanDiego                                            goal
## 2540                 UCSanDiego                                        provided
## 2541                 UCSanDiego                                         sharing
## 2542                   UVA_Stat                                      instructor
## 2543                    Cornell                                             2nd
## 2544                    Cornell                                     engineering
## 2545                    Cornell                                         ethical
## 2546                    Cornell                                     exploratory
## 2547                    Cornell                                        feedback
## 2548                    Cornell                                           major
## 2549                    Cornell                                     participate
## 2550                    Cornell                                           total
## 2551               Georgia_Tech                                      activities
## 2552               Georgia_Tech                                        material
## 2553               Georgia_Tech                                           notes
## 2554               Georgia_Tech                                          skills
## 2555                   UToronto                                            date
## 2556                   UToronto                                         website
## 2557                   UToronto                                         written
## 2558                    Cornell                                            exam
## 2559                   NYU_DS4E                                           exams
## 2560                   NYU_DS4E                                         reading
## 2561                NYU_IntroDS                                        language
## 2562                NYU_IntroDS                                       submitted
## 2563                    Harvard                                          online
## 2564                      UUtah                                          credit
## 2565           William_and_Mary                                           basic
## 2566           William_and_Mary                                       materials
## 2567  UWisc_Madison_Programming                                          answer
## 2568  UWisc_Madison_Programming                                         classes
## 2569  UWisc_Madison_Programming                                      considered
## 2570  UWisc_Madison_Programming                                         sharing
## 2571                 UCSanDiego                                            date
## 2572                 UCSanDiego                                    disabilities
## 2573                 UCSanDiego                                         discuss
## 2574                 UCSanDiego                                         website
## 2575                    UIU_207                                        semester
## 2576                    UIU_207                                   understanding
## 2577                 UCSanDiego                                          assign
## 2578                 UCSanDiego                                      background
## 2579                 UCSanDiego                                         created
## 2580                 UCSanDiego                                            dean
## 2581                 UCSanDiego                                     disciplines
## 2582                 UCSanDiego                                           doubt
## 2583                 UCSanDiego                                          else's
## 2584                 UCSanDiego                                         equally
## 2585                 UCSanDiego                                     exceptional
## 2586                 UCSanDiego                                        fairness
## 2587                 UCSanDiego                                           feels
## 2588                 UCSanDiego                                         hearing
## 2589                 UCSanDiego                                      identities
## 2590                 UCSanDiego                                   inappropriate
## 2591                 UCSanDiego                                      incomplete
## 2592                 UCSanDiego                                             lot
## 2593                 UCSanDiego                                             low
## 2594                 UCSanDiego                                        majority
## 2595                 UCSanDiego                                          notice
## 2596                 UCSanDiego                                            past
## 2597                 UCSanDiego                                        physical
## 2598                 UCSanDiego                                    plagiarizing
## 2599                 UCSanDiego                                       platforms
## 2600                 UCSanDiego                                         private
## 2601                 UCSanDiego                                       probation
## 2602                 UCSanDiego                                          remote
## 2603                 UCSanDiego                                          server
## 2604                 UCSanDiego                                      strategies
## 2605                 UCSanDiego                                       summarize
## 2606                 UCSanDiego                                           track
## 2607                 UCSanDiego                                        tuesdays
## 2608                 UCSanDiego                                      violations
## 2609                 UCSanDiego                                         virtual
## 2610                 UCBerkeley                                        concepts
## 2611                 UCBerkeley                                         contact
## 2612                 UCBerkeley                                          python
## 2613                 Boston_Uni                                       including
## 2614                 UWisconsin                                           final
## 2615                      UUtah                                             3rd
## 2616                      UUtah                                  accountability
## 2617                      UUtah                                         actions
## 2618                      UUtah                                          affect
## 2619                      UUtah                                     alternative
## 2620                      UUtah                                       americans
## 2621                      UUtah                                      assistants
## 2622                      UUtah                                     backgrounds
## 2623                      UUtah                                         benefit
## 2624                      UUtah                                      categories
## 2625                      UUtah                                           cathy
## 2626                      UUtah                                      classifier
## 2627                      UUtah                                           color
## 2628                      UUtah                                         commons
## 2629                      UUtah                                            comp
## 2630                      UUtah                                        concrete
## 2631                      UUtah                                       condition
## 2632                      UUtah                                      counseling
## 2633                      UUtah                                        counting
## 2634                      UUtah                                        courtesy
## 2635                      UUtah                                         culture
## 2636                      UUtah                                       dedicated
## 2637                      UUtah                                     definitions
## 2638                      UUtah                                    difficulties
## 2639                      UUtah                                        dropping
## 2640                      UUtah                                          easier
## 2641                      UUtah                                   effectiveness
## 2642                      UUtah                                        ensuring
## 2643                      UUtah                                         execute
## 2644                      UUtah                                      explicitly
## 2645                      UUtah                                      expression
## 2646                      UUtah                                       financial
## 2647                      UUtah                                       frontline
## 2648                      UUtah                                           helps
## 2649                      UUtah                                     independent
## 2650                      UUtah                                       index.php
## 2651                      UUtah                                    interactions
## 2652                      UUtah                                    intermediate
## 2653                      UUtah                                      invaluable
## 2654                      UUtah                                        learners
## 2655                      UUtah                                           legal
## 2656                      UUtah                                       mandatory
## 2657                      UUtah                                         manning
## 2658                      UUtah                                         massive
## 2659                      UUtah                                          master
## 2660                      UUtah                                        messages
## 2661                      UUtah                                      milestones
## 2662                      UUtah                                        national
## 2663                      UUtah                                         offense
## 2664                      UUtah                                           party
## 2665                      UUtah                                      phenomenon
## 2666                      UUtah                                       procedure
## 2667                      UUtah                                         profile
## 2668                      UUtah                                    publications
## 2669                      UUtah                                        publicly
## 2670                      UUtah                                            push
## 2671                      UUtah                                           quote
## 2672                      UUtah                                          rachel
## 2673                      UUtah                                       rajaraman
## 2674                      UUtah                                         ranking
## 2675                      UUtah                                       receiving
## 2676                      UUtah                                       recommend
## 2677                      UUtah                                    relationship
## 2678                      UUtah                                       requested
## 2679                      UUtah                                       residence
## 2680                      UUtah                                       respected
## 2681                      UUtah                                          schutt
## 2682                      UUtah                                          select
## 2683                      UUtah                                             sex
## 2684                      UUtah                                       sexuality
## 2685                      UUtah                                        springer
## 2686                      UUtah                                         started
## 2687                      UUtah                                        straight
## 2688                      UUtah                                        strength
## 2689                      UUtah                                          strong
## 2690                      UUtah                                         succeed
## 2691                      UUtah                                           teams
## 2692                      UUtah                                          ullman
## 2693                      UUtah                                          update
## 2694                      UUtah                                        weekends
## 2695                      UUtah                                          witten
## 2696                      UUtah                                           wrong
## 2697                     UMaine                                      instructor
## 2698           Washington_State                                     information
## 2699                     UMaine                                         lecture
## 2700                     UMaine                                         methods
## 2701                     UMaine                                         provide
## 2702                     UMaine                                            real
## 2703                  Princeton                                        building
## 2704                  Princeton                                         covered
## 2705                  Princeton                                        research
## 2706                        LSU                                        expected
## 2707           William_and_Mary                                           learn
## 2708  UWisc_Madison_Programming                                          access
## 2709  UWisc_Madison_Programming                                            date
## 2710  UWisc_Madison_Programming                                         written
## 2711  UWisc_Madison_Programming                                        absences
## 2712  UWisc_Madison_Programming                                             act
## 2713  UWisc_Madison_Programming                                        actively
## 2714  UWisc_Madison_Programming                                            acts
## 2715  UWisc_Madison_Programming                                        choosing
## 2716  UWisc_Madison_Programming                                        citation
## 2717  UWisc_Madison_Programming                                          counts
## 2718  UWisc_Madison_Programming                                         created
## 2719  UWisc_Madison_Programming                                            dean
## 2720  UWisc_Madison_Programming                                           doubt
## 2721  UWisc_Madison_Programming                                          effect
## 2722  UWisc_Madison_Programming                                       essential
## 2723  UWisc_Madison_Programming                                           feels
## 2724  UWisc_Madison_Programming                                       graphical
## 2725  UWisc_Madison_Programming                                          handle
## 2726  UWisc_Madison_Programming                                         hearing
## 2727  UWisc_Madison_Programming                                           human
## 2728  UWisc_Madison_Programming                                       inclusive
## 2729  UWisc_Madison_Programming                                           lines
## 2730  UWisc_Madison_Programming                                           local
## 2731  UWisc_Madison_Programming                                          manual
## 2732  UWisc_Madison_Programming                                            miss
## 2733  UWisc_Madison_Programming                                          notice
## 2734  UWisc_Madison_Programming                                             p.m
## 2735  UWisc_Madison_Programming                                           peers
## 2736  UWisc_Madison_Programming                                    plagiarizing
## 2737  UWisc_Madison_Programming                                       probation
## 2738  UWisc_Madison_Programming                                        proposal
## 2739  UWisc_Madison_Programming                                       reporting
## 2740  UWisc_Madison_Programming                                           serve
## 2741  UWisc_Madison_Programming                                          server
## 2742  UWisc_Madison_Programming                                          stated
## 2743  UWisc_Madison_Programming                                      statements
## 2744  UWisc_Madison_Programming                                            step
## 2745  UWisc_Madison_Programming                                             tas
## 2746  UWisc_Madison_Programming                                     terminology
## 2747  UWisc_Madison_Programming                                      thresholds
## 2748  UWisc_Madison_Programming                                         treated
## 2749  UWisc_Madison_Programming                                        versions
## 2750  UWisc_Madison_Programming                                          visual
## 2751  UWisc_Madison_Programming                                            walk
## 2752  UWisc_Madison_Programming                                       welcoming
## 2753                        ASU                                           books
## 2754                        ASU                                      department
## 2755                        ASU                                      determined
## 2756                        ASU                                           prior
## 2757                        ASU                                           scale
## 2758                     Drexel                                            week
## 2759                    UIU_207                                          topics
## 2760                 UWisconsin                                      statistics
## 2761                    UVA_SDS                                      activities
## 2762                    UVA_SDS                                        material
## 2763                    UVA_SDS                                          review
## 2764                        UMD                                           click
## 2765                        UMD                                        concerns
## 2766                        UMD                                       copyright
## 2767                        UMD                                         defined
## 2768                        UMD                                        directly
## 2769                        UMD                                      discretion
## 2770                        UMD                                         diverse
## 2771                        UMD                                        emphasis
## 2772                        UMD                                       exploring
## 2773                        UMD                                     individuals
## 2774                        UMD                                     instruction
## 2775                        UMD                                       languages
## 2776                        UMD                                       libraries
## 2777                        UMD                                          module
## 2778                        UMD                                         nearest
## 2779                        UMD                                           numpy
## 2780                        UMD                                         portion
## 2781                        UMD                                         purpose
## 2782                        UMD                                       recognize
## 2783                        UMD                                         reflect
## 2784                        UMD                                          scores
## 2785                        UMD                                          search
## 2786                        UMD                                           share
## 2787                        UMD                                            stat
## 2788                        UMD                                         writing
## 2789           William_and_Mary                                         allowed
## 2790           William_and_Mary                                         applied
## 2791           William_and_Mary                                      classmates
## 2792           William_and_Mary                                          coding
## 2793           William_and_Mary                                           files
## 2794           William_and_Mary                                          friday
## 2795           William_and_Mary                                          health
## 2796           William_and_Mary                                       introduce
## 2797           William_and_Mary                                        notebook
## 2798           William_and_Mary                                          pandas
## 2799           William_and_Mary                                      processing
## 2800           William_and_Mary                                       scheduled
## 2801           William_and_Mary                                        specific
## 2802           William_and_Mary                                            type
## 2803                    Rutgers                                     description
## 2804                  UKentucky                                       materials
## 2805                  UKentucky                                         section
## 2806                  UKentucky                                             set
## 2807                  UKentucky                                          submit
## 2808                  UKentucky                                      understand
## 2809            Montgomery_Coll                                        accepted
## 2810            Montgomery_Coll                                   communication
## 2811            Montgomery_Coll                                           found
## 2812            Montgomery_Coll                                        modeling
## 2813            Montgomery_Coll                                            read
## 2814            Montgomery_Coll                                         sources
## 2815            Montgomery_Coll                                           times
## 2816                    UIU_107                                   understanding
## 2817                   NYU_DS4E                                          assess
## 2818                   NYU_DS4E                                        critical
## 2819                   NYU_DS4E                                      cumulative
## 2820                   NYU_DS4E                                     development
## 2821                   NYU_DS4E                                    distribution
## 2822                   NYU_DS4E                                      documented
## 2823                   NYU_DS4E                                    expectations
## 2824                   NYU_DS4E                                         finding
## 2825                   NYU_DS4E                                           makes
## 2826                   NYU_DS4E                                           meets
## 2827                   NYU_DS4E                                        original
## 2828                   NYU_DS4E                                       practices
## 2829                   NYU_DS4E                                          public
## 2830                   NYU_DS4E                                       reference
## 2831                   NYU_DS4E                                           tests
## 2832                   NYU_DS4E                                        training
## 2833                     Drexel                                             key
## 2834                     Drexel                                      processing
## 2835                     Drexel                                         testing
## 2836                      UUtah                                             2nd
## 2837                      UUtah                                        deadline
## 2838                      UUtah                                        decision
## 2839                      UUtah                                           guide
## 2840                      UUtah                                    instructions
## 2841                      UUtah                                         jupyter
## 2842                      UUtah                                           major
## 2843                      UUtah                                     performance
## 2844                      UUtah                                          school
## 2845                      UUtah                                            test
## 2846                      UUtah                                           total
## 2847                    UZurich                                        approach
## 2848                    UZurich                                          basics
## 2849                    UZurich                                     engineering
## 2850                    UZurich                                           major
## 2851                    UZurich                                     performance
## 2852                    UZurich                                        solution
## 2853                    UZurich                                        standard
## 2854                    UZurich                                       statement
## 2855                   UVA_Stat                                            free
## 2856                    Rutgers                                           final
## 2857                  UKentucky                                        syllabus
## 2858                        MIT                                         machine
## 2859                        MIT                                          models
## 2860                        MIT                                        projects
## 2861                 UWisconsin                                   accessibility
## 2862                 UWisconsin                                        policies
## 2863                 UWisconsin                                           study
## 2864                        UMD                                           weeks
## 2865                      UUtah                                        personal
## 2866                 Boston_Uni                                        language
## 2867                 Boston_Uni                                   prerequisites
## 2868                 Boston_Uni                                         results
## 2869                     UMaine                                          change
## 2870                     UMaine                                   collaboration
## 2871                     UMaine                                         college
## 2872                     UMaine                                         covered
## 2873                     UMaine                                           focus
## 2874                     UMaine                                        internet
## 2875                     UMaine                                            site
## 2876                     UMaine                                          taking
## 2877                  UKentucky                                      assessment
## 2878                  UKentucky                                           avoid
## 2879                  UKentucky                                           basis
## 2880                  UKentucky                                        cheating
## 2881                  UKentucky                                          choose
## 2882                  UKentucky                                   circumstances
## 2883                  UKentucky                                       classroom
## 2884                  UKentucky                                        cleaning
## 2885                  UKentucky                                        evaluate
## 2886                  UKentucky                                           files
## 2887                  UKentucky                                  interpretation
## 2888                  UKentucky                                       introduce
## 2889                  UKentucky                                          method
## 2890                  UKentucky                                        programs
## 2891                  UKentucky                                     recommended
## 2892                  UKentucky                                  responsibility
## 2893                  UKentucky                                         summary
## 2894                  UKentucky                                            type
## 2895                        ASU                                        expected
## 2896                    UVA_SDS                                             2nd
## 2897                    UVA_SDS                                        advanced
## 2898                    UVA_SDS                                        approach
## 2899                    UVA_SDS                                         ethical
## 2900                    UVA_SDS                                         feature
## 2901                    UVA_SDS                                            feel
## 2902                    UVA_SDS                                      individual
## 2903                    UVA_SDS                                            life
## 2904                    UVA_SDS                                           major
## 2905                    UVA_SDS                                      objectives
## 2906                    UVA_SDS                                        solution
## 2907                    UVA_SDS                                         subject
## 2908                        UMD                                      understand
## 2909           William_and_Mary                                            free
## 2910                    Cornell                                         section
## 2911                 UWisconsin                                          linear
## 2912                 UWisconsin                                            acts
## 2913                 UWisconsin                                           begin
## 2914                 UWisconsin                                           cloud
## 2915                 UWisconsin                                        commonly
## 2916                 UWisconsin                                     conditional
## 2917                 UWisconsin                                          counts
## 2918                 UWisconsin                                        database
## 2919                 UWisconsin                                        delivery
## 2920                 UWisconsin                                    disciplinary
## 2921                 UWisconsin                                      dishonesty
## 2922                 UWisconsin                                       effective
## 2923                 UWisconsin                                       evaluated
## 2924                 UWisconsin                                     examination
## 2925                 UWisconsin                                        graphics
## 2926                 UWisconsin                                  implementation
## 2927                 UWisconsin                                      incomplete
## 2928                 UWisconsin                                        maintain
## 2929                 UWisconsin                                       microsoft
## 2930                 UWisconsin                                          nature
## 2931                 UWisconsin                                      operations
## 2932                 UWisconsin                                          origin
## 2933                 UWisconsin                                             p.m
## 2934                 UWisconsin                                    plagiarizing
## 2935                 UWisconsin                                      properties
## 2936                 UWisconsin                                      publishing
## 2937                 UWisconsin                                       remaining
## 2938                 UWisconsin                                       responses
## 2939                 UWisconsin                                          rights
## 2940                 UWisconsin                                         virtual
## 2941                    Harvard                                      attendance
## 2942                    Harvard                                     communicate
## 2943                    Harvard                                      completion
## 2944                    Harvard                                           error
## 2945                    Harvard                                           extra
## 2946                    Harvard                                       knowledge
## 2947                    Harvard                                            list
## 2948                    Harvard                                          random
## 2949                    Harvard                                           study
## 2950                        UMD                                        syllabus
## 2951           Washington_State                                         algebra
## 2952           Washington_State                                         faculty
## 2953           Washington_State                                           guide
## 2954           Washington_State                                           level
## 2955           Washington_State                                        networks
## 2956           Washington_State                                     participate
## 2957           Washington_State                                     performance
## 2958           Washington_State                                        sciences
## 2959           Washington_State                                        solution
## 2960           Washington_State                                         solving
## 2961           Washington_State                                         subject
## 2962     UWisc_Madison_Modeling                                        expected
## 2963     UWisc_Madison_Modeling                                        semester
## 2964     UWisc_Madison_Modeling                                   understanding
## 2965                        LSU                                          answer
## 2966                        LSU                                          attend
## 2967                        LSU                                         classes
## 2968                        LSU                                      considered
## 2969                        LSU                                          design
## 2970                        LSU                                            drop
## 2971                        LSU                                            goal
## 2972                        LSU                                           hands
## 2973                        LSU                                           short
## 2974                        ASU                                         student
## 2975                   NYU_DS4E                                        lectures
## 2976                   NYU_DS4E                                         machine
## 2977                   NYU_DS4E                                         methods
## 2978                   NYU_DS4E                                            real
## 2979                NYU_IntroDS                                            exam
## 2980                NYU_IntroDS                                        schedule
## 2981                      Brown                                            exam
## 2982                      Brown                                        schedule
## 2983                 UCSanDiego                                         college
## 2984                 UCSanDiego                                         explain
## 2985                 UCSanDiego                                           ideas
## 2986                 UCSanDiego                                         program
## 2987                   NYU_DS4E                                     statistical
## 2988                  UKentucky                                        concepts
## 2989                  UKentucky                                            free
## 2990                 UCSanDiego                                        concepts
## 2991                 UCSanDiego                                          python
## 2992                       CUNY                                      activities
## 2993                    Cornell                                      assessment
## 2994                    Cornell                                       classroom
## 2995                    Cornell                                            hall
## 2996                    Cornell                                     preparation
## 2997                    Cornell                                        sections
## 2998                    Cornell                                         summary
## 2999                    Cornell                                       textbooks
## 3000                    Cornell                                         version
## 3001                   NYU_DS4E                                            read
## 3002                NYU_IntroDS                                  classification
## 3003                NYU_IntroDS                                        modeling
## 3004                   UToronto                                           dates
## 3005                   UToronto                                          issues
## 3006                   UToronto                                        language
## 3007                   UToronto                                         reading
## 3008                   UToronto                                          weekly
## 3009                     Drexel                                              ab
## 3010                     Drexel                                            adam
## 3011                     Drexel                                          agents
## 3012                     Drexel                                   amazonaws.com
## 3013                     Drexel                                            apps
## 3014                     Drexel                                             bad
## 3015                     Drexel                                            base
## 3016                     Drexel                                          bishop
## 3017                     Drexel                                          bottom
## 3018                     Drexel                                           broad
## 3019                     Drexel                                    capabilities
## 3020                     Drexel                                         careers
## 3021                     Drexel                                              ce
## 3022                     Drexel                                 characteristics
## 3023                     Drexel                                           chief
## 3024                     Drexel                                             chu
## 3025                     Drexel                                    combinations
## 3026                     Drexel                                      compliance
## 3027                     Drexel                                      consulting
## 3028                     Drexel                                       contained
## 3029                     Drexel                                          daniel
## 3030                     Drexel                                       deduction
## 3031                     Drexel                                          deluge
## 3032                     Drexel                                          digits
## 3033                     Drexel                                    download.php
## 3034                     Drexel                                     efficiently
## 3035                     Drexel                                  electronically
## 3036                     Drexel                                        emerging
## 3037                     Drexel                                          engine
## 3038                     Drexel                                         expects
## 3039                     Drexel                                         forward
## 3040                     Drexel                                      frameworks
## 3041                     Drexel                                          harris
## 3042                     Drexel                                         hbr.org
## 3043                     Drexel                                              id
## 3044                     Drexel                                      illustrate
## 3045                     Drexel                                     illustrated
## 3046                     Drexel                                      increasing
## 3047                     Drexel                                     informatics
## 3048                     Drexel                                        integral
## 3049                     Drexel                               interdisciplinary
## 3050                     Drexel                                        interval
## 3051                     Drexel                                          issued
## 3052                     Drexel                                            it’s
## 3053                     Drexel                                            jake
## 3054                     Drexel                                             jan
## 3055                     Drexel                                         january
## 3056                     Drexel                                          justin
## 3057                     Drexel                                          kaggle
## 3058                     Drexel                                           kevin
## 3059                     Drexel                                             lee
## 3060                     Drexel                                         listing
## 3061                     Drexel                                         matthew
## 3062                     Drexel                                       milestone
## 3063                     Drexel                                          miller
## 3064                     Drexel                                         mixture
## 3065                     Drexel                                           names
## 3066                     Drexel                                         observe
## 3067                     Drexel                                        obsolete
## 3068                     Drexel                                         oreilly
## 3069                     Drexel                                            play
## 3070                     Drexel                                       pregnancy
## 3071                     Drexel                                         preview
## 3072                     Drexel                                          rafael
## 3073                     Drexel                                       recording
## 3074                     Drexel                                          reduce
## 3075                     Drexel                                      reflection
## 3076                     Drexel                                     retaliation
## 3077                     Drexel                                              s3
## 3078                     Drexel                                         satisfy
## 3079                     Drexel                                        semantic
## 3080                     Drexel                                        separate
## 3081                     Drexel                                            span
## 3082                     Drexel                                      thoughtful
## 3083                     Drexel                                 transformations
## 3084                     Drexel                                    transforming
## 3085                     Drexel                                      unforeseen
## 3086                     Drexel                                         uploads
## 3087                     Drexel                                            utah
## 3088                     Drexel                                          what’s
## 3089                     Drexel                                     withdrawing
## 3090                      UUtah                                       including
## 3091  UWisc_Madison_Programming                                           focus
## 3092  UWisc_Madison_Programming                                           ideas
## 3093  UWisc_Madison_Programming                                         program
## 3094  UWisc_Madison_Programming                                        research
## 3095  UWisc_Madison_Programming                                          taking
## 3096               Georgia_Tech                                      additional
## 3097               Georgia_Tech                                           basic
## 3098               Georgia_Tech                                         support
## 3099                 UCSanDiego                                          issues
## 3100           William_and_Mary                                          access
## 3101           William_and_Mary                                        assigned
## 3102           William_and_Mary                                          linear
## 3103           William_and_Mary                                   participation
## 3104           William_and_Mary                                         website
## 3105                 UWisconsin                                          models
## 3106                      UUtah                                      additional
## 3107                    UZurich                                       resources
## 3108                        UMD                                     information
## 3109                  Princeton                                             2nd
## 3110                  Princeton                                            core
## 3111                  Princeton                                     engineering
## 3112                  Princeton                                         feature
## 3113                  Princeton                                          laptop
## 3114                  Princeton                                          monday
## 3115                  Princeton                                        networks
## 3116                  Princeton                                          spring
## 3117                  Princeton                                            test
## 3118                  Princeton                                             top
## 3119                  Princeton                                         tuesday
## 3120                        ASU                                        provided
## 3121                        ASU                                          system
## 3122                    UIU_207                                        computer
## 3123                    UIU_207                                        lectures
## 3124                    UIU_207                                         machine
## 3125                    UIU_207                                          models
## 3126                    UIU_207                                      techniques
## 3127  UWisc_Madison_Programming                                           dates
## 3128  UWisc_Madison_Programming                                        readings
## 3129                     UMaine                                          grades
## 3130                     UMaine                                           notes
## 3131  UWisc_Madison_Programming                                            week
## 3132                      UUtah                                      university
## 3133                    Cornell                                           tools
## 3134                 UCBerkeley                                           based
## 3135                    Harvard                                        computer
## 3136                    Harvard                                          models
## 3137                    Harvard                                        projects
## 3138                    Harvard                                      techniques
## 3139            Montgomery_Coll                                          campus
## 3140            Montgomery_Coll                                          common
## 3141            Montgomery_Coll                                          create
## 3142            Montgomery_Coll                                          graded
## 3143            Montgomery_Coll                                           means
## 3144            Montgomery_Coll                                        outcomes
## 3145            Montgomery_Coll                                     submissions
## 3146                    UIU_207                                        analysis
## 3147                    UIU_207                                           final
## 3148                  UKentucky                                            date
## 3149           William_and_Mary                                         aspects
## 3150           William_and_Mary                                         central
## 3151           William_and_Mary                                      collection
## 3152           William_and_Mary                                     demonstrate
## 3153           William_and_Mary                                        features
## 3154           William_and_Mary                                       functions
## 3155           William_and_Mary                                          future
## 3156           William_and_Mary                                          impact
## 3157           William_and_Mary                                        location
## 3158           William_and_Mary                                          modern
## 3159           William_and_Mary                                        official
## 3160           William_and_Mary                                          period
## 3161           William_and_Mary                                           phone
## 3162           William_and_Mary                                       preferred
## 3163           William_and_Mary                                         primary
## 3164           William_and_Mary                                             run
## 3165           William_and_Mary                                        sessions
## 3166           William_and_Mary                                        strongly
## 3167           William_and_Mary                                       wednesday
## 3168                    UVA_SDS                                      additional
## 3169                    UVA_SDS                                       materials
## 3170                    UVA_SDS                                         section
## 3171                    UVA_SDS                                          submit
## 3172                      UUtah                                        cheating
## 3173                      UUtah                                            copy
## 3174                      UUtah                                         edition
## 3175                      UUtah                                           files
## 3176                      UUtah                                      processing
## 3177                      UUtah                                     recommended
## 3178                      UUtah                                        requests
## 3179                      UUtah                                       textbooks
## 3180                      UUtah                                         version
## 3181                      UUtah                                            zoom
## 3182  UWisc_Madison_Programming                                     information
## 3183  UWisc_Madison_Programming                                            time
## 3184                    UZurich                                           avoid
## 3185                    UZurich                                          choose
## 3186                    UZurich                                        notebook
## 3187                    UZurich                                     preparation
## 3188                    UZurich                                         require
## 3189                    UZurich                                         testing
## 3190                     Drexel                                        features
## 3191                     Drexel                                        official
## 3192                     Drexel                                       practical
## 3193                     Drexel                                           press
## 3194                     Drexel                                             run
## 3195                     Drexel                                          simple
## 3196                     Drexel                                          status
## 3197                    Harvard                                           final
## 3198           Washington_State                                        analysis
## 3199                    Rutgers                                          credit
## 3200                    Harvard                                        required
## 3201            Montgomery_Coll                                           tools
## 3202                     Drexel                                          source
## 3203                     Drexel                                           weeks
## 3204                    UIU_107                                        projects
## 3205                 UCBerkeley                                         student
## 3206                   NYU_DS4E                                        chapters
## 3207                   NYU_DS4E                                        creating
## 3208                   NYU_DS4E                                   distributions
## 3209                   NYU_DS4E                                   documentation
## 3210                   NYU_DS4E                                            earn
## 3211                   NYU_DS4E                                       emergency
## 3212                   NYU_DS4E                                           equal
## 3213                   NYU_DS4E                                     expressions
## 3214                   NYU_DS4E                                            hand
## 3215                   NYU_DS4E                                      importance
## 3216                   NYU_DS4E                                          length
## 3217                   NYU_DS4E                                            line
## 3218                   NYU_DS4E                                            mark
## 3219                   NYU_DS4E                                         mastery
## 3220                   NYU_DS4E                                          output
## 3221                   NYU_DS4E                                           power
## 3222                   NYU_DS4E                                         product
## 3223                   NYU_DS4E                                         quality
## 3224                   NYU_DS4E                                      requesting
## 3225                   NYU_DS4E                                           steps
## 3226                   NYU_DS4E                                            tool
## 3227                   NYU_DS4E                                       transform
## 3228                   NYU_DS4E                                     visualizing
## 3229                   NYU_DS4E                                            wide
## 3230                        UMD                                           check
## 3231                        UMD                                         process
## 3232                        UMD                                         sharing
## 3233                        UMD                                       technical
## 3234                 UWisconsin                                         analyze
## 3235                 UWisconsin                                           build
## 3236                 UWisconsin                                      evaluation
## 3237                 UWisconsin                                         program
## 3238                 UWisconsin                                          report
## 3239                 UWisconsin                                         request
## 3240                      UUtah                                         related
## 3241                      UUtah                                        services
## 3242                      UUtah                                           write
## 3243           Washington_State                                       resources
## 3244           Washington_State                                             set
## 3245                 Boston_Uni                                   communication
## 3246                 Boston_Uni                                        datasets
## 3247                 Boston_Uni                                            note
## 3248                 Boston_Uni                                         sources
## 3249                 Boston_Uni                                           times
## 3250                     UMaine                                      coursework
## 3251                     UMaine                                          laptop
## 3252                     UMaine                                           level
## 3253                     UMaine                                        question
## 3254                     UMaine                                         solving
## 3255                     UMaine                                        standard
## 3256                     UMaine                                             top
## 3257                     UMaine                                           types
## 3258                 UCSanDiego                                           notes
## 3259                        MIT                                      activities
## 3260                        MIT                                           notes
## 3261                        MIT                                           staff
## 3262                    UVA_SDS                                         applied
## 3263                    UVA_SDS                                        business
## 3264                    UVA_SDS                                          coding
## 3265                    UVA_SDS                                          friday
## 3266                    UVA_SDS                                     fundamental
## 3267                    UVA_SDS                                     instructors
## 3268                    UVA_SDS                                           intro
## 3269                    UVA_SDS                                       introduce
## 3270                    UVA_SDS                                             key
## 3271                    UVA_SDS                                        notebook
## 3272                    UVA_SDS                                         require
## 3273                    UVA_SDS                                  responsibility
## 3274                    UVA_SDS                                        sections
## 3275                  UKentucky                                      collection
## 3276                  UKentucky                                      foundation
## 3277                  UKentucky                                          future
## 3278                  UKentucky                                     inferential
## 3279                  UKentucky                                         penalty
## 3280                  UKentucky                                          period
## 3281                  UKentucky                                       preferred
## 3282                  UKentucky                                         primary
## 3283                  UKentucky                                       professor
## 3284                  UKentucky                                          status
## 3285                  UKentucky                                       wednesday
## 3286                  Princeton                                    introduction
## 3287                     UMaine                                            exam
## 3288                   NYU_DS4E                                            time
## 3289                 UCSanDiego                                       abilities
## 3290                 UCSanDiego                                        adhikari
## 3291                 UCSanDiego                                          advice
## 3292                 UCSanDiego                                           agree
## 3293                 UCSanDiego                                             ani
## 3294                 UCSanDiego                                        answered
## 3295                 UCSanDiego                                        applying
## 3296                 UCSanDiego                                       automated
## 3297                 UCSanDiego                                     backgrounds
## 3298                 UCSanDiego                                         benefit
## 3299                 UCSanDiego                                          career
## 3300                 UCSanDiego                                         chances
## 3301                 UCSanDiego                                         chronic
## 3302                 UCSanDiego                                        computed
## 3303                 UCSanDiego                                       condition
## 3304                 UCSanDiego                                        conflict
## 3305                 UCSanDiego                                      connection
## 3306                 UCSanDiego                                          denero
## 3307                 UCSanDiego                                           depth
## 3308                 UCSanDiego                                          double
## 3309                 UCSanDiego                                         dropped
## 3310                 UCSanDiego                                          earned
## 3311                 UCSanDiego                                          enroll
## 3312                 UCSanDiego                                             fix
## 3313                 UCSanDiego                                           helps
## 3314                 UCSanDiego                                            idea
## 3315                 UCSanDiego                                     interacting
## 3316                 UCSanDiego                                     interaction
## 3317                 UCSanDiego                                           issue
## 3318                 UCSanDiego                                            left
## 3319                 UCSanDiego                                            lose
## 3320                 UCSanDiego                                      meaningful
## 3321                 UCSanDiego                                       offerings
## 3322                 UCSanDiego                                           party
## 3323                 UCSanDiego                                     psychiatric
## 3324                 UCSanDiego                                   psychological
## 3325                 UCSanDiego                                       receiving
## 3326                 UCSanDiego                                      registered
## 3327                 UCSanDiego                                       reinforce
## 3328                 UCSanDiego                                        remotely
## 3329                 UCSanDiego                                       respected
## 3330                 UCSanDiego                                        sequence
## 3331                 UCSanDiego                                             tag
## 3332                 UCSanDiego                                             tbd
## 3333                 UCSanDiego                                     transparent
## 3334                 UCSanDiego                                           trust
## 3335                 UCSanDiego                                         typical
## 3336                NYU_IntroDS                                      instructor
## 3337                      Brown                                      instructor
## 3338                        UMD                                             day
## 3339                        UMD                                        actively
## 3340                        UMD                                       addressed
## 3341                        UMD                                            chat
## 3342                        UMD                                         collect
## 3343                        UMD                                     comfortable
## 3344                        UMD                                   communicating
## 3345                        UMD                                          comply
## 3346                        UMD                                       conducted
## 3347                        UMD                                           covid
## 3348                        UMD                                        database
## 3349                        UMD                                      developing
## 3350                        UMD                                          effect
## 3351                        UMD                                         equally
## 3352                        UMD                                     exceptional
## 3353                        UMD                                           forms
## 3354                        UMD                                           forum
## 3355                        UMD                                    fundamentals
## 3356                        UMD                                      identities
## 3357                        UMD                                         illness
## 3358                        UMD                                         improve
## 3359                        UMD                                        industry
## 3360                        UMD                                             law
## 3361                        UMD                                         located
## 3362                        UMD                                          obtain
## 3363                        UMD                                             p.m
## 3364                        UMD                                       probation
## 3365                        UMD                                       requiring
## 3366                        UMD                                     responsibly
## 3367                        UMD                                        settings
## 3368                        UMD                                          single
## 3369                        UMD                                             sql
## 3370                        UMD                                      strategies
## 3371                        UMD                                           track
## 3372                        UMD                                         treated
## 3373                        UMD                                         visible
## 3374                        UMD                                        websites
## 3375                        UMD                                        weighted
## 3376           Washington_State                                        syllabus
## 3377           Washington_State                                      university
## 3378                 UWisconsin                                        examples
## 3379                 UWisconsin                                        readings
## 3380                    UZurich                                        concepts
## 3381                    Cornell                                        software
## 3382                    Harvard                                         analyze
## 3383                    Harvard                                       analyzing
## 3384                    Harvard                                         details
## 3385                    Harvard                                         explain
## 3386                    Harvard                                        internet
## 3387                    Harvard                                        multiple
## 3388                    Harvard                                         perform
## 3389                    Harvard                                          taking
## 3390                    Harvard                                            text
## 3391                      UUtah                                         methods
## 3392                        ASU                                        lectures
## 3393                        LSU                                      evaluation
## 3394                        LSU                                          format
## 3395                        LSU                                           ideas
## 3396                        LSU                                      management
## 3397                        LSU                                         perform
## 3398                        LSU                                          person
## 3399                        LSU                                        relevant
## 3400  UWisc_Madison_Programming                                       abilities
## 3401  UWisc_Madison_Programming                                          advice
## 3402  UWisc_Madison_Programming                                       americans
## 3403  UWisc_Madison_Programming                                   approximately
## 3404  UWisc_Madison_Programming                                            comp
## 3405  UWisc_Madison_Programming                                      complaints
## 3406  UWisc_Madison_Programming                                        conflict
## 3407  UWisc_Madison_Programming                                   contributions
## 3408  UWisc_Madison_Programming                                          copied
## 3409  UWisc_Madison_Programming                                         culture
## 3410  UWisc_Madison_Programming                                    difficulties
## 3411  UWisc_Madison_Programming                                        embedded
## 3412  UWisc_Madison_Programming                                        ensuring
## 3413  UWisc_Madison_Programming                                           essay
## 3414  UWisc_Madison_Programming                                     evaluations
## 3415  UWisc_Madison_Programming                                         extreme
## 3416  UWisc_Madison_Programming                                          figure
## 3417  UWisc_Madison_Programming                                             fix
## 3418  UWisc_Madison_Programming                                          friend
## 3419  UWisc_Madison_Programming                                           helps
## 3420  UWisc_Madison_Programming                                      humanities
## 3421  UWisc_Madison_Programming                                        identity
## 3422  UWisc_Madison_Programming                                       instances
## 3423  UWisc_Madison_Programming                                     institution
## 3424  UWisc_Madison_Programming                                        involves
## 3425  UWisc_Madison_Programming                                             log
## 3426  UWisc_Madison_Programming                                            lose
## 3427  UWisc_Madison_Programming                                         matters
## 3428  UWisc_Madison_Programming                                        messages
## 3429  UWisc_Madison_Programming                                      milestones
## 3430  UWisc_Madison_Programming                                           multi
## 3431  UWisc_Madison_Programming                                          notify
## 3432  UWisc_Madison_Programming                                         options
## 3433  UWisc_Madison_Programming                                            peer
## 3434  UWisc_Madison_Programming                                       primarily
## 3435  UWisc_Madison_Programming                                         printed
## 3436  UWisc_Madison_Programming                                       procedure
## 3437  UWisc_Madison_Programming                                     programmers
## 3438  UWisc_Madison_Programming                                       protected
## 3439  UWisc_Madison_Programming                                           quote
## 3440  UWisc_Madison_Programming                                       recommend
## 3441  UWisc_Madison_Programming                                          record
## 3442  UWisc_Madison_Programming                                      represents
## 3443  UWisc_Madison_Programming                                       requested
## 3444  UWisc_Madison_Programming                                          screen
## 3445  UWisc_Madison_Programming                                        strength
## 3446  UWisc_Madison_Programming                                           style
## 3447  UWisc_Madison_Programming                                        supports
## 3448  UWisc_Madison_Programming                                      suspension
## 3449  UWisc_Madison_Programming                                            tips
## 3450  UWisc_Madison_Programming                                     transparent
## 3451  UWisc_Madison_Programming                                          unable
## 3452  UWisc_Madison_Programming                                       uploading
## 3453  UWisc_Madison_Programming                                           voice
## 3454           Washington_State                                         allowed
## 3455           Washington_State                                         applied
## 3456           Washington_State                                        cheating
## 3457           Washington_State                                         current
## 3458           Washington_State                                          health
## 3459           Washington_State                                           intro
## 3460           Washington_State                                       introduce
## 3461           Washington_State                                           links
## 3462           Washington_State                                     recommended
## 3463                   UVA_Stat                                    introduction
## 3464                     Drexel                                        material
## 3465                   UToronto                                      statistics
## 3466                 UCSanDiego                                        approach
## 3467                 UCSanDiego                                         ethical
## 3468                 UCSanDiego                                            feel
## 3469                 UCSanDiego                                           level
## 3470                 UCSanDiego                                           major
## 3471                 UCSanDiego                                     participate
## 3472                 UCSanDiego                                         solving
## 3473                        ASU                                         grading
## 3474                        ASU                                       including
## 3475                  UKentucky                                         grading
## 3476     UWisc_Madison_Modeling                                     description
## 3477     UWisc_Madison_Modeling                                         lecture
## 3478     UWisc_Madison_Modeling                                        lectures
## 3479                   NYU_DS4E                                        identify
## 3480                   NYU_DS4E                                           means
## 3481                NYU_IntroDS                                           means
## 3482                NYU_IntroDS                                         related
## 3483                NYU_IntroDS                                           solve
## 3484                NYU_IntroDS                                     submissions
## 3485                NYU_IntroDS                                        thinking
## 3486                   NYU_DS4E                                  accommodations
## 3487                   NYU_DS4E                                          grades
## 3488                    Cornell                                     computation
## 3489                    Cornell                                         credits
## 3490                    Cornell                                      extensions
## 3491                    Cornell                                          follow
## 3492                    Cornell                                          modern
## 3493                    Cornell                                             pdf
## 3494                    Cornell                                         penalty
## 3495                    Cornell                                          period
## 3496                    Cornell                                      principles
## 3497                    Cornell                                       professor
## 3498                    Cornell                                             run
## 3499                    Cornell                                    specifically
## 3500                    Cornell                                          status
## 3501                    Cornell                                   undergraduate
## 3502                   UToronto                                  classification
## 3503                   UToronto                                   communication
## 3504                   UToronto                                            labs
## 3505                       CUNY                                         midterm
## 3506                       CUNY                                      understand
## 3507                      UUtah                                     accelerated
## 3508                      UUtah                                        accessed
## 3509                      UUtah                                       acquiring
## 3510                      UUtah                                       activites
## 3511                      UUtah                                      addressing
## 3512                      UUtah                                          advise
## 3513                      UUtah                                     affirmative
## 3514                      UUtah                                           anand
## 3515                      UUtah                                        arranged
## 3516                      UUtah                                       assaulted
## 3517                      UUtah                                       assigning
## 3518                      UUtah                                           audio
## 3519                      UUtah                                         awarded
## 3520                      UUtah                                       bootstrap
## 3521                      UUtah                                     calculating
## 3522                      UUtah                                            caps
## 3523                      UUtah                                         careful
## 3524                      UUtah                                              cc
## 3525                      UUtah                                          chosen
## 3526                      UUtah                                    circumstance
## 3527                      UUtah                                           civil
## 3528                      UUtah                                         closely
## 3529                      UUtah                                         company
## 3530                      UUtah                                     coordinator
## 3531                      UUtah                                     copyrighted
## 3532                      UUtah                                        course's
## 3533                      UUtah                                      critically
## 3534                      UUtah                                            daca
## 3535                      UUtah                                           dealt
## 3536                      UUtah                                          depend
## 3537                      UUtah                                           drawn
## 3538                      UUtah                                        engaging
## 3539                      UUtah                                         ensures
## 3540                      UUtah                                          factor
## 3541                      UUtah                                         genetic
## 3542                      UUtah                                            grus
## 3543                      UUtah                                             han
## 3544                      UUtah                                         handled
## 3545                      UUtah                                        harassed
## 3546                      UUtah                                           hints
## 3547                      UUtah                                           ideal
## 3548                      UUtah                                      imperative
## 3549                      UUtah                                   incorporating
## 3550                      UUtah                                           input
## 3551                      UUtah                                        instance
## 3552                      UUtah                                       institute
## 3553                      UUtah                                       isolation
## 3554                      UUtah                                          issued
## 3555                      UUtah                                            jian
## 3556                      UUtah                                          jiawei
## 3557                      UUtah                                            joel
## 3558                      UUtah                                            jure
## 3559                      UUtah                                          kamber
## 3560                      UUtah                                        kaufmann
## 3561                      UUtah                                        leskovec
## 3562                      UUtah                                           lives
## 3563                      UUtah                                    manipulating
## 3564                      UUtah                                            matt
## 3565                      UUtah                                             max
## 3566                      UUtah                                       micheline
## 3567                      UUtah                                           mixed
## 3568                      UUtah                                          morgan
## 3569                      UUtah                                         munging
## 3570                      UUtah                                     nationality
## 3571                      UUtah                                       obstacles
## 3572                      UUtah                                         ongoing
## 3573                      UUtah                                          orally
## 3574                      UUtah                                         oreilly
## 3575                      UUtah                                     orientation
## 3576                      UUtah                                           owned
## 3577                      UUtah                                             pei
## 3578                      UUtah                                     permissible
## 3579                      UUtah                                            pick
## 3580                      UUtah                                        plotting
## 3581                      UUtah                                      preferably
## 3582                      UUtah                                           proof
## 3583                      UUtah                                          proper
## 3584                      UUtah                                       published
## 3585                      UUtah                                           ready
## 3586                      UUtah                                         recover
## 3587                      UUtah                                       referring
## 3588                      UUtah                                          remove
## 3589                      UUtah                                        sanction
## 3590                      UUtah                                         scratch
## 3591                      UUtah                                          severe
## 3592                      UUtah                                           split
## 3593                      UUtah                                          stress
## 3594                      UUtah                                          thrive
## 3595                      UUtah                                          trevor
## 3596                      UUtah                                         violate
## 3597                      UUtah                                        violence
## 3598                      UUtah                                     withdrawing
## 3599  UWisc_Madison_Programming                                        deadline
## 3600  UWisc_Madison_Programming                                            form
## 3601  UWisc_Madison_Programming                                    instructions
## 3602  UWisc_Madison_Programming                                     participate
## 3603  UWisc_Madison_Programming                                        question
## 3604  UWisc_Madison_Programming                                             top
## 3605     UWisc_Madison_Modeling                                           final
## 3606                 UCSanDiego                                          center
## 3607                 UCSanDiego                                         content
## 3608                 UCSanDiego                                            note
## 3609                UWashington                                    introduction
## 3610                UWashington                                          topics
## 3611           William_and_Mary                                         results
## 3612           William_and_Mary                                        textbook
## 3613                      UUtah                                          linear
## 3614                NYU_IntroDS                                          python
## 3615                       CUNY                                           learn
## 3616                       CUNY                                     statistical
## 3617                        ASU                                        building
## 3618                        ASU                                         covered
## 3619                        ASU                                      evaluation
## 3620                        ASU                                        multiple
## 3621                        ASU                                         perform
## 3622                        ASU                                         program
## 3623                        ASU                                        relevant
## 3624                        ASU                                          report
## 3625                        ASU                                        requires
## 3626                        ASU                                          taking
## 3627                        ASU                                            text
## 3628                        ASU                                           visit
## 3629                 UWisconsin                                          review
## 3630                  Princeton                                         allowed
## 3631                  Princeton                                           basis
## 3632                  Princeton                                          canvas
## 3633                  Princeton                                           cross
## 3634                  Princeton                                           files
## 3635                  Princeton                                         testing
## 3636  UWisc_Madison_Programming                                   communication
## 3637  UWisc_Madison_Programming                                        datasets
## 3638                 UWisconsin                                       americans
## 3639                 UWisconsin                                  clarifications
## 3640                 UWisconsin                                         cluster
## 3641                 UWisconsin                                      comparison
## 3642                 UWisconsin                                           count
## 3643                 UWisconsin                                     definitions
## 3644                 UWisconsin                                          easily
## 3645                 UWisconsin                                       ecosystem
## 3646                 UWisconsin                                   effectiveness
## 3647                 UWisconsin                                         extreme
## 3648                 UWisconsin                                            item
## 3649                 UWisconsin                                          manage
## 3650                 UWisconsin                                       offerings
## 3651                 UWisconsin                                   organizations
## 3652                 UWisconsin                                        outlined
## 3653                 UWisconsin                                         partial
## 3654                 UWisconsin                                           plots
## 3655                 UWisconsin                                         profile
## 3656                 UWisconsin                                      protecting
## 3657                 UWisconsin                                    publications
## 3658                 UWisconsin                                        reserves
## 3659                 UWisconsin                                            rise
## 3660                 UWisconsin                                            risk
## 3661                 UWisconsin                                          senior
## 3662                 UWisconsin                                         staying
## 3663                 UWisconsin                                         surveys
## 3664                 UWisconsin                                             tom
## 3665                 UWisconsin                                          volume
## 3666             UniSys_Georgia                                            free
## 3667            Montgomery_Coll                                       computing
## 3668            Montgomery_Coll                                          letter
## 3669            Montgomery_Coll                                       standards
## 3670            Montgomery_Coll                                      technology
## 3671                NYU_IntroDS                                        analysis
## 3672                  UKentucky                                    introduction
## 3673                  UKentucky                                         student
## 3674                    UIU_207                                      regression
## 3675                    UIU_207                                          review
## 3676                    UIU_207                                           staff
## 3677                     UMaine                                      additional
## 3678                     UMaine                                           basic
## 3679                     UMaine                                       materials
## 3680                     UMaine                                         midterm
## 3681                      UUtah                                        schedule
## 3682                  UKentucky                                          issues
## 3683                  UKentucky                                       submitted
## 3684                  UKentucky                                        textbook
## 3685                    Harvard                                      regression
## 3686                    UVA_SDS                                            date
## 3687                    UVA_SDS                                    disabilities
## 3688                    UVA_SDS                                        software
## 3689                    UVA_SDS                                         written
## 3690                      UUtah                                         credits
## 3691                      UUtah                                       decisions
## 3692                      UUtah                                        features
## 3693                      UUtah                                    professional
## 3694                      UUtah                                           range
## 3695                      UUtah                                         systems
## 3696                      UUtah                                   undergraduate
## 3697                      UUtah                                          vector
## 3698                    UZurich                                          action
## 3699                    UZurich                                         aspects
## 3700                    UZurich                                     computation
## 3701                    UZurich                                        elements
## 3702                    UZurich                                          future
## 3703                    UZurich                                           range
## 3704                 UCBerkeley                                        computer
## 3705                 UCBerkeley                                        projects
## 3706                 UCBerkeley                                         provide
## 3707           William_and_Mary                                       algorithm
## 3708           William_and_Mary                                          assess
## 3709           William_and_Mary                                      conditions
## 3710           William_and_Mary                                         context
## 3711           William_and_Mary                                      cumulative
## 3712           William_and_Mary                                     development
## 3713           William_and_Mary                                    distribution
## 3714           William_and_Mary                                          entire
## 3715           William_and_Mary                                    expectations
## 3716           William_and_Mary                                        logistic
## 3717           William_and_Mary                                             mac
## 3718           William_and_Mary                                           makes
## 3719           William_and_Mary                                       numerical
## 3720           William_and_Mary                                          piazza
## 3721           William_and_Mary                                        recorded
## 3722           William_and_Mary                                          taught
## 3723                        LSU                                          credit
## 3724                        LSU                                         include
## 3725                        LSU                                            late
## 3726                     Drexel                                         privacy
## 3727                     UMaine                                     statistical
## 3728                    Rutgers                                      experience
## 3729                    Rutgers                                         midterm
## 3730                    Rutgers                                             set
## 3731                     Drexel                                         context
## 3732                     Drexel                                           cover
## 3733                     Drexel                                       databases
## 3734                     Drexel                                       diversity
## 3735                     Drexel                                           field
## 3736                     Drexel                                         finding
## 3737                     Drexel                                    technologies
## 3738                     Drexel                                           topic
## 3739                        UMD                                         analyze
## 3740                        UMD                                          change
## 3741                        UMD                                          expect
## 3742                        UMD                                         request
## 3743                      UUtah                                       component
## 3744                      UUtah                                       computing
## 3745                      UUtah                                     opportunity
## 3746                      UUtah                                           prior
## 3747                 UWisconsin                                             2nd
## 3748                 UWisconsin                                           guide
## 3749                 UWisconsin                                    instructions
## 3750                        ASU                                            time
## 3751            Montgomery_Coll                                          online
## 3752                 Boston_Uni                                          common
## 3753                 Boston_Uni                                       community
## 3754                 Boston_Uni                                       encourage
## 3755                 Boston_Uni                                          graded
## 3756                 Boston_Uni                                        identify
## 3757                 Boston_Uni                                         related
## 3758                 Boston_Uni                                           score
## 3759                 Boston_Uni                                          social
## 3760                 Boston_Uni                                           solve
## 3761                 Boston_Uni                                     submissions
## 3762                        UMD                                            code
## 3763           Washington_State                                            page
## 3764                     UMaine                                    applications
## 3765                     UMaine                                           avoid
## 3766                     UMaine                                   circumstances
## 3767                     UMaine                                      classmates
## 3768                     UMaine                                       classroom
## 3769                     UMaine                                         current
## 3770                     UMaine                                         edition
## 3771                     UMaine                                     instructors
## 3772                     UMaine                                         prepare
## 3773                     UMaine                                      processing
## 3774                     UMaine                                     recommended
## 3775                     UMaine                                    requirements
## 3776                     UMaine                                         version
## 3777                    UIU_107                                      activities
## 3778                    Rutgers                                     statistical
## 3779                    Rutgers                                      university
## 3780                    Cornell                                         student
## 3781                    UZurich                                        analysis
## 3782                        MIT                                      experience
## 3783                        MIT                                         midterm
## 3784                        MIT                                          submit
## 3785                    UVA_SDS                                         aspects
## 3786                    UVA_SDS                                      collection
## 3787                    UVA_SDS                                        comments
## 3788                    UVA_SDS                                             e.g
## 3789                    UVA_SDS                                      extensions
## 3790                    UVA_SDS                                          follow
## 3791                    UVA_SDS                                         learned
## 3792                    UVA_SDS                                        location
## 3793                    UVA_SDS                                          period
## 3794                    UVA_SDS                                           phone
## 3795                    UVA_SDS                                         primary
## 3796                    UVA_SDS                                            quiz
## 3797                    UVA_SDS                                    specifically
## 3798                    UVA_SDS                                   undergraduate
## 3799                        UMD                                           apply
## 3800                        UMD                                          weekly
## 3801            Montgomery_Coll                                        semester
## 3802                 UWisconsin                                  classification
## 3803                    Harvard                                        advanced
## 3804                    Harvard                                        approach
## 3805                    Harvard                                          basics
## 3806                    Harvard                                        deadline
## 3807                    Harvard                                         faculty
## 3808                    Harvard                                           guide
## 3809                    Harvard                                          laptop
## 3810                    Harvard                                     participate
## 3811                    Harvard                                        question
## 3812                    Harvard                                           types
## 3813                  UKentucky                                       assistant
## 3814                  UKentucky                                           aware
## 3815                  UKentucky                                     conclusions
## 3816                  UKentucky                                    distribution
## 3817                  UKentucky                                       diversity
## 3818                  UKentucky                                      documented
## 3819                  UKentucky                                        download
## 3820                  UKentucky                                             mac
## 3821                  UKentucky                                        original
## 3822                  UKentucky                                    presentation
## 3823                  UKentucky                                      reasonable
## 3824                  UKentucky                                        recorded
## 3825                  UKentucky                                         respond
## 3826                  UKentucky                                        sampling
## 3827                  UKentucky                                     significant
## 3828                  UKentucky                                         special
## 3829                  UKentucky                                           start
## 3830                  UKentucky                                    technologies
## 3831                  UKentucky                                        training
## 3832                  UKentucky                                         windows
## 3833                   NYU_DS4E                                           added
## 3834                   NYU_DS4E                                             age
## 3835                   NYU_DS4E                                     algorithmic
## 3836                   NYU_DS4E                                          charts
## 3837                   NYU_DS4E                                            deep
## 3838                   NYU_DS4E                                          family
## 3839                   NYU_DS4E                                          finish
## 3840                   NYU_DS4E                                            join
## 3841                   NYU_DS4E                                         laptops
## 3842                   NYU_DS4E                                         portion
## 3843                   NYU_DS4E                                          prefer
## 3844                   NYU_DS4E                                       reasoning
## 3845                   NYU_DS4E                                          sample
## 3846                   NYU_DS4E                                       situation
## 3847                   NYU_DS4E                                      sufficient
## 3848                   NYU_DS4E                                         talking
## 3849                   NYU_DS4E                                     theoretical
## 3850                   NYU_DS4E                                      wednesdays
## 3851                   NYU_DS4E                                           worth
## 3852                      UUtah                                           learn
## 3853                    UVA_SDS                                            time
## 3854                        LSU                                        deadline
## 3855                        LSU                                         faculty
## 3856                        LSU                                         feature
## 3857                        LSU                                        feedback
## 3858                        LSU                                            feel
## 3859                        LSU                                      individual
## 3860                        LSU                                     participate
## 3861                        LSU                                        sciences
## 3862                        LSU                                       statement
## 3863                        LSU                                         subject
## 3864                        LSU                                            talk
## 3865                        LSU                                         tuesday
## 3866                   UVA_Stat                                            real
## 3867                   UVA_Stat                                        teaching
## 3868                 UCSanDiego                                            week
## 3869                        MIT                                     statistical
## 3870           Washington_State                                      collection
## 3871           Washington_State                                     computation
## 3872           Washington_State                                             e.g
## 3873           Washington_State                                        elements
## 3874           Washington_State                                            john
## 3875           Washington_State                                        location
## 3876           Washington_State                                          modern
## 3877           Washington_State                                             pdf
## 3878           Washington_State                                         penalty
## 3879           Washington_State                                            plan
## 3880           Washington_State                                         primary
## 3881           Washington_State                                      procedures
## 3882           Washington_State                                            role
## 3883           Washington_State                                        strongly
## 3884           Washington_State                                   undergraduate
## 3885           Washington_State                                          vector
## 3886                      UUtah                                        material
## 3887                      UUtah                                      regression
## 3888                        ASU                                           notes
## 3889                        ASU                                           staff
## 3890                 UCSanDiego                                         allowed
## 3891                 UCSanDiego                                           avoid
## 3892                 UCSanDiego                                          canvas
## 3893                 UCSanDiego                                   circumstances
## 3894                 UCSanDiego                                      classmates
## 3895                 UCSanDiego                                          friday
## 3896                 UCSanDiego                                            hall
## 3897                 UCSanDiego                                        requests
## 3898                 UCSanDiego                                            zoom
## 3899  UWisc_Madison_Programming                                          online
## 3900                NYU_IntroDS                                     application
## 3901                NYU_IntroDS                                           books
## 3902                NYU_IntroDS                                       computing
## 3903                NYU_IntroDS                                      determined
## 3904                NYU_IntroDS                                            fall
## 3905                NYU_IntroDS                                        overview
## 3906                NYU_IntroDS                                           scale
## 3907                  Princeton                                        software
## 3908           William_and_Mary                                        computer
## 3909           William_and_Mary                                        schedule
## 3910                   UToronto                                          common
## 3911                   UToronto                                       encourage
## 3912                   UToronto                                     submissions
## 3913                     Drexel                                     description
## 3914                     Drexel                                         project
## 3915                       CUNY                                      discussion
## 3916                       CUNY                                   visualization
## 3917                       CUNY                                         website
## 3918               Georgia_Tech                                    introduction
## 3919  UWisc_Madison_Programming                                         applied
## 3920  UWisc_Madison_Programming                                          coding
## 3921  UWisc_Madison_Programming                                            hall
## 3922  UWisc_Madison_Programming                                     preparation
## 3923  UWisc_Madison_Programming                                         require
## 3924  UWisc_Madison_Programming                                       scheduled
## 3925  UWisc_Madison_Programming                                        specific
## 3926                 UCSanDiego                                       encourage
## 3927                 UCSanDiego                                     environment
## 3928                 UCSanDiego                                         explore
## 3929                    Cornell                                         ability
## 3930                    Cornell                                         address
## 3931                    Cornell                                        approved
## 3932                    Cornell                                       committed
## 3933                    Cornell                                         control
## 3934                    Cornell                                         copying
## 3935                    Cornell                                         develop
## 3936                    Cornell                                       education
## 3937                    Cornell                                     effectively
## 3938                    Cornell                                          effort
## 3939                    Cornell                                            file
## 3940                    Cornell                                    introductory
## 3941                    Cornell                                            live
## 3942                    Cornell                                            math
## 3943                    Cornell                                           meets
## 3944                    Cornell                                      plagiarism
## 3945                    Cornell                                          public
## 3946                    Cornell                                       reference
## 3947                    Cornell                                  visualizations
## 3948                    Cornell                                       wrangling
## 3949           William_and_Mary                                           final
## 3950               USouthampton                                       including
## 3951           William_and_Mary                                      encouraged
## 3952               Georgia_Tech                                        examples
## 3953               Georgia_Tech                                        language
## 3954               Georgia_Tech                                   prerequisites
## 3955                     Drexel                                  classification
## 3956                   UToronto                                            code
## 3957                      UUtah                                         results
## 3958                    UZurich                                     foundations
## 3959                        ASU                                             2nd
## 3960                        ASU                                      algorithms
## 3961                        ASU                                            core
## 3962                        ASU                                            feel
## 3963                        ASU                                            form
## 3964                        ASU                                      individual
## 3965                        ASU                                         jupyter
## 3966                        ASU                                          monday
## 3967                        ASU                                     performance
## 3968                        ASU                                          school
## 3969                        ASU                                        sciences
## 3970                        ASU                                        standard
## 3971                        ASU                                            test
## 3972                        ASU                                           total
## 3973                        UMD                                          credit
## 3974                        UMD                                          review
## 3975                        UMD                                       abilities
## 3976                        UMD                                      accordance
## 3977                        UMD                                         advance
## 3978                        UMD                                           agree
## 3979                        UMD                                         alleged
## 3980                        UMD                                   appropriately
## 3981                        UMD                                        approval
## 3982                        UMD                                     backgrounds
## 3983                        UMD                                   comprehension
## 3984                        UMD                                      connection
## 3985                        UMD                                        consists
## 3986                        UMD                                        courtesy
## 3987                        UMD                                   demonstration
## 3988                        UMD                                      deployment
## 3989                        UMD                                      disclaimer
## 3990                        UMD                                             eda
## 3991                        UMD                                   effectiveness
## 3992                        UMD                                          enable
## 3993                        UMD                                       extensive
## 3994                        UMD                                      facilitate
## 3995                        UMD                                         formats
## 3996                        UMD                                           grant
## 3997                        UMD                                         granted
## 3998                        UMD                                      indicating
## 3999                        UMD                                     interacting
## 4000                        UMD                                    interactions
## 4001                        UMD                                            menu
## 4002                        UMD                                         options
## 4003                        UMD                                           party
## 4004                        UMD                                       penalized
## 4005                        UMD                                    personalized
## 4006                        UMD                                       preparing
## 4007                        UMD                                    prerequisite
## 4008                        UMD                                         promote
## 4009                        UMD                                       rationale
## 4010                        UMD                                     registering
## 4011                        UMD                                           reply
## 4012                        UMD                                      represents
## 4013                        UMD                                        reserves
## 4014                        UMD                                responsibilities
## 4015                        UMD                                          select
## 4016                        UMD                                            stay
## 4017                        UMD                                           story
## 4018                        UMD                                          strong
## 4019                        UMD                                           style
## 4020                        UMD                                     substantial
## 4021                        UMD                                         succeed
## 4022                        UMD                                          timely
## 4023                        UMD                                     traditional
## 4024                        UMD                                           trust
## 4025                        UMD                                        uploaded
## 4026                  UKentucky                                        computer
## 4027                  UKentucky                                         methods
## 4028                  UKentucky                                         provide
## 4029                  Princeton                                        elements
## 4030                  Princeton                                      extensions
## 4031                  Princeton                                      foundation
## 4032                  Princeton                                          modern
## 4033                  Princeton                                         penalty
## 4034                  Princeton                                           phone
## 4035                  Princeton                                      validation
## 4036                  Princeton                                          vector
## 4037            Montgomery_Coll                                           check
## 4038            Montgomery_Coll                                      completion
## 4039            Montgomery_Coll                                            drop
## 4040            Montgomery_Coll                                           extra
## 4041            Montgomery_Coll                                            sets
## 4042            Montgomery_Coll                                         sharing
## 4043                  UKentucky                                     statistical
## 4044                NYU_IntroDS                                        semester
## 4045                      Brown                                        complete
## 4046                     UMaine                                         website
## 4047                  UKentucky                                        accepted
## 4048                  UKentucky                                         content
## 4049                  UKentucky                                        datasets
## 4050                    UIU_207                                           basic
## 4051                    UIU_207                                      experience
## 4052                    UIU_207                                       materials
## 4053                    UIU_207                                         midterm
## 4054                        LSU                                           final
## 4055                    UVA_SDS                                        readings
## 4056  UWisc_Madison_Programming                                         lecture
## 4057  UWisc_Madison_Programming                                        lectures
## 4058                     Drexel                                           ideas
## 4059                    UIU_207                                      instructor
## 4060                      UUtah                                           hands
## 4061                        UMD                                    instructions
## 4062                        UMD                                          school
## 4063                        UMD                                           types
## 4064                      UUtah                                           aware
## 4065                      UUtah                                  dimensionality
## 4066                      UUtah                                          effort
## 4067                      UUtah                                    introductory
## 4068                      UUtah                                        logistic
## 4069                      UUtah                                            loss
## 4070                      UUtah                                          mining
## 4071                      UUtah                                        original
## 4072                      UUtah                                       reduction
## 4073                      UUtah                                     significant
## 4074                      UUtah                                          taught
## 4075                      UUtah                                           trees
## 4076                      UUtah                                          values
## 4077                 Boston_Uni                                     discussions
## 4078                 Boston_Uni                                            fall
## 4079                 Boston_Uni                                     opportunity
## 4080                 Boston_Uni                                     probability
## 4081                 Boston_Uni                                           scale
## 4082                 Boston_Uni                                       standards
## 4083                    UZurich                                        critical
## 4084                    UZurich                                       detection
## 4085                    UZurich                                    distribution
## 4086                    UZurich                                        download
## 4087                    UZurich                                    introductory
## 4088                    UZurich                                          taught
## 4089                        LSU                                           basic
## 4090                 UWisconsin                                    applications
## 4091                 UWisconsin                                        cleaning
## 4092                 UWisconsin                                         current
## 4093                    Rutgers                                          access
## 4094                    Rutgers                                    disabilities
## 4095                    Rutgers                                         discuss
## 4096                    Rutgers                                        software
## 4097                    UIU_207                                      university
## 4098                 UCBerkeley                                          skills
## 4099                 UCSanDiego                                            10th
## 4100                 UCSanDiego                                      absolutely
## 4101                 UCSanDiego                                           alert
## 4102                 UCSanDiego                                        allocate
## 4103                 UCSanDiego                                         amazing
## 4104                 UCSanDiego                                     anonymously
## 4105                 UCSanDiego                                       assigning
## 4106                 UCSanDiego                                   authorization
## 4107                 UCSanDiego                                           brain
## 4108                 UCSanDiego                                          builds
## 4109                 UCSanDiego                                            busy
## 4110                 UCSanDiego                                         chatgpt
## 4111                 UCSanDiego                                             cit
## 4112                 UCSanDiego                                       classwork
## 4113                 UCSanDiego                                        commands
## 4114                 UCSanDiego                                         copilot
## 4115                 UCSanDiego                                            cost
## 4116                 UCSanDiego                                         courage
## 4117                 UCSanDiego                                         degrees
## 4118                 UCSanDiego                                          detect
## 4119                 UCSanDiego                                     downloading
## 4120                 UCSanDiego                                           drops
## 4121                 UCSanDiego                                          excuse
## 4122                 UCSanDiego                                       expertise
## 4123                 UCSanDiego                                         focused
## 4124                 UCSanDiego                                      formatting
## 4125                 UCSanDiego                                          happen
## 4126                 UCSanDiego                                         heavily
## 4127                 UCSanDiego                                            hold
## 4128                 UCSanDiego                                          honest
## 4129                 UCSanDiego                                      imperative
## 4130                 UCSanDiego                                      impossible
## 4131                 UCSanDiego                                        injuries
## 4132                 UCSanDiego                                        judgment
## 4133                 UCSanDiego                                          justin
## 4134                 UCSanDiego                                        keyboard
## 4135                 UCSanDiego                                            lies
## 4136                 UCSanDiego                                             max
## 4137                 UCSanDiego                                      motivation
## 4138                 UCSanDiego                                        offering
## 4139                 UCSanDiego                                           paper
## 4140                 UCSanDiego                                        planning
## 4141                 UCSanDiego                                         predict
## 4142                 UCSanDiego                                     predictable
## 4143                 UCSanDiego                                           proud
## 4144                 UCSanDiego                                            pull
## 4145                 UCSanDiego                                         reached
## 4146                 UCSanDiego                                     remembering
## 4147                 UCSanDiego                                      sanctioned
## 4148                 UCSanDiego                                        saturday
## 4149                 UCSanDiego                                       searching
## 4150                 UCSanDiego                                         shaping
## 4151                 UCSanDiego                                        slightly
## 4152                 UCSanDiego                                            slot
## 4153                 UCSanDiego                                          spirit
## 4154                 UCSanDiego                                       splitting
## 4155                 UCSanDiego                                          stable
## 4156                 UCSanDiego                                      strengthen
## 4157                 UCSanDiego                                          stress
## 4158                 UCSanDiego                                             tab
## 4159                 UCSanDiego                                           teach
## 4160                 UCSanDiego                                          thrive
## 4161                 UCSanDiego                                           timed
## 4162                 UCSanDiego                                         trained
## 4163                 UCSanDiego                                      underlying
## 4164                 UCSanDiego                                       unethical
## 4165                 UCSanDiego                                          vision
## 4166                 UCSanDiego                                            wait
## 4167                 UCSanDiego                                        watching
## 4168                 UCSanDiego                                          webcam
## 4169           Washington_State                                     foundations
## 4170           Washington_State                                          issues
## 4171           Washington_State                                         reading
## 4172                       CUNY                                        required
## 4173           William_and_Mary                                           ahead
## 4174           William_and_Mary                                     descriptive
## 4175           William_and_Mary                                         friends
## 4176           William_and_Mary                                        function
## 4177           William_and_Mary                                      importance
## 4178           William_and_Mary                                          length
## 4179           William_and_Mary                                         library
## 4180           William_and_Mary                                          linked
## 4181           William_and_Mary                                         message
## 4182           William_and_Mary                                          output
## 4183           William_and_Mary                                           power
## 4184           William_and_Mary                                             pre
## 4185           William_and_Mary                                       privately
## 4186           William_and_Mary                                     responsible
## 4187           William_and_Mary                                        starting
## 4188           William_and_Mary                                       typically
## 4189           William_and_Mary                                           watch
## 4190                    Cornell                                         methods
## 4191                        ASU                                          topics
## 4192                      UUtah                                         contact
## 4193                     UMaine                                         central
## 4194                     UMaine                                        features
## 4195                     UMaine                                      foundation
## 4196                     UMaine                                       functions
## 4197                     UMaine                                            john
## 4198                     UMaine                                           range
## 4199                     UMaine                                          result
## 4200                     UMaine                                          simple
## 4201                    Cornell                                        syllabus
## 4202                     Drexel                                        accuracy
## 4203                     Drexel                                     correlation
## 4204                     Drexel                                          matrix
## 4205                     Drexel                                         quality
## 4206                    UIU_107                                      experience
## 4207                    UIU_107                                       materials
## 4208                        LSU                                          online
## 4209                        UMD                                            note
## 4210  UWisc_Madison_Programming                                         student
## 4211                 UWisconsin                                          create
## 4212             UniSys_Georgia                                    introduction
## 4213             UniSys_Georgia                                          topics
## 4214                 UCSanDiego                                         written
## 4215  UWisc_Madison_Programming                                            00am
## 4216  UWisc_Madison_Programming                                             a.m
## 4217  UWisc_Madison_Programming                                              ab
## 4218  UWisc_Madison_Programming                                       activites
## 4219  UWisc_Madison_Programming                                             ada
## 4220  UWisc_Madison_Programming                                     anonymously
## 4221  UWisc_Madison_Programming                                      attempting
## 4222  UWisc_Madison_Programming                                      attributes
## 4223  UWisc_Madison_Programming                                             bad
## 4224  UWisc_Madison_Programming                                         breadth
## 4225  UWisc_Madison_Programming                                              cc
## 4226  UWisc_Madison_Programming                                          chosen
## 4227  UWisc_Madison_Programming                                          closer
## 4228  UWisc_Madison_Programming                                      completely
## 4229  UWisc_Madison_Programming                                     complicated
## 4230  UWisc_Madison_Programming                                       computers
## 4231  UWisc_Madison_Programming                                    coordination
## 4232  UWisc_Madison_Programming                                      creativity
## 4233  UWisc_Madison_Programming                                     credentials
## 4234  UWisc_Madison_Programming                                         dealing
## 4235  UWisc_Madison_Programming                                         decades
## 4236  UWisc_Madison_Programming                                             def
## 4237  UWisc_Madison_Programming                                          detect
## 4238  UWisc_Madison_Programming                                      directions
## 4239  UWisc_Madison_Programming                                         dispute
## 4240  UWisc_Madison_Programming                                           drops
## 4241  UWisc_Madison_Programming                                      elementary
## 4242  UWisc_Madison_Programming                                        engaging
## 4243  UWisc_Madison_Programming                                      enrollment
## 4244  UWisc_Madison_Programming                                            fair
## 4245  UWisc_Madison_Programming                                            fast
## 4246  UWisc_Madison_Programming                                         filling
## 4247  UWisc_Madison_Programming                                           front
## 4248  UWisc_Madison_Programming                                          gentle
## 4249  UWisc_Madison_Programming                                          honest
## 4250  UWisc_Madison_Programming                                         ideally
## 4251  UWisc_Madison_Programming                                       incidents
## 4252  UWisc_Madison_Programming                                        integral
## 4253  UWisc_Madison_Programming                                         liberal
## 4254  UWisc_Madison_Programming                                          losing
## 4255  UWisc_Madison_Programming                                      manipulate
## 4256  UWisc_Madison_Programming                                            mike
## 4257  UWisc_Madison_Programming                                        modality
## 4258  UWisc_Madison_Programming                                     observances
## 4259  UWisc_Madison_Programming                                         opinion
## 4260  UWisc_Madison_Programming                                        oriented
## 4261  UWisc_Madison_Programming                                            pair
## 4262  UWisc_Madison_Programming                                     partnership
## 4263  UWisc_Madison_Programming                                    periodically
## 4264  UWisc_Madison_Programming                                         picture
## 4265  UWisc_Madison_Programming                                     predictable
## 4266  UWisc_Madison_Programming                                        priority
## 4267  UWisc_Madison_Programming                                        profound
## 4268  UWisc_Madison_Programming                                         pursuit
## 4269  UWisc_Madison_Programming                                              qr
## 4270  UWisc_Madison_Programming                                          ranges
## 4271  UWisc_Madison_Programming                                      recordings
## 4272  UWisc_Madison_Programming                                        released
## 4273  UWisc_Madison_Programming                                        rounding
## 4274  UWisc_Madison_Programming                                       satisfied
## 4275  UWisc_Madison_Programming                                        separate
## 4276  UWisc_Madison_Programming                                           sheet
## 4277  UWisc_Madison_Programming                                         sitting
## 4278  UWisc_Madison_Programming                                           split
## 4279  UWisc_Madison_Programming                                   stackoverflow
## 4280  UWisc_Madison_Programming                                    unauthorized
## 4281  UWisc_Madison_Programming                                          uphold
## 4282  UWisc_Madison_Programming                                         utilize
## 4283  UWisc_Madison_Programming                                             van
## 4284  UWisc_Madison_Programming                                          week's
## 4285                    Harvard                                        business
## 4286                    Harvard                                          choose
## 4287                    Harvard                                        cleaning
## 4288                    Harvard                                         current
## 4289                    Harvard                                           files
## 4290                    Harvard                                             key
## 4291                    Harvard                                           links
## 4292                    Harvard                                        notebook
## 4293                    Harvard                                          pandas
## 4294                    Harvard                                         prepare
## 4295                    Harvard                                        requests
## 4296                    Harvard                                    requirements
## 4297                    Harvard                                       scheduled
## 4298                     Drexel                               0,2817,2372163,00
## 4299                     Drexel                                             12s
## 4300                     Drexel                                            311s
## 4301                     Drexel                                    59adf720f0c8
## 4302                     Drexel                                    5cbf3a6169fd
## 4303                     Drexel                                    5d7ec2b335f8
## 4304                     Drexel                                             60s
## 4305                     Drexel                                     8wjvmyc01qy
## 4306                     Drexel                       9781449358655_sampler.pdf
## 4307                     Drexel                            ____________________
## 4308                     Drexel                                _an_introduction
## 4309                     Drexel                                              _r
## 4310                     Drexel                                             a.i
## 4311                     Drexel                         a_history_of_data_scien
## 4312                     Drexel                                             acm
## 4313                     Drexel                                           ad949
## 4314                     Drexel                                         adhered
## 4315                     Drexel                                         allison
## 4316                     Drexel                                       alongside
## 4317                     Drexel                                          amanda
## 4318                     Drexel                                         amazons
## 4319                     Drexel                                            amit
## 4320                     Drexel                                   andchallenges
## 4321                     Drexel                                        anderson
## 4322                     Drexel                                          angwin
## 4323                     Drexel                                       annotated
## 4324                     Drexel                                     anticipated
## 4325                     Drexel                                          apache
## 4326                     Drexel                                             api
## 4327                     Drexel                                          appeal
## 4328                     Drexel                                          append
## 4329                     Drexel             arguments_for_and_against_open_data
## 4330                     Drexel                                        article2
## 4331                     Drexel                                       arxiv.org
## 4332                     Drexel                                      aschwanden
## 4333                     Drexel                                             asp
## 4334                     Drexel                                     association
## 4335                     Drexel                                       attribute
## 4336                     Drexel                                             avl
## 4337                     Drexel                                           avl’s
## 4338                     Drexel                            ba569633d51ebec6ec6e
## 4339                     Drexel                                    bibliography
## 4340                     Drexel                                   bioethics.net
## 4341                     Drexel                                 blog.applied.ai
## 4342                     Drexel                           blog.hartleybrody.com
## 4343                     Drexel                               blog.mixpanel.com
## 4344                     Drexel                               blogs.gartner.com
## 4345                     Drexel                                   blogs.wsj.com
## 4346                     Drexel                                     bojlakkf3ey
## 4347                     Drexel                                    booksamplers
## 4348                     Drexel                                           bound
## 4349                     Drexel                                    bqohgin_ieqv
## 4350                     Drexel                                           brent
## 4351                     Drexel                                      brentdykes
## 4352                     Drexel                                        bridging
## 4353                     Drexel                                         brinker
## 4354                     Drexel                                           bryan
## 4355                     Drexel                                          burrus
## 4356                     Drexel                                            cacm
## 4357                     Drexel                                    cacm.acm.org
## 4358                     Drexel                                            cain
## 4359                     Drexel                                      camouflage
## 4360                     Drexel                                           can’t
## 4361                     Drexel                                          caught
## 4362                     Drexel                           cdn.oreillystatic.com
## 4363                     Drexel                                   certification
## 4364                     Drexel                                         certify
## 4365                     Drexel                               characterizations
## 4366                     Drexel                                 chiefmartec.com
## 4367                     Drexel                                        christie
## 4368                     Drexel                                          claire
## 4369                     Drexel                                           clamp
## 4370                     Drexel                                          clamps
## 4371                     Drexel                                         cleanup
## 4372                     Drexel                        cloud_computing_security
## 4373                     Drexel                                        cloudera
## 4374                     Drexel                             community_standards
## 4375                     Drexel                      computer.howstuffworks.com
## 4376                     Drexel                                      concretely
## 4377                     Drexel                                      contingent
## 4378                     Drexel                                        contract
## 4379                     Drexel                                     controlling
## 4380                     Drexel                                      conversion
## 4381                     Drexel                                          conway
## 4382                     Drexel                                          cooper
## 4383                     Drexel                                            coss
## 4384                     Drexel cross_industry_standard_process_for_data_mining
## 4385                     Drexel                                      curricular
## 4386                     Drexel                                           cutts
## 4387                     Drexel                                        cvdazzle
## 4388                     Drexel                                    cvdazzle.com
## 4389                     Drexel                           d3mizzm2xvfitgf8he_ab
## 4390                     Drexel                                    data_science
## 4391                     Drexel                                   data_security
## 4392                     Drexel                                  data_wrangling
## 4393                     Drexel                        datascience.berkeley.edu
## 4394                     Drexel                           datascience.community
## 4395                     Drexel                                datascience.html
## 4396                     Drexel                             datascienceassn.org
## 4397                     Drexel                                     dataversity
## 4398                     Drexel                                            deck
## 4399                     Drexel                                        deloitte
## 4400                     Drexel                                       depiction
## 4401                     Drexel                                         derived
## 4402                     Drexel                                       describes
## 4403                     Drexel                                         designs
## 4404                     Drexel                                desource.uvu.edu
## 4405                     Drexel                                          devlin
## 4406                     Drexel                                         diebold
## 4407                     Drexel                            diebold_big_data.pdf
## 4408                     Drexel                                    differential
## 4409                     Drexel                           differential_calculus
## 4410                     Drexel                             disabilityresources
## 4411                     Drexel                                    discriminate
## 4412                     Drexel                               discriminate.html
## 4413                     Drexel                                    dissatisfied
## 4414                     Drexel                                          divide
## 4415                     Drexel                                            docs
## 4416                     Drexel                                            drew
## 4417                     Drexel                                  drewconway.com
## 4418                     Drexel                                          duggan
## 4419                     Drexel                                             dup
## 4420                     Drexel                            dupress.deloitte.com
## 4421                     Drexel                                           dykes
## 4422                     Drexel                                  embarrassingly
## 4423                     Drexel                         embarrassingly_parallel
## 4424                     Drexel                                              en
## 4425                     Drexel                                en.wikibooks.org
## 4426                     Drexel                                       enriching
## 4427                     Drexel                                             era
## 4428                     Drexel                                            eric
## 4429                     Drexel                                     established
## 4430                     Drexel                                       etymology
## 4431                     Drexel                                          europe
## 4432                     Drexel                                   everyone.html
## 4433                     Drexel                                        exemplar
## 4434                     Drexel                                        explains
## 4435                     Drexel                                       favorably
## 4436                     Drexel                                        fdiebold
## 4437                     Drexel                                   filter_bubble
## 4438                     Drexel                                     fnk_zzamoss
## 4439                     Drexel                                           fours
## 4440                     Drexel                                    fouryears.eu
## 4441                     Drexel                                         francis
## 4442                     Drexel                                        freshman
## 4443                     Drexel                                           fritz
## 4444                     Drexel                                        fulltext
## 4445                     Drexel                                       gc9l5kujz
## 4446                     Drexel                                          george
## 4447                     Drexel                                             gil
## 4448                     Drexel                                        gilpress
## 4449                     Drexel                                             gis
## 4450                     Drexel                                           glenn
## 4451                     Drexel                                          golden
## 4452                     Drexel                                          goldin
## 4453                     Drexel                      google_personalized_search
## 4454                     Drexel                                         googles
## 4455                     Drexel                                        google’s
## 4456                     Drexel                                        griffith
## 4457                     Drexel                                          grimes
## 4458                     Drexel                                    group_public
## 4459                     Drexel                                 groups.niso.org
## 4460                     Drexel                                        guardian
## 4461                     Drexel                                             guo
## 4462                     Drexel                                    handbook_pt1
## 4463                     Drexel                                          hannah
## 4464                     Drexel                                          harder
## 4465                     Drexel                                          harvey
## 4466                     Drexel                                         headers
## 4467                     Drexel                                           heiko
## 4468                     Drexel                                            hell
## 4469                     Drexel                                         hoffman
## 4470                     Drexel                                         horling
## 4471                     Drexel                               howstuffworks.com
## 4472                     Drexel                                       howtogeek
## 4473                     Drexel                                             htg
## 4474                     Drexel                                             htm
## 4475                     Drexel                                             ibm
## 4476                     Drexel                                     identifying
## 4477                     Drexel                                             ids
## 4478                     Drexel                                         in.html
## 4479                     Drexel                                  incomplete.pdf
## 4480                     Drexel                                 informationweek
## 4481                     Drexel                                       inmachine
## 4482                     Drexel                               integral_calculus
## 4483                     Drexel                                      intentions
## 4484                     Drexel                                      internet’s
## 4485                     Drexel                                     interpreted
## 4486                     Drexel                                          intuit
## 4487                     Drexel                                        inverted
## 4488                     Drexel                                  inverted_index
## 4489                     Drexel                                              io
## 4490                     Drexel                                            isnt
## 4491                     Drexel                                           isn’t
## 4492                     Drexel                                           jenny
## 4493                     Drexel                                          jeremy
## 4494                     Drexel                                           jnl47
## 4495                     Drexel                                        jonathan
## 4496                     Drexel                                            josh
## 4497                     Drexel                                           julia
## 4498                     Drexel                                      k7rmot2nwy
## 4499                     Drexel                                             kai
## 4500                     Drexel                                     kjboeszcoqc
## 4501                     Drexel                                       klockwood
## 4502                     Drexel                               knowledgebird.com
## 4503                     Drexel                                        kobielus
## 4504                     Drexel                                      konstantin
## 4505                     Drexel                                         krishna
## 4506                     Drexel                                          kulick
## 4507                     Drexel                                     kyb8iza5aue
## 4508                     Drexel                                     kzfe4t0pwq8
## 4509                     Drexel                                          l05_06
## 4510                     Drexel                                         labeled
## 4511                     Drexel                                           leada
## 4512                     Drexel                                         leipzig
## 4513                     Drexel                                         letters
## 4514                     Drexel                                       lifetimes
## 4515                     Drexel                                             llc
## 4516                     Drexel                                            lohr
## 4517                     Drexel                                          lounge
## 4518                     Drexel                                           maeve
## 4519                     Drexel                                        magazine
## 4520                     Drexel                                           malak
## 4521                     Drexel                           managementcontrolling
## 4522                     Drexel                                       manyroles
## 4523                     Drexel                                            mapr
## 4524                     Drexel                                          marder
## 4525                     Drexel                                         marital
## 4526                     Drexel                                       marketing
## 4527                     Drexel                                         markham
## 4528                     Drexel                                    mashable.com
## 4529                     Drexel                                      medium.com
## 4530                     Drexel                         medium.freecodecamp.org
## 4531                     Drexel                                         megahan
## 4532                     Drexel                                    metadata.pdf
## 4533                     Drexel                                         miachel
## 4534                     Drexel                                          mostof
## 4535                     Drexel                                        mult_pkg
## 4536                     Drexel                                          munroe
## 4537                     Drexel                                           nancy
## 4538                     Drexel                                         natasha
## 4539                     Drexel                          natural_user_interface
## 4540                     Drexel                    nominal_ordinal_interval.htm
## 4541                     Drexel                                         o_bound
## 4542                     Drexel                                      obligation
## 4543                     Drexel                                       open_data
## 4544                     Drexel                                        operates
## 4545                     Drexel                                      optimizing
## 4546                     Drexel                                         ordinal
## 4547                     Drexel                                      originally
## 4548                     Drexel                                   overview.html
## 4549                     Drexel                                        paper112
## 4550                     Drexel                                    paraphrasing
## 4551                     Drexel                                             pbs
## 4552                     Drexel                                     pewresearch
## 4553                     Drexel                                          philip
## 4554                     Drexel                                   plzhqobowtqdp
## 4555                     Drexel              plzhqobowtqdpd3mizzm2xvfitgf8he_ab
## 4556                     Drexel                                             pmp
## 4557                     Drexel                                        politico
## 4558                     Drexel                                          profit
## 4559                     Drexel                                     prohibiting
## 4560                     Drexel                                       project’s
## 4561                     Drexel                                        protects
## 4562                     Drexel                                       provost’s
## 4563                     Drexel                                     question599
## 4564                     Drexel                                           quist
## 4565                     Drexel                                          quoted
## 4566                     Drexel                                         quoting
## 4567                     Drexel                                            r2d3
## 4568                     Drexel                                          rainie
## 4569                     Drexel                                         randall
## 4570                     Drexel                                   randomnumbers
## 4571                     Drexel                                         raschka
## 4572                     Drexel                                          raster
## 4573                     Drexel                                            rawn
## 4574                     Drexel                                        rawnshah
## 4575                     Drexel                                          rchang
## 4576                     Drexel                                        realizes
## 4577                     Drexel                                         rebecca
## 4578                     Drexel                                     rebroadcast
## 4579                     Drexel                                        reflects
## 4580                     Drexel                                     roumeliotis
## 4581                     Drexel                                         sampler
## 4582                     Drexel                                        saunders
## 4583                     Drexel                             sciencee806ba55a81f
## 4584                     Drexel                                       science’s
## 4585                     Drexel                                   scientist.pdf
## 4586                     Drexel                                           scola
## 4587                     Drexel                                    scrapesentry
## 4588                     Drexel                                   searchresults
## 4589                     Drexel                                       sebastian
## 4590                     Drexel                            sebastianraschka.com
## 4591                     Drexel                                             sec
## 4592                     Drexel                                           sedar
## 4593                     Drexel                                            seth
## 4594                     Drexel                                            shah
## 4595                     Drexel                                            sign
## 4596                     Drexel             signature__________________________
## 4597                     Drexel                                       silverman
## 4598                     Drexel                                          singer
## 4599                     Drexel                                         singhal
## 4600                     Drexel                                           slide
## 4601                     Drexel                                  socialsciences
## 4602                     Drexel                                           spark
## 4603                     Drexel                                      srivastava
## 4604                     Drexel                             statisticalmodeling
## 4605                     Drexel                                       stats.org
## 4606                     Drexel                                         steinja
## 4607                     Drexel                                       stephanie
## 4608                     Drexel                                           steve
## 4609                     Drexel                                    stikeleather
## 4610                     Drexel                                        stinking
## 4611                     Drexel                               storytelling.html
## 4612                     Drexel                                         strives
## 4613                     Drexel                                     studentlife
## 4614                     Drexel                                        sullexis
## 4615                     Drexel                                   summarization
## 4616                     Drexel                                       swanstrom
## 4617                     Drexel                                    syllabus.pdf
## 4618                     Drexel                                     syntagmatic
## 4619                     Drexel                                           talks
## 4620                     Drexel                                          tavish
## 4621                     Drexel                                    technologist
## 4622                     Drexel                                   thanuntrained
## 4623                     Drexel                                      theory.pdf
## 4624                     Drexel                                         tianhui
## 4625                     Drexel                                            tidy
## 4626                     Drexel                 tim_berners_lee_on_the_next_web
## 4627                     Drexel                                            todd
## 4628                     Drexel                                      toinsights
## 4629                     Drexel                                            tony
## 4630                     Drexel                                       tretyakov
## 4631                     Drexel                      twitter_report_2013jan.pdf
## 4632                     Drexel                             twitterf0c13298aee6
## 4633                     Drexel                                          typing
## 4634                     Drexel                                             u.s
## 4635                     Drexel                                            ucla
## 4636                     Drexel                              unforeseenproblems
## 4637                     Drexel                                       untrained
## 4638                     Drexel                                          upshot
## 4639                     Drexel                                   useurope.html
## 4640                     Drexel                                usingexploratory
## 4641                     Drexel                                         v059i10
## 4642                     Drexel                                          v59i10
## 4643                     Drexel                                          valley
## 4644                     Drexel                                       variation
## 4645                     Drexel                                     variety.pdf
## 4646                     Drexel                                         vasilev
## 4647                     Drexel                                          versus
## 4648                     Drexel                                          vidhya
## 4649                     Drexel                                       voiceover
## 4650                     Drexel                                        waechter
## 4651                     Drexel                                     walkthrough
## 4652                     Drexel                               web_search_engine
## 4653                     Drexel                                        whatstat
## 4654                     Drexel                           whiteboardwalkthrough
## 4655                     Drexel                                      whitepaper
## 4656                     Drexel                                       wikibooks
## 4657                     Drexel                                        williams
## 4658                     Drexel                                           wills
## 4659                     Drexel                                       work.html
## 4660                     Drexel                                         world's
## 4661                     Drexel                                          worlds
## 4662                     Drexel                                              wp
## 4663                     Drexel                         www.analyticsvidhya.com
## 4664                     Drexel                                www.ats.ucla.edu
## 4665                     Drexel                               www.bioethics.net
## 4666                     Drexel                          www.cbigconsulting.com
## 4667                     Drexel                                  www.cooper.com
## 4668                     Drexel                               www.dataschool.io
## 4669                     Drexel                             www.dataversity.net
## 4670                     Drexel                               www.gislounge.com
## 4671                     Drexel                          www.glennklockwood.com
## 4672                     Drexel                               www.howtogeek.com
## 4673                     Drexel                                 www.hugeinc.com
## 4674                     Drexel                         www.informationweek.com
## 4675                     Drexel                               www.jstatsoft.org
## 4676                     Drexel                                www.linkedin.com
## 4677                     Drexel                                     www.pbs.org
## 4678                     Drexel                                   www.pcmag.com
## 4679                     Drexel                             www.pewinternet.org
## 4680                     Drexel                                www.politico.com
## 4681                     Drexel                                        www.r2d3
## 4682                     Drexel                            www.scrapesentry.com
## 4683                     Drexel                               www.ssc.upenn.edu
## 4684                     Drexel                                   www.stats.org
## 4685                     Drexel                                     www.ted.com
## 4686                     Drexel                             www.theguardian.com
## 4687                     Drexel                                     www.wsj.com
## 4688                     Drexel                                            xkcd
## 4689                     Drexel                                        xkcd.com
## 4690                     Drexel                                             yee
## 4691                     Drexel                                             zia
## 4692                     Drexel                                            zink
## 4693                    UVA_SDS                                        approved
## 4694                    UVA_SDS                                             mac
## 4695                    UVA_SDS                                           makes
## 4696                    UVA_SDS                                         special
## 4697                    UVA_SDS                                          survey
## 4698                    UVA_SDS                                          taught
## 4699                    UVA_SDS                                           title
## 4700                    UVA_SDS                                           video
## 4701                    UVA_SDS                                           words
## 4702                    UVA_SDS                                       wrangling
## 4703                        LSU                                      classmates
## 4704                        LSU                                           cross
## 4705                        LSU                                             key
## 4706                        LSU                                        programs
## 4707                        LSU                                     recommended
## 4708                        LSU                                        requests
## 4709                        LSU                                       scheduled
## 4710                        LSU                                       textbooks
## 4711                        LSU                                         version
## 4712                        LSU                                            zoom
## 4713                    UIU_107                                            week
## 4714  UWisc_Madison_Programming                                             day
## 4715  UWisc_Madison_Programming                                    disabilities
## 4716            Montgomery_Coll                                         machine
## 4717            Montgomery_Coll                                         methods
## 4718            Montgomery_Coll                                      techniques
## 4719                   UVA_Stat                                  accommodations
## 4720                   UVA_Stat                                      activities
## 4721                   UVA_Stat                                            late
## 4722                   UVA_Stat                                        material
## 4723                   UVA_Stat                                          skills
## 4724                  UKentucky                                       beginning
## 4725                  UKentucky                                            call
## 4726                  UKentucky                                     descriptive
## 4727                  UKentucky                                          engage
## 4728                  UKentucky                                          events
## 4729                  UKentucky                                        exercise
## 4730                  UKentucky                                         failing
## 4731                  UKentucky                                      percentage
## 4732                  UKentucky                                    perspectives
## 4733                  UKentucky                                            send
## 4734                  UKentucky                                         society
## 4735                  UKentucky                                      successful
## 4736                  UKentucky                                          sunday
## 4737                  UKentucky                                       tentative
## 4738                  UKentucky                                            tool
## 4739                  UKentucky                                            view
## 4740                 UWisconsin                                        projects
## 4741                     UMaine                                        required
## 4742                        ASU                                      additional
## 4743                        ASU                                       resources
## 4744                        ASU                                         support
## 4745                   NYU_DS4E                                          answer
## 4746                   NYU_DS4E                                          attend
## 4747                   NYU_DS4E                                       knowledge
## 4748                   NYU_DS4E                                         privacy
## 4749                NYU_IntroDS                                      considered
## 4750                NYU_IntroDS                                          design
## 4751                NYU_IntroDS                                        designed
## 4752                NYU_IntroDS                                       inference
## 4753                NYU_IntroDS                                         missing
## 4754                NYU_IntroDS                                         privacy
## 4755                NYU_IntroDS                                          random
## 4756                NYU_IntroDS                                           study
## 4757           Washington_State                                       algorithm
## 4758           Washington_State                                        approved
## 4759           Washington_State                                           aware
## 4760           Washington_State                                       committed
## 4761           Washington_State                                        critical
## 4762           Washington_State                                       databases
## 4763           Washington_State                                          direct
## 4764           Washington_State                                      documented
## 4765           Washington_State                                     effectively
## 4766           Washington_State                                          effort
## 4767           Washington_State                                           field
## 4768           Washington_State                                        graduate
## 4769           Washington_State                                       practices
## 4770           Washington_State                                           refer
## 4771           Washington_State                                       wrangling
## 4772                 UCSanDiego                                         account
## 4773                 UCSanDiego                                        meetings
## 4774                 UCSanDiego                                        strongly
## 4775                   UToronto                                      department
## 4776                   UToronto                                            fall
## 4777                   UToronto                                        includes
## 4778                   UToronto                                        overview
## 4779                   UToronto                                            post
## 4780                   UToronto                                     probability
## 4781               Georgia_Tech                                      statistics
## 4782                  Princeton                                         reading
## 4783                 UCSanDiego                                      technology
## 4784                      UUtah                                         provide
## 4785                    Harvard                                        concepts
## 4786                       CUNY                                           apply
## 4787                       CUNY                                     foundations
## 4788                       CUNY                                   prerequisites
## 4789                       CUNY                                         reading
## 4790                       CUNY                                        readings
## 4791                        ASU                                        syllabus
## 4792                        ASU                                            week
## 4793                    Rutgers                                        required
## 4794           William_and_Mary                                             lab
## 4795           William_and_Mary                                           means
## 4796           William_and_Mary                                          posted
## 4797           William_and_Mary                                        practice
## 4798           William_and_Mary                                           score
## 4799           William_and_Mary                                        services
## 4800           William_and_Mary                                           write
## 4801  UWisc_Madison_Programming                                          action
## 4802  UWisc_Madison_Programming                                          follow
## 4803  UWisc_Madison_Programming                                        location
## 4804  UWisc_Madison_Programming                                      procedures
## 4805  UWisc_Madison_Programming                                          status
## 4806                      UUtah                                         student
## 4807                   NYU_DS4E                                          adding
## 4808                   NYU_DS4E                                       arguments
## 4809                   NYU_DS4E                                           begin
## 4810                   NYU_DS4E                                           break
## 4811                   NYU_DS4E                                        commonly
## 4812                   NYU_DS4E                                         connect
## 4813                   NYU_DS4E                                       discovery
## 4814                   NYU_DS4E                                       exception
## 4815                   NYU_DS4E                                        extended
## 4816                   NYU_DS4E                                        external
## 4817                   NYU_DS4E                                         factors
## 4818                   NYU_DS4E                                       filtering
## 4819                   NYU_DS4E                                         fridays
## 4820                   NYU_DS4E                                          handle
## 4821                   NYU_DS4E                                           happy
## 4822                   NYU_DS4E                                         illness
## 4823                   NYU_DS4E                                    interpreting
## 4824                   NYU_DS4E                                       interview
## 4825                   NYU_DS4E                                           lines
## 4826                   NYU_DS4E                                            news
## 4827                   NYU_DS4E                                       objective
## 4828                   NYU_DS4E                                           offer
## 4829                   NYU_DS4E                                            past
## 4830                   NYU_DS4E                                        patterns
## 4831                   NYU_DS4E                                        prepared
## 4832                   NYU_DS4E                                          return
## 4833                   NYU_DS4E                                     simulations
## 4834                   NYU_DS4E                                          slides
## 4835                   NYU_DS4E                                            step
## 4836                   NYU_DS4E                                         success
## 4837                   NYU_DS4E                                       summarize
## 4838                   NYU_DS4E                                      thresholds
## 4839     UWisc_Madison_Modeling                                       materials
## 4840     UWisc_Madison_Modeling                                      understand
## 4841               Georgia_Tech                                           found
## 4842               Georgia_Tech                                            note
## 4843                     Drexel                                          common
## 4844                      UUtah                                         sources
## 4845  UWisc_Madison_Programming                                       solutions
## 4846                 UWisconsin                                             4th
## 4847                 UWisconsin                                   accomodations
## 4848                 UWisconsin                                    accompanying
## 4849                 UWisconsin                                            adam
## 4850                 UWisconsin                                       anonymity
## 4851                 UWisconsin                                    appreciation
## 4852                 UWisconsin                                             ben
## 4853                 UWisconsin                                         century
## 4854                 UWisconsin                                         company
## 4855                 UWisconsin                                    competencies
## 4856                 UWisconsin                                      compliance
## 4857                 UWisconsin                                    contribution
## 4858                 UWisconsin                                         desktop
## 4859                 UWisconsin                                     eligibility
## 4860                 UWisconsin                                          fourth
## 4861                 UWisconsin                                        guidance
## 4862                 UWisconsin                                          harris
## 4863                 UWisconsin                                         hbr.org
## 4864                 UWisconsin                                             ill
## 4865                 UWisconsin                                         indexes
## 4866                 UWisconsin                                             job
## 4867                 UWisconsin                                        judgment
## 4868                 UWisconsin                                        kaufmann
## 4869                 UWisconsin                                         mapping
## 4870                 UWisconsin                                          morgan
## 4871                 UWisconsin                                       proactive
## 4872                 UWisconsin                                        retrieve
## 4873                 UWisconsin                                          syntax
## 4874                 UWisconsin                                          target
## 4875                 UWisconsin                                           timed
## 4876                 UWisconsin                                         unusual
## 4877                 UWisconsin                                              uw
## 4878                 UWisconsin                                       wisconsin
## 4879                        ASU                                          friday
## 4880                        ASU                                            hall
## 4881                        ASU                                       homeworks
## 4882                        ASU                                     instructors
## 4883                        ASU                                           intro
## 4884                        ASU                                             key
## 4885                        ASU                                          method
## 4886                        ASU                                        notebook
## 4887                        ASU                                        requests
## 4888                        ASU                                         require
## 4889                        ASU                                        specific
## 4890                        ASU                                         summary
## 4891                        ASU                                       textbooks
## 4892                        ASU                                         version
## 4893                        ASU                                            zoom
## 4894                    Cornell                                     calculation
## 4895                    Cornell                                          chance
## 4896                    Cornell                                           cheat
## 4897                    Cornell                                         complex
## 4898                    Cornell                                            earn
## 4899                    Cornell                                          engage
## 4900                    Cornell                                            gain
## 4901                    Cornell                                       implement
## 4902                    Cornell                                       inclusion
## 4903                    Cornell                                    individually
## 4904                    Cornell                                        intended
## 4905                    Cornell                                       logistics
## 4906                    Cornell                                         maximum
## 4907                    Cornell                                            send
## 4908                    Cornell                                          sunday
## 4909                        UMD                                      additional
## 4910                        UMD                                      experience
## 4911                        UMD                                       materials
## 4912                        UMD                                         section
## 4913                     Drexel                                      university
## 4914            Montgomery_Coll                                   accommodation
## 4915            Montgomery_Coll                                       analyzing
## 4916            Montgomery_Coll                                          change
## 4917            Montgomery_Coll                                      evaluation
## 4918            Montgomery_Coll                                          expect
## 4919            Montgomery_Coll                                          format
## 4920            Montgomery_Coll                                            home
## 4921            Montgomery_Coll                                        multiple
## 4922            Montgomery_Coll                                            site
## 4923     UWisc_Madison_Modeling                                           learn
## 4924                 UWisconsin                                        software
## 4925                  Princeton                                           bayes
## 4926                  Princeton                                         copying
## 4927                  Princeton                                       databases
## 4928                  Princeton                                       detection
## 4929                  Princeton                                    manipulation
## 4930                  Princeton                                          mining
## 4931                  Princeton                                       reference
## 4932                  Princeton                                          tables
## 4933                  Princeton                                          taught
## 4934                  Princeton                                           trees
## 4935                  Princeton                                           video
## 4936                  UKentucky                                           means
## 4937                     UMaine                                           exams
## 4938                 UCSanDiego                                            late
## 4939                        UMD                                          online
## 4940                    UVA_SDS                                          center
## 4941                    UVA_SDS                                   communication
## 4942                    UVA_SDS                                            note
## 4943                    UVA_SDS                                        personal
## 4944                    UIU_207                                      discussion
## 4945                    UIU_207                                   participation
## 4946                    UIU_207                                   visualization
## 4947                     Drexel                                     exploratory
## 4948                     Drexel                                     performance
## 4949               USouthampton                                         project
## 4950                      UUtah                                         analyze
## 4951                      UUtah                                         college
## 4952                      UUtah                                          report
## 4953                      UUtah                                           visit
## 4954                 Boston_Uni                                          answer
## 4955                 Boston_Uni                                        calendar
## 4956                 Boston_Uni                                         classes
## 4957                 Boston_Uni                                      considered
## 4958                 Boston_Uni                                            drop
## 4959                 Boston_Uni                                           error
## 4960                 Boston_Uni                                            list
## 4961                 Boston_Uni                                    mathematical
## 4962                 Boston_Uni                                          system
## 4963                 Boston_Uni                                       technical
## 4964           Washington_State                                          online
## 4965                NYU_IntroDS                                        lectures
## 4966                NYU_IntroDS                                         methods
## 4967                      Brown                                     description
## 4968                      Brown                                         methods
## 4969                      Brown                                        projects
## 4970                    Harvard                                          access
## 4971                    Harvard                                            date
## 4972                    Harvard                                             day
## 4973                        UMD                                        cleaning
## 4974                        UMD                                             key
## 4975                        UMD                                           links
## 4976                        UMD                                     preparation
## 4977                        UMD                                        specific
## 4978                  UKentucky                                         contact
## 4979                    Rutgers                                           apply
## 4980                    Rutgers                                        examples
## 4981                    Rutgers                                           exams
## 4982                    Rutgers                                     foundations
## 4983                    Rutgers                                          issues
## 4984                    Rutgers                                        language
## 4985                    Rutgers                                         results
## 4986                   UToronto                                         student
## 4987                 UWisconsin                                       decisions
## 4988                 UWisconsin                                      foundation
## 4989                 UWisconsin                                          future
## 4990                 UWisconsin                                            john
## 4991                 UWisconsin                                             pdf
## 4992                 UWisconsin                                       practical
## 4993                 UWisconsin                                           press
## 4994                 UWisconsin                                       professor
## 4995           Washington_State                                        datasets
## 4996           Washington_State                                      encouraged
## 4997           Washington_State                                           times
## 4998            Montgomery_Coll                                            time
## 4999                 UCBerkeley                                             set
## 5000                 UCBerkeley                                      understand
## 5001             UniSys_Georgia                                     description
## 5002             UniSys_Georgia                                        projects
## 5003             UniSys_Georgia                                         provide
## 5004             UniSys_Georgia                                            real
## 5005                 UWisconsin                                        overview
## 5006                      UUtah                                    confidential
## 5007                      UUtah                                              ed
## 5008                      UUtah                                           equal
## 5009                      UUtah                                         library
## 5010                      UUtah                                          lowest
## 5011                      UUtah                                         network
## 5012                      UUtah                                          people
## 5013                      UUtah                                           power
## 5014                      UUtah                                        starting
## 5015                        UMD                                          campus
## 5016                        UMD                                       community
## 5017                    UZurich                                        accuracy
## 5018                    UZurich                                     correlation
## 5019                    UZurich                                   distributions
## 5020                    UZurich                                      estimation
## 5021                    UZurich                                     expressions
## 5022                    UZurich                                        function
## 5023                    UZurich                                          hastie
## 5024                    UZurich                                            line
## 5025                    UZurich                                           media
## 5026                    UZurich                                       notebooks
## 5027                    UZurich                                    optimization
## 5028                    UZurich                                         product
## 5029                    UZurich                                         session
## 5030                    UZurich                                      tibshirani
## 5031                 UCBerkeley                                      instructor
## 5032                    UIU_107                                        assigned
## 5033                    UIU_107                                         website
## 5034                 UCSanDiego                                        readings
## 5035                    Cornell                                   computational
## 5036                    Cornell                                         related
## 5037                    Cornell                                        material
## 5038                     UMaine                                        approved
## 5039                     UMaine                                          effort
## 5040                     UMaine                                          entire
## 5041                     UMaine                                       numerical
## 5042                     UMaine                                           refer
## 5043                     UMaine                                       reference
## 5044                     UMaine                                          tables
## 5045                     UMaine                                           tests
## 5046                        MIT                                           dates
## 5047                        MIT                                        language
## 5048                        MIT                                   prerequisites
## 5049               Georgia_Tech                                            time
## 5050                 UCBerkeley                                          online
## 5051                      UUtah                                    801.213.3697
## 5052                      UUtah                                     accompanied
## 5053                      UUtah                                    accomplished
## 5054                      UUtah                                       agreeable
## 5055                      UUtah                                         aid.php
## 5056                      UUtah                                          alerts
## 5057                      UUtah                                        analysts
## 5058                      UUtah                                              ap
## 5059                      UUtah                                     appreciated
## 5060                      UUtah                                          aurten
## 5061                      UUtah                                             ban
## 5062                      UUtah                                      biologists
## 5063                      UUtah                                       bitbucket
## 5064                      UUtah                                      blitzstein
## 5065                      UUtah                                         boosted
## 5066                      UUtah                                   breakthroughs
## 5067                      UUtah                                         burnout
## 5068                      UUtah                                         capable
## 5069                      UUtah                                             cds
## 5070                      UUtah                                       chocolate
## 5071                      UUtah                                         chollet
## 5072                      UUtah                                           chunk
## 5073                      UUtah                                           clips
## 5074                      UUtah                                           close
## 5075                      UUtah                                      colleagues
## 5076                      UUtah                                    collectively
## 5077                      UUtah                                       committee
## 5078                      UUtah                                      compatible
## 5079                      UUtah                                     constitutes
## 5080                      UUtah                                    consultation
## 5081                      UUtah                                    corequisites
## 5082                      UUtah                            coronavirus.utah.edu
## 5083                      UUtah                                          couple
## 5084                      UUtah                                     createspace
## 5085                      UUtah                                         creator
## 5086                      UUtah                                       crunching
## 5087                      UUtah                                        cultural
## 5088                      UUtah                                          curved
## 5089                      UUtah                                         daniela
## 5090                      UUtah                                            dave
## 5091                      UUtah                                           david
## 5092                      UUtah                                          deduct
## 5093                      UUtah                                         deleted
## 5094                      UUtah                                    demonstrated
## 5095                      UUtah                                   disrespectful
## 5096                      UUtah                                        doctrine
## 5097                      UUtah                                  dream.utah.edu
## 5098                      UUtah                                       elections
## 5099                      UUtah                                         entered
## 5100                      UUtah                                          escort
## 5101                      UUtah                                       ethnicity
## 5102                      UUtah                                     exclamation
## 5103                      UUtah                                     explanation
## 5104                      UUtah                                            fame
## 5105                      UUtah                                        families
## 5106                      UUtah                                        featured
## 5107                      UUtah                                      flctivites
## 5108                      UUtah                                        francois
## 5109                      UUtah                                      fulfilling
## 5110                      UUtah                                          gareth
## 5111                      UUtah                                           gefre
## 5112                      UUtah                            handbook.cs.utah.edu
## 5113                      UUtah                                       hanspeter
## 5114                      UUtah                                        harrison
## 5115                      UUtah                                       harvard's
## 5116                      UUtah                                          header
## 5117                      UUtah                                           humor
## 5118                      UUtah                                     hyperlinked
## 5119                      UUtah                                     incentivize
## 5120                      UUtah                                       increased
## 5121                      UUtah                                      indirectly
## 5122                      UUtah                                     infractions
## 5123                      UUtah                                       installed
## 5124                      UUtah                                       intuitive
## 5125                      UUtah                                        isolated
## 5126                      UUtah                                         iterate
## 5127                      UUtah                                      jeopardize
## 5128                      UUtah                                             joe
## 5129                      UUtah                                          jquery
## 5130                      UUtah                                         kayning
## 5131                      UUtah                                            leam
## 5132                      UUtah                                         learner
## 5133                      UUtah                                        licensed
## 5134                      UUtah                                         linking
## 5135                      UUtah                                           lists
## 5136                      UUtah                                      loneliness
## 5137                      UUtah                                            loop
## 5138                      UUtah                                           loved
## 5139                      UUtah                                             mdt
## 5140                      UUtah                                      mechanical
## 5141                      UUtah                                         minimal
## 5142                      UUtah                                         misteps
## 5143                      UUtah                                             mst
## 5144                      UUtah                                       neccesary
## 5145                      UUtah                                         node.js
## 5146                      UUtah                                   noncommercial
## 5147                      UUtah                                      noticeably
## 5148                      UUtah                                    notification
## 5149                      UUtah                                        offenses
## 5150                      UUtah                                          orfely
## 5151                      UUtah                                          packed
## 5152                      UUtah                                            park
## 5153                      UUtah                                         parties
## 5154                      UUtah                                         permits
## 5155                      UUtah                                      personally
## 5156                      UUtah                                         pfister
## 5157                      UUtah                                         plot.ly
## 5158                      UUtah                                      preference
## 5159                      UUtah                                      production
## 5160                      UUtah                                    productivity
## 5161                      UUtah                                     progressing
## 5162                      UUtah                                        properly
## 5163                      UUtah                                          pushed
## 5164                      UUtah                                     quarantined
## 5165                      UUtah                                           rates
## 5166                      UUtah                                          rating
## 5167                      UUtah                                      readme.txt
## 5168                      UUtah                                       recognzie
## 5169                      UUtah                                 recommendations
## 5170                      UUtah                                          refers
## 5171                      UUtah                                          refine
## 5172                      UUtah                                    reformatting
## 5173                      UUtah                                         removed
## 5174                      UUtah                                       repeating
## 5175                      UUtah                                         reshape
## 5176                      UUtah                                           rhaul
## 5177                      UUtah                                         rosters
## 5178                      UUtah                                  safeu.utah.edu
## 5179                      UUtah                                         sarcasm
## 5180                      UUtah                                       scholarly
## 5181                      UUtah                                           seeks
## 5182                      UUtah                                          served
## 5183                      UUtah                                             soc
## 5184                      UUtah                                   socioeconomic
## 5185                      UUtah                                       spectator
## 5186                      UUtah                                          sports
## 5187                      UUtah                                             ssb
## 5188                      UUtah                                        streamed
## 5189                      UUtah                                         strings
## 5190                      UUtah                                      suspicious
## 5191                      UUtah                                          themed
## 5192                      UUtah                                           thumb
## 5193                      UUtah                                             url
## 5194                      UUtah                                          verena
## 5195                      UUtah                                      verifiable
## 5196                      UUtah                                       veteran's
## 5197                      UUtah                                          viewed
## 5198                      UUtah                                          voting
## 5199                      UUtah                                       wellbeing
## 5200                      UUtah                               wellness.utah.edu
## 5201                      UUtah                                       workshops
## 5202                      UUtah                                 www.cs.utah.edu
## 5203                      UUtah                           www.wellness.utah.edu
## 5204                      UUtah                                         youtube
## 5205                      UUtah                                             zip
## 5206                      UUtah                                            пote
## 5207                    Harvard                                        comments
## 5208                    Harvard                                     demonstrate
## 5209                    Harvard                                          follow
## 5210                    Harvard                                        meetings
## 5211                    Harvard                                         penalty
## 5212                    Harvard                                      principles
## 5213                    Harvard                                    professional
## 5214                    Harvard                                         systems
## 5215                    Harvard                                          theory
## 5216                        UMD                                          python
## 5217                        LSU                                         account
## 5218                        LSU                                     computation
## 5219                        LSU                                     demonstrate
## 5220                        LSU                                        elements
## 5221                        LSU                                         learned
## 5222                        LSU                                        location
## 5223                        LSU                                      permission
## 5224                        LSU                                    professional
## 5225                        LSU                                           reach
## 5226                        LSU                                             run
## 5227                        LSU                                          simple
## 5228                        LSU                                        strongly
## 5229                        LSU                                         systems
## 5230                        LSU                                   undergraduate
## 5231  UWisc_Madison_Programming                                          weekly
## 5232           William_and_Mary                                             add
## 5233           William_and_Mary                                          amount
## 5234           William_and_Mary                                       attention
## 5235           William_and_Mary                                       carefully
## 5236           William_and_Mary                                      conceptual
## 5237           William_and_Mary                                       discussed
## 5238           William_and_Mary                                       efficient
## 5239           William_and_Mary                                        ensemble
## 5240           William_and_Mary                                            held
## 5241           William_and_Mary                                    installation
## 5242           William_and_Mary                                       libraries
## 5243           William_and_Mary                                           linux
## 5244           William_and_Mary                                         minimum
## 5245           William_and_Mary                                          missed
## 5246           William_and_Mary                                         nearest
## 5247           William_and_Mary                                              os
## 5248           William_and_Mary                                       potential
## 5249           William_and_Mary                                          prefer
## 5250           William_and_Mary                                        previous
## 5251           William_and_Mary                                       processes
## 5252           William_and_Mary                                        referred
## 5253           William_and_Mary                                      requisites
## 5254           William_and_Mary                                           space
## 5255           William_and_Mary                                      wednesdays
## 5256                 UWisconsin                                        required
## 5257                  Princeton                                         lecture
## 5258                  Princeton                                         methods
## 5259                     Drexel                                     acquisition
## 5260                     Drexel                                        assessed
## 5261                     Drexel                                            bias
## 5262                     Drexel                                        generate
## 5263                     Drexel                                       languages
## 5264                     Drexel                                       potential
## 5265                     Drexel                                        security
## 5266                     Drexel                                           skill
## 5267                     Drexel                                           space
## 5268                     Drexel                                        variance
## 5269                  Princeton                                            exam
## 5270                    UVA_SDS                                           ahead
## 5271                    UVA_SDS                                      analytical
## 5272                    UVA_SDS                                         complex
## 5273                    UVA_SDS                                        detailed
## 5274                    UVA_SDS                                   documentation
## 5275                    UVA_SDS                                         friends
## 5276                    UVA_SDS                                        function
## 5277                    UVA_SDS                                            hour
## 5278                    UVA_SDS                                    individually
## 5279                    UVA_SDS                                         initial
## 5280                    UVA_SDS                                       logistics
## 5281                    UVA_SDS                                           media
## 5282                    UVA_SDS                                        mistakes
## 5283                    UVA_SDS                                          papers
## 5284                    UVA_SDS                                           power
## 5285                    UVA_SDS                                         quizzes
## 5286                    UVA_SDS                                         society
## 5287                    UVA_SDS                                        starting
## 5288                    UVA_SDS                                           steps
## 5289                    UVA_SDS                                       transform
## 5290                    UVA_SDS                                       typically
## 5291                    UVA_SDS                                           watch
## 5292                        LSU                                     information
## 5293                   NYU_DS4E                                           build
## 5294                   NYU_DS4E                                        building
## 5295                   NYU_DS4E                                         program
## 5296                   NYU_DS4E                                        requires
## 5297                   NYU_DS4E                                        research
## 5298                NYU_IntroDS                                         college
## 5299                NYU_IntroDS                                         covered
## 5300                NYU_IntroDS                                         details
## 5301                NYU_IntroDS                                         explain
## 5302                NYU_IntroDS                                         perform
## 5303                NYU_IntroDS                                        relevant
## 5304                NYU_IntroDS                                        research
## 5305                NYU_IntroDS                                            text
## 5306            Montgomery_Coll                                  accommodations
## 5307            Montgomery_Coll                                      activities
## 5308                   UVA_Stat                                         section
## 5309                   UToronto                                   accessibility
## 5310                   UToronto                                      clustering
## 5311                   UToronto                                           goals
## 5312                      UUtah                                         written
## 5313                   NYU_DS4E                                        concepts
## 5314                        ASU                                    disabilities
## 5315                        ASU                                   participation
## 5316                 UCSanDiego                                      attendance
## 5317                 UCSanDiego                                            drop
## 5318                 UCSanDiego                                           error
## 5319                 UCSanDiego                                           short
## 5320                    Harvard                                        analysis
## 5321                 UCSanDiego                                         ability
## 5322                 UCSanDiego                                         copying
## 5323                 UCSanDiego                                          direct
## 5324                 UCSanDiego                                            hard
## 5325                 UCSanDiego                                            main
## 5326                 UCSanDiego                                      reasonable
## 5327                 UCSanDiego                                           video
## 5328                 Boston_Uni                                        computer
## 5329                 Boston_Uni                                        lectures
## 5330                 Boston_Uni                                         machine
## 5331                 Boston_Uni                                        teaching
## 5332                       CUNY                                        datasets
## 5333                       CUNY                                         variety
## 5334           William_and_Mary                                       exercises
## 5335           William_and_Mary                                        overview
## 5336           Washington_State                                   announcements
## 5337           Washington_State                                            call
## 5338           Washington_State                                      completing
## 5339           Washington_State                                        creating
## 5340           Washington_State                                     descriptive
## 5341           Washington_State                                          ensure
## 5342           Washington_State                                          ethics
## 5343           Washington_State                                            hand
## 5344           Washington_State                                          hastie
## 5345           Washington_State                                    individually
## 5346           Washington_State                                        intended
## 5347           Washington_State                                         network
## 5348           Washington_State                                   opportunities
## 5349           Washington_State                                    perspectives
## 5350           Washington_State                                       tentative
## 5351           Washington_State                                      tibshirani
## 5352           Washington_State                                          weight
## 5353                   UVA_Stat                                     programming
## 5354                   UVA_Stat                                      university
## 5355               Georgia_Tech                                          create
## 5356               Georgia_Tech                                         related
## 5357               Georgia_Tech                                          social
## 5358                   NYU_DS4E                                        language
## 5359                     Drexel                                       computing
## 5360                     Drexel                                      technology
## 5361                  UKentucky                                          active
## 5362                  UKentucky                                             add
## 5363                  UKentucky                                     collaborate
## 5364                  UKentucky                                        creation
## 5365                  UKentucky                                         defined
## 5366                  UKentucky                                       developed
## 5367                  UKentucky                                       discussed
## 5368                  UKentucky                                         diverse
## 5369                  UKentucky                                         finally
## 5370                  UKentucky                                      inferences
## 5371                  UKentucky                                          inform
## 5372                  UKentucky                                    installation
## 5373                  UKentucky                                         jeffrey
## 5374                  UKentucky                                            join
## 5375                  UKentucky                                           kinds
## 5376                  UKentucky                                         meaning
## 5377                  UKentucky                                         minimum
## 5378                  UKentucky                                          option
## 5379                  UKentucky                                              os
## 5380                  UKentucky                                           pages
## 5381                  UKentucky                                        platform
## 5382                  UKentucky                                          prefer
## 5383                  UKentucky                                   presentations
## 5384                  UKentucky                                       processes
## 5385                  UKentucky                                       recognize
## 5386                  UKentucky                                       religious
## 5387                  UKentucky                                           sites
## 5388                  UKentucky                                       structure
## 5389                  UKentucky                                         studies
## 5390                  UKentucky                                      wednesdays
## 5391     UWisc_Madison_Modeling                                          linear
## 5392     UWisc_Madison_Modeling                                            page
## 5393     UWisc_Madison_Modeling                                        software
## 5394     UWisc_Madison_Modeling                                   visualization
## 5395                      UUtah                                         receive
## 5396                      UUtah                                  accommodations
## 5397                    UZurich                                   computational
## 5398           William_and_Mary                                       resources
## 5399  UWisc_Madison_Programming                                          attend
## 5400  UWisc_Madison_Programming                                            drop
## 5401                        UMD                                       acquiring
## 5402                        UMD                                         adopted
## 5403                        UMD                                       advantage
## 5404                        UMD                                        allocate
## 5405                        UMD                                          begins
## 5406                        UMD                                       behaviors
## 5407                        UMD                                         broader
## 5408                        UMD                                          builds
## 5409                        UMD                                      calculated
## 5410                        UMD                                           cited
## 5411                        UMD                                      classrooms
## 5412                        UMD                                    constructive
## 5413                        UMD                                         courage
## 5414                        UMD                                     credentials
## 5415                        UMD                                      engagement
## 5416                        UMD                                          equity
## 5417                        UMD                                      evaluating
## 5418                        UMD                                         expects
## 5419                        UMD                                             faq
## 5420                        UMD                                          fellow
## 5421                        UMD                                      formatting
## 5422                        UMD                                        guidance
## 5423                        UMD                                          hybrid
## 5424                        UMD                                             ill
## 5425                        UMD                                      impossible
## 5426                        UMD                                       librarian
## 5427                        UMD                                      maintained
## 5428                        UMD                                     methodology
## 5429                        UMD                                       obstacles
## 5430                        UMD                                        obtained
## 5431                        UMD                                         opinion
## 5432                        UMD                                         other's
## 5433                        UMD                                           owned
## 5434                        UMD                                            pace
## 5435                        UMD                                        password
## 5436                        UMD                                           poses
## 5437                        UMD                                        position
## 5438                        UMD                                        postings
## 5439                        UMD                                       proactive
## 5440                        UMD                                      prohibited
## 5441                        UMD                                        pronouns
## 5442                        UMD                                          remain
## 5443                        UMD                                          remove
## 5444                        UMD                                        rounding
## 5445                        UMD                                          simply
## 5446                        UMD                                             tab
## 5447                        UMD                                           treat
## 5448                        UMD                                       whichever
## 5449                        UMD                                        workload
## 5450  UWisc_Madison_Programming                                          direct
## 5451  UWisc_Madison_Programming                                       education
## 5452  UWisc_Madison_Programming                                          effort
## 5453  UWisc_Madison_Programming                                            file
## 5454  UWisc_Madison_Programming                                             mac
## 5455  UWisc_Madison_Programming                                          piazza
## 5456  UWisc_Madison_Programming                                      reasonable
## 5457  UWisc_Madison_Programming                                         windows
## 5458                    UIU_107                                        analysis
## 5459                    UIU_107                                           final
## 5460                        ASU                                        calculus
## 5461                        ASU                                         central
## 5462                        ASU                                        comments
## 5463                        ASU                                        document
## 5464                        ASU                                         honesty
## 5465                        ASU                                          modern
## 5466                        ASU                                        official
## 5467                        ASU                                           phone
## 5468                        ASU                                      procedures
## 5469            Montgomery_Coll                                      coursework
## 5470            Montgomery_Coll                                        deadline
## 5471            Montgomery_Coll                                     exploratory
## 5472            Montgomery_Coll                                        feedback
## 5473            Montgomery_Coll                                      objectives
## 5474            Montgomery_Coll                                           rules
## 5475            Montgomery_Coll                                       statement
## 5476            Montgomery_Coll                                             top
## 5477                     UMaine                                        teaching
## 5478                    Harvard                                   understanding
## 5479                     UMaine                                        schedule
## 5480               Georgia_Tech                                            free
## 5481                      UUtah                                          online
## 5482                        UMD                                          access
## 5483                        UMD                                   visualization
## 5484                      UUtah                                            free
## 5485            Montgomery_Coll                                         project
## 5486            Montgomery_Coll                                      statistics
## 5487                  UKentucky                                        includes
## 5488                  UKentucky                                            post
## 5489                  UKentucky                                          source
## 5490                  UKentucky                                           weeks
## 5491                UWashington                                           learn
## 5492                UWashington                                        syllabus
## 5493                UWashington                                      university
## 5494             UniSys_Georgia                                     information
## 5495                    UVA_SDS                                        identify
## 5496                    UVA_SDS                                          posted
## 5497                    UVA_SDS                                  accommodations
## 5498                  UKentucky                                      additional
## 5499                    Rutgers                                            exam
## 5500                    Rutgers                                      statistics
## 5501                    UIU_207                                   prerequisites
## 5502                    UIU_207                                         results
## 5503                    UIU_207                                        textbook
## 5504                    UIU_207                                          weekly
## 5505                     Drexel                                           avoid
## 5506                      UUtah                                        networks
## 5507                      UUtah                                           rules
## 5508                    Cornell                                         achieve
## 5509                    Cornell                                     collaborate
## 5510                    Cornell                                      contribute
## 5511                    Cornell                                         correct
## 5512                    Cornell                                        emphasis
## 5513                    Cornell                                      equivalent
## 5514                    Cornell                                            fail
## 5515                    Cornell                                        generate
## 5516                    Cornell                                             i.e
## 5517                    Cornell                                           kinds
## 5518                    Cornell                                       languages
## 5519                    Cornell                                            meet
## 5520                    Cornell                                         portion
## 5521                    Cornell                                           posts
## 5522                    Cornell                                          reason
## 5523                    Cornell                                       recognize
## 5524                    Cornell                                   relationships
## 5525                    Cornell                                      repository
## 5526                    Cornell                                       situation
## 5527                    Cornell                                       structure
## 5528                 Boston_Uni                                          change
## 5529                 Boston_Uni                                         college
## 5530                 Boston_Uni                                      management
## 5531                  Princeton                                        chapters
## 5532                  Princeton                                              ed
## 5533                  Princeton                                           equal
## 5534                  Princeton                                      estimation
## 5535                  Princeton                                           event
## 5536                  Princeton                                           james
## 5537                  Princeton                                       tentative
## 5538                  Princeton                                          weight
## 5539                    Harvard                                         results
## 5540                    Harvard                                       submitted
## 5541                    Rutgers                                        datasets
## 5542                    Rutgers                                      encouraged
## 5543                    Rutgers                                           found
## 5544                        UMD                                         account
## 5545                        UMD                                       analytics
## 5546                        UMD                                      assistance
## 5547                        UMD                                     demonstrate
## 5548                        UMD                                      extensions
## 5549                        UMD                                            plan
## 5550                        UMD                                       preferred
## 5551                        UMD                                         primary
## 5552                        UMD                                            role
## 5553           Washington_State                                          create
## 5554           Washington_State                                          posted
## 5555           Washington_State                                          social
## 5556           Washington_State                                     submissions
## 5557                        LSU                                        examples
## 5558                        LSU                                        readings
## 5559           Washington_State                                  accommodations
## 5560           Washington_State                                           notes
## 5561                NYU_IntroDS                                  accommodations
## 5562                      Brown                                         include
## 5563                      Brown                                           notes
## 5564                      Brown                                          skills
## 5565                        UMD                                     opportunity
## 5566                        UMD                                            post
## 5567                        UMD                                      submission
## 5568                 UCBerkeley                                          access
## 5569                 UWisconsin                                         copying
## 5570                 UWisconsin                                         develop
## 5571                 UWisconsin                                            file
## 5572                 UWisconsin                                         respond
## 5573                 UWisconsin                                  visualizations
## 5574                   NYU_DS4E                                          advice
## 5575                   NYU_DS4E                                         advised
## 5576                   NYU_DS4E                                        applying
## 5577                   NYU_DS4E                                          career
## 5578                   NYU_DS4E                                      categories
## 5579                   NYU_DS4E                                     classifiers
## 5580                   NYU_DS4E                                      conducting
## 5581                   NYU_DS4E                                       confusion
## 5582                   NYU_DS4E                                           count
## 5583                   NYU_DS4E                                          define
## 5584                   NYU_DS4E                                          detail
## 5585                   NYU_DS4E                                          easily
## 5586                   NYU_DS4E                                         effects
## 5587                   NYU_DS4E                                         excused
## 5588                   NYU_DS4E                                          figure
## 5589                   NYU_DS4E                                          inputs
## 5590                   NYU_DS4E                                    intelligence
## 5591                   NYU_DS4E                                          living
## 5592                   NYU_DS4E                                      meaningful
## 5593                   NYU_DS4E                                    occasionally
## 5594                   NYU_DS4E                                      organizing
## 5595                   NYU_DS4E                                        presence
## 5596                   NYU_DS4E                                        publicly
## 5597                   NYU_DS4E                                           reply
## 5598                   NYU_DS4E                                            stay
## 5599                   NYU_DS4E                                          stored
## 5600                   NYU_DS4E                                            tips
## 5601                   NYU_DS4E                                     transparent
## 5602                   NYU_DS4E                                         viewing
## 5603           William_and_Mary                                            time
## 5604                    Cornell                                       integrity
## 5605                    Cornell                                           prior
## 5606                    Cornell                                      submission
## 5607                 UCSanDiego                                   communication
## 5608                 UCSanDiego                                      encouraged
## 5609                    UIU_107                                           exams
## 5610                    UIU_107                                   prerequisites
## 5611                    UIU_107                                         results
## 5612                        ASU                                           based
## 5613                        ASU                                        semester
## 5614  UWisc_Madison_Programming                                        teaching
## 5615                        MIT                                        accepted
## 5616                        MIT                                      encouraged
## 5617                        MIT                                           times
## 5618                  UKentucky                                        expected
## 5619             UniSys_Georgia                                          credit
## 5620             UniSys_Georgia                                      regression
## 5621             UniSys_Georgia                                          skills
## 5622           Washington_State                                        concepts
## 5623  UWisc_Madison_Programming                                     programming
## 5624                    UVA_SDS                                           world
## 5625                    Cornell                                       materials
## 5626                    Cornell                                       resources
## 5627  UWisc_Madison_Programming                                         content
## 5628  UWisc_Madison_Programming                                            labs
## 5629            Montgomery_Coll                                        analysis
## 5630                    Harvard                                       assistant
## 5631                    Harvard                                       committed
## 5632                    Harvard                                     development
## 5633                    Harvard                                      documented
## 5634                    Harvard                                        download
## 5635                    Harvard                                           field
## 5636                    Harvard                                          graphs
## 5637                    Harvard                                             mac
## 5638                    Harvard                                    manipulation
## 5639                    Harvard                                           meets
## 5640                    Harvard                                        original
## 5641                    Harvard                                         running
## 5642                    Harvard                                          survey
## 5643                    Harvard                                           topic
## 5644                    Harvard                                         windows
## 5645                     UMaine                                   announcements
## 5646                     UMaine                                         concept
## 5647                     UMaine                                    confidential
## 5648                     UMaine                                     descriptive
## 5649                     UMaine                                        detailed
## 5650                     UMaine                                      difference
## 5651                     UMaine                                   distributions
## 5652                     UMaine                                         failing
## 5653                     UMaine                                         initial
## 5654                     UMaine                                           james
## 5655                     UMaine                                            mark
## 5656                     UMaine                                          matrix
## 5657                     UMaine                                             pre
## 5658                     UMaine                                      prediction
## 5659                     UMaine                                       privately
## 5660                     UMaine                                      requesting
## 5661                     UMaine                                     responsible
## 5662                     UMaine                                            rule
## 5663                      UUtah                                     acknowledge
## 5664                      UUtah                                             age
## 5665                      UUtah                                          amount
## 5666                      UUtah                                        assessed
## 5667                      UUtah                                   automatically
## 5668                      UUtah                                         consult
## 5669                      UUtah                                       copyright
## 5670                      UUtah                                        criteria
## 5671                      UUtah                                              cs
## 5672                      UUtah                                     extenuating
## 5673                      UUtah                                        handbook
## 5674                      UUtah                                         helpful
## 5675                      UUtah                                           kinds
## 5676                      UUtah                                        machines
## 5677                      UUtah                                     mathematics
## 5678                      UUtah                                         nearest
## 5679                      UUtah                                           numpy
## 5680                      UUtah                                            race
## 5681                      UUtah                                          reason
## 5682                      UUtah                                         regrade
## 5683                      UUtah                                      repository
## 5684                      UUtah                                         similar
## 5685                      UUtah                                       student's
## 5686                    UZurich                                          active
## 5687                    UZurich                                       automatic
## 5688                    UZurich                                         consult
## 5689                    UZurich                                        discrete
## 5690                    UZurich                                       languages
## 5691                    UZurich                                           minor
## 5692                    UZurich                                          prefer
## 5693                    UZurich                                   relationships
## 5694                    UZurich                                       represent
## 5695                    UZurich                                     theoretical
## 5696                   NYU_DS4E                                            feel
## 5697                   NYU_DS4E                                           major
## 5698                   NYU_DS4E                                            talk
## 5699                   NYU_DS4E                                             top
## 5700                NYU_IntroDS                                      algorithms
## 5701                NYU_IntroDS                                        approach
## 5702                NYU_IntroDS                                            core
## 5703                NYU_IntroDS                                     exploratory
## 5704                NYU_IntroDS                                         feature
## 5705                NYU_IntroDS                                        networks
## 5706                NYU_IntroDS                                      objectives
## 5707                NYU_IntroDS                                     performance
## 5708                NYU_IntroDS                                           rules
## 5709                NYU_IntroDS                                         solving
## 5710                NYU_IntroDS                                           total
## 5711                        LSU                                       assistant
## 5712                        LSU                                           aware
## 5713                        LSU                                           bring
## 5714                        LSU                                         control
## 5715                        LSU                                        critical
## 5716                        LSU                                     development
## 5717                        LSU                                        download
## 5718                        LSU                                          effort
## 5719                        LSU                                          entire
## 5720                        LSU                                    expectations
## 5721                        LSU                                           field
## 5722                        LSU                                        graduate
## 5723                        LSU                                            loss
## 5724                        LSU                                    manipulation
## 5725                        LSU                                      previously
## 5726                        LSU                                          public
## 5727                        LSU                                         respond
## 5728                        LSU                                         running
## 5729                        LSU                                         special
## 5730                        LSU                                          tables
## 5731                        LSU                                           tests
## 5732                        LSU                                           topic
## 5733                        LSU                                         windows
## 5734                   UToronto                                   accommodation
## 5735                   UToronto                                          change
## 5736                   UToronto                                           visit
## 5737                        ASU                                      instructor
## 5738                      UUtah                                           apply
## 5739                   UVA_Stat                                            date
## 5740                   UVA_Stat                                            page
## 5741                   UVA_Stat                                        software
## 5742                      UUtah                                        projects
## 5743                  Princeton                                          graded
## 5744                  Princeton                                         receive
## 5745                        ASU                                           dates
## 5746                   NYU_DS4E                                            exam
## 5747                        UMD                                        material
## 5748            Montgomery_Coll                                      experience
## 5749                 UCSanDiego                                           build
## 5750                 UCSanDiego                                          change
## 5751                 UCSanDiego                                          format
## 5752                 UCSanDiego                                        internet
## 5753                 UCSanDiego                                         request
## 5754                 UCSanDiego                                          taking
## 5755                     UMaine                                            time
## 5756                        UMD                                        expected
## 5757                       CUNY                                         explore
## 5758                       CUNY                                          graded
## 5759                       CUNY                                        outcomes
## 5760                       CUNY                                          posted
## 5761                       CUNY                                           solve
## 5762           William_and_Mary                                         missing
## 5763           William_and_Mary                                            sets
## 5764           William_and_Mary                                         sharing
## 5765               Georgia_Tech                                           books
## 5766               Georgia_Tech                                       computing
## 5767               Georgia_Tech                                         courses
## 5768               Georgia_Tech                                         meeting
## 5769               Georgia_Tech                                        overview
## 5770               Georgia_Tech                                            post
## 5771               Georgia_Tech                                       solutions
## 5772               Georgia_Tech                                           weeks
## 5773                     Drexel                                            list
## 5774                   NYU_DS4E                                          center
## 5775                      UUtah                                        includes
## 5776                    UZurich                                           books
## 5777                    UZurich                                       component
## 5778  UWisc_Madison_Programming                                   collaboration
## 5779  UWisc_Madison_Programming                                         details
## 5780            Montgomery_Coll                                        syllabus
## 5781                 Boston_Uni                                           notes
## 5782                 Boston_Uni                                      regression
## 5783                    UVA_SDS                                         achieve
## 5784                    UVA_SDS                                    arrangements
## 5785                    UVA_SDS                                           click
## 5786                    UVA_SDS                                        concerns
## 5787                    UVA_SDS                                        criteria
## 5788                    UVA_SDS                                       efficient
## 5789                    UVA_SDS                                       exploring
## 5790                    UVA_SDS                                          family
## 5791                    UVA_SDS                                          finish
## 5792                    UVA_SDS                                             fun
## 5793                    UVA_SDS                                     interactive
## 5794                    UVA_SDS                                             map
## 5795                    UVA_SDS                                         purpose
## 5796                    UVA_SDS                                       represent
## 5797                    UVA_SDS                                         studies
## 5798                    UVA_SDS                                      wednesdays
## 5799     UWisc_Madison_Modeling                                        examples
## 5800     UWisc_Madison_Modeling                                           exams
## 5801     UWisc_Madison_Modeling                                        language
## 5802     UWisc_Madison_Modeling                                        readings
## 5803     UWisc_Madison_Modeling                                         results
## 5804     UWisc_Madison_Modeling                                          weekly
## 5805                 UCSanDiego                                          chance
## 5806                 UCSanDiego                                           cheat
## 5807                 UCSanDiego                                      completing
## 5808                 UCSanDiego                                         concept
## 5809                 UCSanDiego                                   documentation
## 5810                 UCSanDiego                                          ensure
## 5811                 UCSanDiego                                       inclusion
## 5812                 UCSanDiego                                    individually
## 5813                 UCSanDiego                                          linked
## 5814                 UCSanDiego                                          lowest
## 5815                 UCSanDiego                                    perspectives
## 5816                 UCSanDiego                                         respect
## 5817                 UCSanDiego                                            tool
## 5818                 UCBerkeley                                       including
## 5819                       CUNY                                        concepts
## 5820           William_and_Mary                                     accommodate
## 5821           William_and_Mary                                        anaconda
## 5822           William_and_Mary                                       answering
## 5823           William_and_Mary                                    appointments
## 5824           William_and_Mary                                      approaches
## 5825           William_and_Mary                                             bit
## 5826           William_and_Mary                                           break
## 5827           William_and_Mary                                         browser
## 5828           William_and_Mary                                         consist
## 5829           William_and_Mary                                        creative
## 5830           William_and_Mary                                     differences
## 5831           William_and_Mary                                             dot
## 5832           William_and_Mary                                        external
## 5833           William_and_Mary                                           feels
## 5834           William_and_Mary                                         fridays
## 5835           William_and_Mary                                    fundamentals
## 5836           William_and_Mary                                          handle
## 5837           William_and_Mary                                          hidden
## 5838           William_and_Mary                                   inappropriate
## 5839           William_and_Mary                                    interpreting
## 5840           William_and_Mary                                           lines
## 5841           William_and_Mary                                            mail
## 5842           William_and_Mary                                      matplotlib
## 5843           William_and_Mary                                       messaging
## 5844           William_and_Mary                                         modules
## 5845           William_and_Mary                                       neighbors
## 5846           William_and_Mary                                          obtain
## 5847           William_and_Mary                                       principal
## 5848           William_and_Mary                                        purposes
## 5849           William_and_Mary                                           quick
## 5850           William_and_Mary                                         regular
## 5851           William_and_Mary                                          remote
## 5852           William_and_Mary                                       reporting
## 5853           William_and_Mary                                       responses
## 5854           William_and_Mary                                           serve
## 5855           William_and_Mary                                          single
## 5856           William_and_Mary                                            walk
## 5857                    UZurich                                         support
## 5858                     Drexel                                          linear
## 5859                     Drexel                                         average
## 5860                     Drexel                                           cloud
## 5861                     Drexel                                       conducted
## 5862                     Drexel                                           curve
## 5863                     Drexel                                        delivery
## 5864                     Drexel                                     disciplines
## 5865                     Drexel                                          hidden
## 5866                     Drexel                                            info
## 5867                     Drexel                                        insights
## 5868                     Drexel                                          origin
## 5869                     Drexel                                      structured
## 5870                     Drexel                                     terminology
## 5871                     Drexel                                          visual
## 5872                     Drexel                                      withdrawal
## 5873            Montgomery_Coll                                         applied
## 5874            Montgomery_Coll                                   circumstances
## 5875            Montgomery_Coll                                       classroom
## 5876            Montgomery_Coll                                          coding
## 5877            Montgomery_Coll                                            copy
## 5878            Montgomery_Coll                                         dataset
## 5879            Montgomery_Coll                                     fundamental
## 5880            Montgomery_Coll                                           links
## 5881            Montgomery_Coll                                     preparation
## 5882            Montgomery_Coll                                         prepare
## 5883            Montgomery_Coll                                  responsibility
## 5884            Montgomery_Coll                                       scheduled
## 5885            Montgomery_Coll                                       textbooks
## 5886                 UCSanDiego                                            10pm
## 5887                 UCSanDiego                                            58pm
## 5888                 UCSanDiego                                             5th
## 5889                 UCSanDiego                                         abiding
## 5890                 UCSanDiego                                         adapted
## 5891                 UCSanDiego                                             afa
## 5892                 UCSanDiego                                  aforementioned
## 5893                 UCSanDiego                                       afterward
## 5894                 UCSanDiego                                        allotted
## 5895                 UCSanDiego                                            asap
## 5896                 UCSanDiego                                       assigment
## 5897                 UCSanDiego                                         assumed
## 5898                 UCSanDiego                                     attribution
## 5899                 UCSanDiego                                         avoided
## 5900                 UCSanDiego                                            baby
## 5901                 UCSanDiego                                        bookmark
## 5902                 UCSanDiego                                             bpd
## 5903                 UCSanDiego                                     challenging
## 5904                 UCSanDiego                                   collaborating
## 5905                 UCSanDiego                                        confused
## 5906                 UCSanDiego                                datahub.ucsd.edu
## 5907                 UCSanDiego                                          decide
## 5908                 UCSanDiego                                        devalues
## 5909                 UCSanDiego                                              di
## 5910                 UCSanDiego                                       dicussion
## 5911                 UCSanDiego                                           diego
## 5912                 UCSanDiego                                       disabling
## 5913                 UCSanDiego                                         dismiss
## 5914                 UCSanDiego                                        eldridge
## 5915                 UCSanDiego                                        eligible
## 5916                 UCSanDiego                                       emphasize
## 5917                 UCSanDiego                                        entering
## 5918                 UCSanDiego                                          equals
## 5919                 UCSanDiego                                        equipped
## 5920                 UCSanDiego                                         extends
## 5921                 UCSanDiego                                        finishes
## 5922                 UCSanDiego                                         fluency
## 5923                 UCSanDiego                                        foremost
## 5924                 UCSanDiego                                    gradescope's
## 5925                 UCSanDiego                                           habit
## 5926                 UCSanDiego                                       happening
## 5927                 UCSanDiego                                       ignorance
## 5928                 UCSanDiego                                          ignore
## 5929                 UCSanDiego                                        impeding
## 5930                 UCSanDiego                                      indivduals
## 5931                 UCSanDiego                                    instructor's
## 5932                 UCSanDiego                                          janine
## 5933                 UCSanDiego                                            json
## 5934                 UCSanDiego                                       judgement
## 5935                 UCSanDiego                                            june
## 5936                 UCSanDiego                                              la
## 5937                 UCSanDiego                                        leniency
## 5938                 UCSanDiego                                         liaison
## 5939                 UCSanDiego                                          loaner
## 5940                 UCSanDiego                                 misrepresenting
## 5941                 UCSanDiego                                         onwards
## 5942                 UCSanDiego                                      permitting
## 5943                 UCSanDiego                                       pertinent
## 5944                 UCSanDiego                                          played
## 5945                 UCSanDiego                                           polls
## 5946                 UCSanDiego                                        prohibit
## 5947                 UCSanDiego                                         rampure
## 5948                 UCSanDiego                                             ran
## 5949                 UCSanDiego                                        respects
## 5950                 UCSanDiego                                             san
## 5951                 UCSanDiego                                  satisfactorily
## 5952                 UCSanDiego                                       saturdays
## 5953                 UCSanDiego                                            save
## 5954                 UCSanDiego                                           seats
## 5955                 UCSanDiego                                          solved
## 5956                 UCSanDiego                                       someone's
## 5957                 UCSanDiego                                            stop
## 5958                 UCSanDiego                                           stuck
## 5959                 UCSanDiego                                           suraj
## 5960                 UCSanDiego                                            surf
## 5961                 UCSanDiego                                         suspend
## 5962                 UCSanDiego                                     tiefenbruck
## 5963                 UCSanDiego                                           tutor
## 5964                 UCSanDiego                                          tutors
## 5965                 UCSanDiego                                             txt
## 5966                 UCSanDiego                                          ucsd's
## 5967                 UCSanDiego                                     unethically
## 5968                 UCSanDiego                                        ungraded
## 5969                 UCSanDiego                                         waiting
## 5970                 UCSanDiego                                           weird
## 5971                  UKentucky                                           check
## 5972                    UIU_207                                            exam
## 5973           Washington_State                                            00pm
## 5974           Washington_State                                       carefully
## 5975           Washington_State                                        creation
## 5976           Washington_State                                         defined
## 5977           Washington_State                                        emphasis
## 5978           Washington_State                                      equivalent
## 5979           Washington_State                                         jeffrey
## 5980           Washington_State                                         meaning
## 5981           Washington_State                                          option
## 5982           Washington_State                                         posting
## 5983           Washington_State                                          reason
## 5984           Washington_State                                      references
## 5985           Washington_State                                        security
## 5986           Washington_State                                           terms
## 5987           Washington_State                                     theoretical
## 5988                        ASU                                         address
## 5989                        ASU                                           aware
## 5990                        ASU                                       committed
## 5991                        ASU                                      conditions
## 5992                        ASU                                       education
## 5993                        ASU                                          entire
## 5994                        ASU                                         limited
## 5995                        ASU                                            loss
## 5996                        ASU                                       practices
## 5997                        ASU                                          values
## 5998                        ASU                                       violation
## 5999  UWisc_Madison_Programming                                        creating
## 6000  UWisc_Madison_Programming                                            hour
## 6001  UWisc_Madison_Programming                                       providing
## 6002  UWisc_Madison_Programming                                            tool
## 6003                     UMaine                                        services
## 6004                       CUNY                                           final
## 6005                    UVA_SDS                                     opportunity
## 6006                    UVA_SDS                                        overview
## 6007                    UIU_207                                        accepted
## 6008                    UIU_207                                           times
## 6009  UWisc_Madison_Programming                                       accessing
## 6010  UWisc_Madison_Programming                                    accommodated
## 6011  UWisc_Madison_Programming                                    accomplishes
## 6012  UWisc_Madison_Programming                                      achievable
## 6013  UWisc_Madison_Programming                                           aefis
## 6014  UWisc_Madison_Programming                                          agrees
## 6015  UWisc_Madison_Programming                                           allen
## 6016  UWisc_Madison_Programming                                       allocated
## 6017  UWisc_Madison_Programming                                       alternate
## 6018  UWisc_Madison_Programming                                     alternating
## 6019  UWisc_Madison_Programming                                          andrew
## 6020  UWisc_Madison_Programming                                    announcement
## 6021  UWisc_Madison_Programming                                       asisstant
## 6022  UWisc_Madison_Programming                                    assignements
## 6023  UWisc_Madison_Programming                                        attempt1
## 6024  UWisc_Madison_Programming                                        attempt2
## 6025  UWisc_Madison_Programming                                        attempts
## 6026  UWisc_Madison_Programming                                        automate
## 6027  UWisc_Madison_Programming                                            b102
## 6028  UWisc_Madison_Programming                                            barb
## 6029  UWisc_Madison_Programming                                          bascom
## 6030  UWisc_Madison_Programming                                              bc
## 6031  UWisc_Madison_Programming                                          boring
## 6032  UWisc_Madison_Programming                                        breaking
## 6033  UWisc_Madison_Programming                                           c.f.r
## 6034  UWisc_Madison_Programming                                        capstone
## 6035  UWisc_Madison_Programming                                        carnegie
## 6036  UWisc_Madison_Programming                                          clears
## 6037  UWisc_Madison_Programming                                       complaint
## 6038  UWisc_Madison_Programming                                      compsci220
## 6039  UWisc_Madison_Programming                                      consistent
## 6040  UWisc_Madison_Programming                                        contrast
## 6041  UWisc_Madison_Programming                                          convey
## 6042  UWisc_Madison_Programming                                           debug
## 6043  UWisc_Madison_Programming                                         decimal
## 6044  UWisc_Madison_Programming                                        declared
## 6045  UWisc_Madison_Programming                                    designations
## 6046  UWisc_Madison_Programming                                     determining
## 6047  UWisc_Madison_Programming                                          devise
## 6048  UWisc_Madison_Programming                                        doescher
## 6049  UWisc_Madison_Programming                                          downey
## 6050  UWisc_Madison_Programming                                         driving
## 6051  UWisc_Madison_Programming                                        dropdown
## 6052  UWisc_Madison_Programming                                        duration
## 6053  UWisc_Madison_Programming                                            ease
## 6054  UWisc_Madison_Programming                                            easy
## 6055  UWisc_Madison_Programming                                            educ
## 6056  UWisc_Madison_Programming                                          enrich
## 6057  UWisc_Madison_Programming                                         ericson
## 6058  UWisc_Madison_Programming                                      excellence
## 6059  UWisc_Madison_Programming                                        exchange
## 6060  UWisc_Madison_Programming                                       expulsion
## 6061  UWisc_Madison_Programming                                     fabrication
## 6062  UWisc_Madison_Programming                                    facilitating
## 6063  UWisc_Madison_Programming                                           fails
## 6064  UWisc_Madison_Programming                                           ferpa
## 6065  UWisc_Madison_Programming                                        flagging
## 6066  UWisc_Madison_Programming                                        fulfills
## 6067  UWisc_Madison_Programming                                 groups.wisc.edu
## 6068  UWisc_Madison_Programming                                         gurmail
## 6069  UWisc_Madison_Programming                                   gurmail.singh
## 6070  UWisc_Madison_Programming                                       honorlock
## 6071  UWisc_Madison_Programming                                         impacts
## 6072  UWisc_Madison_Programming                                            inch
## 6073  UWisc_Madison_Programming                                      incredible
## 6074  UWisc_Madison_Programming                                        incurred
## 6075  UWisc_Madison_Programming                                    inextricably
## 6076  UWisc_Madison_Programming                                      innovation
## 6077  UWisc_Madison_Programming                                     interpreter
## 6078  UWisc_Madison_Programming                                          invest
## 6079  UWisc_Madison_Programming                                             las
## 6080  UWisc_Madison_Programming                                          leaked
## 6081  UWisc_Madison_Programming                                         leaving
## 6082  UWisc_Madison_Programming                                          lec002
## 6083  UWisc_Madison_Programming                                          lec003
## 6084  UWisc_Madison_Programming                                    legitimately
## 6085  UWisc_Madison_Programming                                             len
## 6086  UWisc_Madison_Programming                                          logged
## 6087  UWisc_Madison_Programming                                            luck
## 6088  UWisc_Madison_Programming                                        manually
## 6089  UWisc_Madison_Programming                                        matching
## 6090  UWisc_Madison_Programming                                       mdoescher
## 6091  UWisc_Madison_Programming                                         measure
## 6092  UWisc_Madison_Programming                                          mentor
## 6093  UWisc_Madison_Programming                                          merged
## 6094  UWisc_Madison_Programming                                    methodically
## 6095  UWisc_Madison_Programming                                miscommunication
## 6096  UWisc_Madison_Programming                                         mission
## 6097  UWisc_Madison_Programming                                    mistreatment
## 6098  UWisc_Madison_Programming                                      negatively
## 6099  UWisc_Madison_Programming                                           netid
## 6100  UWisc_Madison_Programming                                         obvious
## 6101  UWisc_Madison_Programming                                        outreach
## 6102  UWisc_Madison_Programming                                              p8
## 6103  UWisc_Madison_Programming                                           pairs
## 6104  UWisc_Madison_Programming                                       partner's
## 6105  UWisc_Madison_Programming                                         pasting
## 6106  UWisc_Madison_Programming                                          pencil
## 6107  UWisc_Madison_Programming                                          prompt
## 6108  UWisc_Madison_Programming                                           prone
## 6109  UWisc_Madison_Programming                                             quo
## 6110  UWisc_Madison_Programming                                      recognized
## 6111  UWisc_Madison_Programming                                          remind
## 6112  UWisc_Madison_Programming                                          rename
## 6113  UWisc_Madison_Programming                                       reprimand
## 6114  UWisc_Madison_Programming                                   resubmissions
## 6115  UWisc_Madison_Programming                                       returning
## 6116  UWisc_Madison_Programming                                        reviewer
## 6117  UWisc_Madison_Programming                                         reviews
## 6118  UWisc_Madison_Programming                                             s23
## 6119  UWisc_Madison_Programming                                         shuffle
## 6120  UWisc_Madison_Programming                                    similarities
## 6121  UWisc_Madison_Programming                                           singh
## 6122  UWisc_Madison_Programming                                          sorted
## 6123  UWisc_Madison_Programming                                         statute
## 6124  UWisc_Madison_Programming                                        stealing
## 6125  UWisc_Madison_Programming                                        sterling
## 6126  UWisc_Madison_Programming                                           stuff
## 6127  UWisc_Madison_Programming                                          subtle
## 6128  UWisc_Madison_Programming                                         suppose
## 6129  UWisc_Madison_Programming                                        sweigart
## 6130  UWisc_Madison_Programming                                        symbolic
## 6131  UWisc_Madison_Programming                                         test.py
## 6132  UWisc_Madison_Programming                                        unfairly
## 6133  UWisc_Madison_Programming                                       unforseen
## 6134  UWisc_Madison_Programming                                          verbal
## 6135  UWisc_Madison_Programming                                          virtue
## 6136  UWisc_Madison_Programming                                            visa
## 6137  UWisc_Madison_Programming                                           vleck
## 6138  UWisc_Madison_Programming                                      worksheets
## 6139  UWisc_Madison_Programming                                 www.cs.wisc.edu
## 6140                        LSU                                        computer
## 6141                     Drexel                                    introduction
## 6142                  UKentucky                                             day
## 6143                  UKentucky                                         discuss
## 6144                  UKentucky                                          linear
## 6145                  UKentucky                                   participation
## 6146                  UKentucky                                   visualization
## 6147               Georgia_Tech                                   understanding
## 6148                 Boston_Uni                                             2nd
## 6149                 Boston_Uni                                      coursework
## 6150                 Boston_Uni                                        deadline
## 6151                 Boston_Uni                                        networks
## 6152                 Boston_Uni                                        sciences
## 6153                 Boston_Uni                                         subject
## 6154                    UVA_SDS                                             set
## 6155                      UUtah                                        cleaning
## 6156                      UUtah                                       homeworks
## 6157                      UUtah                                        specific
## 6158                  UKentucky                                    appointments
## 6159                  UKentucky                                         average
## 6160                  UKentucky                                           break
## 6161                  UKentucky                                         browser
## 6162                  UKentucky                                         connect
## 6163                  UKentucky                                       dependent
## 6164                  UKentucky                                       encounter
## 6165                  UKentucky                                       essential
## 6166                  UKentucky                                     exceptional
## 6167                  UKentucky                                           forum
## 6168                  UKentucky                                    fundamentals
## 6169                  UKentucky                                        homepage
## 6170                  UKentucky                                        informed
## 6171                  UKentucky                                          inside
## 6172                  UKentucky                                           local
## 6173                  UKentucky                                        maintain
## 6174                  UKentucky                                       microsoft
## 6175                  UKentucky                                          nature
## 6176                  UKentucky                                        products
## 6177                  UKentucky                                        purposes
## 6178                  UKentucky                                      respectful
## 6179                  UKentucky                                       student’s
## 6180                  UKentucky                                         virtual
## 6181                     Drexel                                         honesty
## 6182                      UUtah                                           based
## 6183                    Harvard                                  classification
## 6184                    Harvard                                         sources
## 6185                    Rutgers                                          common
## 6186                    Rutgers                                     environment
## 6187                    Rutgers                                         explore
## 6188                    Rutgers                                           score
## 6189                    Rutgers                                        services
## 6190                    Rutgers                                          social
## 6191                 Boston_Uni                                            exam
## 6192           Washington_State                                           books
## 6193           Washington_State                                     discussions
## 6194           Washington_State                                       standards
## 6195                        LSU                                          center
## 6196                        LSU                                         content
## 6197                   NYU_DS4E                                           world
## 6198            Montgomery_Coll                                            free
## 6199                   UToronto                                  accommodations
## 6200                   UToronto                                          review
## 6201                        UMD                                      attendance
## 6202                        UMD                                        calendar
## 6203                 UWisconsin                                        multiple
## 6204                        UMD                                         address
## 6205                        UMD                                        approved
## 6206                        UMD                                       committed
## 6207                        UMD                                         context
## 6208                        UMD                                         develop
## 6209                        UMD                                     development
## 6210                        UMD                                            main
## 6211                        UMD                                       violation
## 6212                 UCBerkeley                                        examples
## 6213                 UCBerkeley                                          issues
## 6214                 UCBerkeley                                        readings
## 6215                   NYU_DS4E                                      experience
## 6216                NYU_IntroDS                                         midterm
## 6217                      Brown                                         support
## 6218                    Cornell                                          answer
## 6219                    Cornell                                          attend
## 6220                    Cornell                                        provided
## 6221                    UIU_107                                        accepted
## 6222                    UIU_107                                          center
## 6223                    UIU_107                                         content
## 6224                    UIU_107                                        datasets
## 6225                    UIU_107                                            read
## 6226                    UIU_107                                         sources
## 6227                        MIT                                   computational
## 6228                        MIT                                          graded
## 6229                        MIT                                         receive
## 6230                        MIT                                     submissions
## 6231                  Princeton                                      conceptual
## 6232                  Princeton                                        discrete
## 6233                  Princeton                                        ensemble
## 6234                  Princeton                                     instruction
## 6235                  Princeton                                         nearest
## 6236                  Princeton                                        thursday
## 6237                    UVA_SDS                                        semester
## 6238           Washington_State                                     statistical
## 6239                UWashington                                         grading
## 6240                UWashington                                           world
## 6241             UniSys_Georgia                                             set
## 6242                 UWisconsin                                       deadlines
## 6243                 UWisconsin                                        detailed
## 6244                 UWisconsin                                            line
## 6245                 UWisconsin                                          output
## 6246                 UWisconsin                                         quality
## 6247                 UWisconsin                                       transform
## 6248                      Brown                                           learn
## 6249                      Brown                                            week
## 6250  UWisc_Madison_Programming                                          graded
## 6251                    Cornell                                      accessible
## 6252                    Cornell                                     accommodate
## 6253                    Cornell                                          adding
## 6254                    Cornell                                       arguments
## 6255                    Cornell                                     assessments
## 6256                    Cornell                                             bit
## 6257                    Cornell                                         comment
## 6258                    Cornell                                       effective
## 6259                    Cornell                                         equally
## 6260                    Cornell                                         hearing
## 6261                    Cornell                                        majority
## 6262                    Cornell                                          manner
## 6263                    Cornell                                        o'reilly
## 6264                    Cornell                                     responsibly
## 6265                    Cornell                                          stated
## 6266                    Cornell                                    successfully
## 6267                    Cornell                                      thresholds
## 6268                    Cornell                                         treated
## 6269                    Cornell                                      violations
## 6270                        ASU                                         lecture
## 6271                 Boston_Uni                                          topics
## 6272               USouthampton                                        semester
## 6273                 UWisconsin                                     012802044x4
## 6274                 UWisconsin                                           1,2,4
## 6275                 UWisconsin                                      111866146x
## 6276                 UWisconsin                                      142218725x
## 6277                 UWisconsin                                            21st
## 6278                 UWisconsin                                            2of7
## 6279                 UWisconsin                                         3bb603b
## 6280                 UWisconsin                                             3nf
## 6281                 UWisconsin                                            3oct
## 6282                 UWisconsin                                            4oct
## 6283                 UWisconsin                                            6due
## 6284                 UWisconsin                                            6of7
## 6285                 UWisconsin                                   700ma171sec01
## 6286                 UWisconsin                                            777x
## 6287                 UWisconsin                                   81_01_rubrics
## 6288                 UWisconsin                                            8due
## 6289                 UWisconsin                                          ______
## 6290                 UWisconsin                                       _________
## 6291                 UWisconsin                                        allowing
## 6292                 UWisconsin                                       analytlcs
## 6293                 UWisconsin                                           arima
## 6294                 UWisconsin                                          bab266
## 6295                 UWisconsin                                        backends
## 6296                 UWisconsin                                          battle
## 6297                 UWisconsin                                         busecon
## 6298                 UWisconsin                                            butz
## 6299                 UWisconsin                                          buying
## 6300                 UWisconsin                                       claypoole
## 6301                 UWisconsin                                          clouds
## 6302                 UWisconsin                                       competing
## 6303                 UWisconsin                                      concluding
## 6304                 UWisconsin                                              cu
## 6305                 UWisconsin                                          cukier
## 6306                 UWisconsin                                       customers
## 6307                 UWisconsin                                              d2
## 6308                 UWisconsin                                    d2isessionva
## 6309                 UWisconsin                                             dan
## 6310                 UWisconsin                                           davit
## 6311                 UWisconsin                                             ddl
## 6312                 UWisconsin                                       defending
## 6313                 UWisconsin                                       designing
## 6314                 UWisconsin                                   determination
## 6315                 UWisconsin                                       devenport
## 6316                 UWisconsin                                    discussion's
## 6317                 UWisconsin                                     discussion_
## 6318                 UWisconsin                                      disrupting
## 6319                 UWisconsin                                           ds700
## 6320                 UWisconsin                                             eng
## 6321                 UWisconsin                                    environments
## 6322                 UWisconsin                                    examlnations
## 6323                 UWisconsin                              facultylnbutz.aspx
## 6324                 UWisconsin                                         foreman
## 6325                 UWisconsin                                           forta
## 6326                 UWisconsin                                         ggplot2
## 6327                 UWisconsin                                          growth
## 6328                 UWisconsin                                  guldefines.pdf
## 6329                 UWisconsin                                           hardy
## 6330                 UWisconsin                                      healthcare
## 6331                 UWisconsin                                      highlights
## 6332                 UWisconsin                                              il
## 6333                 UWisconsin                                       improving
## 6334                 UWisconsin                                          income
## 6335                 UWisconsin                                        incoming
## 6336                 UWisconsin                                      influenced
## 6337                 UWisconsin                                        initiate
## 6338                 UWisconsin                                           inmon
## 6339                 UWisconsin                                          jeanne
## 6340                 UWisconsin                                              jl
## 6341                 UWisconsin                                        kabacoff
## 6342                 UWisconsin                                     khachatryan
## 6343                 UWisconsin                                            kier
## 6344                 UWisconsin                                         kothari
## 6345                 UWisconsin                                            kunk
## 6346                 UWisconsin                                             lay
## 6347                 UWisconsin                                      lcontenvds
## 6348                 UWisconsin                                            ld2l
## 6349                 UWisconsin                                        linstedt
## 6350                 UWisconsin                                     littlefield
## 6351                 UWisconsin                                     lncompletes
## 6352                 UWisconsin                                           loops
## 6353                 UWisconsin                                             lpj
## 6354                 UWisconsin                                           m_ore
## 6355                 UWisconsin                                    mailto:nbutz
## 6356                 UWisconsin                                   mhlxqxeuqr86l
## 6357                 UWisconsin                                          misuse
## 6358                 UWisconsin                                         morison
## 6359                 UWisconsin                                           mount
## 6360                 UWisconsin                                           nbutz
## 6361                 UWisconsin                                    necessitates
## 6362                 UWisconsin                                            neha
## 6363                 UWisconsin                                        nikolaus
## 6364                 UWisconsin                                            nina
## 6365                 UWisconsin                                          norton
## 6366                 UWisconsin                                             ode
## 6367                 UWisconsin                                        oibfz501
## 6368                 UWisconsin                                          payton
## 6369                 UWisconsin                                          pillay
## 6370                 UWisconsin                                              pj
## 6371                 UWisconsin                                      powerpoint
## 6372                 UWisconsin                                        pregnant
## 6373                 UWisconsin                                      publishers
## 6374                 UWisconsin                                            quic
## 6375                 UWisconsin                                   quicklink.d2i
## 6376                 UWisconsin                                           rcode
## 6377                 UWisconsin                                            rdue
## 6378                 UWisconsin                                     recognizing
## 6379                 UWisconsin                                  rehabilitation
## 6380                 UWisconsin                                         remarks
## 6381                 UWisconsin                                         replies
## 6382                 UWisconsin                                         reprint
## 6383                 UWisconsin                                       reserves_
## 6384                 UWisconsin                                          rowman
## 6385                 UWisconsin                                            sasi
## 6386                 UWisconsin                                     sciencewith
## 6387                 UWisconsin                                         sexiest
## 6388                 UWisconsin                                    spreadsheets
## 6389                 UWisconsin                                       staggered
## 6390                 UWisconsin                                      statisllcs
## 6391                 UWisconsin                                         stevens
## 6392                 UWisconsin                                      stipulated
## 6393                 UWisconsin                                       strengths
## 6394                 UWisconsin                                        subtract
## 6395                 UWisconsin                                        teamwork
## 6396                 UWisconsin                                             ted
## 6397                 UWisconsin                                         theresa
## 6398                 UWisconsin                                         threats
## 6399                 UWisconsin                                            tour
## 6400                 UWisconsin                        tquicklinklquicklink.d2i
## 6401                 UWisconsin                                        triggers
## 6402                 UWisconsin                                      turnaround
## 6403                 UWisconsin                                             unf
## 6404                 UWisconsin                                      uniqueness
## 6405                 UWisconsin                        uwconaborativestorelhome
## 6406                 UWisconsin                                             uws
## 6407                 UWisconsin                                            uws1
## 6408                 UWisconsin                                           vault
## 6409                 UWisconsin                                       warehouse
## 6410                 UWisconsin                                      weaknesses
## 6411                 UWisconsin                                            whee
## 6412                 UWisconsin                                         wheelan
## 6413                 UWisconsin                                           wiley
## 6414                 UWisconsin                                   www.bkstr.com
## 6415                 UWisconsin                                    www.uwsp.edu
## 6416                 UWisconsin                                           zumel
## 6417                   UToronto                                             2nd
## 6418                   UToronto                                      algorithms
## 6419                   UToronto                                            feel
## 6420                   UToronto                                            form
## 6421                   UToronto                                     performance
## 6422                   UToronto                                       statement
## 6423                   NYU_DS4E                                    applications
## 6424                   NYU_DS4E                                          coding
## 6425                   NYU_DS4E                                        evaluate
## 6426                NYU_IntroDS                                      assessment
## 6427                NYU_IntroDS                                           avoid
## 6428                NYU_IntroDS                                           basis
## 6429                NYU_IntroDS                                        business
## 6430                NYU_IntroDS                                           cross
## 6431                NYU_IntroDS                                  interpretation
## 6432                NYU_IntroDS                                         prepare
## 6433                NYU_IntroDS                                      processing
## 6434                NYU_IntroDS                                            type
## 6435                     Drexel                                       completed
## 6436             UniSys_Georgia                                     statistical
## 6437                  Princeton                                       component
## 6438                  Princeton                                          source
## 6439                      UUtah                                        datasets
## 6440                   UVA_Stat                                           dates
## 6441                   UVA_Stat                                         reading
## 6442                 UCSanDiego                                    instructions
## 6443                       CUNY                                     discussions
## 6444                       CUNY                                       standards
## 6445                    Harvard                                     calculation
## 6446                    Harvard                                     expressions
## 6447                    Harvard                                          linked
## 6448                    Harvard                                       providing
## 6449                    Harvard                                      successful
## 6450                    Harvard                                       transform
## 6451           William_and_Mary                                   accommodation
## 6452           William_and_Mary                                        building
## 6453            Montgomery_Coll                                             day
## 6454            Montgomery_Coll                                   visualization
## 6455                  Princeton                                       materials
## 6456                  Princeton                                         midterm
## 6457               Georgia_Tech                                      attendance
## 6458               Georgia_Tech                                          design
## 6459               Georgia_Tech                                           error
## 6460               Georgia_Tech                                           extra
## 6461               Georgia_Tech                                            list
## 6462               Georgia_Tech                                          random
## 6463               Georgia_Tech                                           short
## 6464               Georgia_Tech                                       technical
## 6465           William_and_Mary                                            code
## 6466           William_and_Mary                                          python
## 6467                        LSU                                           ahead
## 6468                        LSU                                         failing
## 6469                        LSU                                      guidelines
## 6470                        LSU                                      harassment
## 6471                        LSU                                         library
## 6472                        LSU                                            line
## 6473                        LSU                                          lowest
## 6474                        LSU                                        mistakes
## 6475                        LSU                                   opportunities
## 6476                        LSU                                          people
## 6477                        LSU                                    perspectives
## 6478                        LSU                                       privately
## 6479                        LSU                                         quality
## 6480                        LSU                                       regularly
## 6481                        LSU                                       scientist
## 6482                        LSU                                            send
## 6483                   NYU_DS4E                                           write
## 6484                      UUtah                                        policies
## 6485                    UZurich                                    mathematical
## 6486                    UZurich                                            sets
## 6487                    UZurich                                       variables
## 6488                     UMaine                                           board
## 6489                     UMaine                                         consult
## 6490                     UMaine                                       discussed
## 6491                     UMaine                                        ensemble
## 6492                     UMaine                                       exploring
## 6493                     UMaine                                     instruction
## 6494                     UMaine                                         jeffrey
## 6495                     UMaine                                            meet
## 6496                     UMaine                                         purpose
## 6497                     UMaine                                      references
## 6498                     UMaine                                     requirement
## 6499                     UMaine                                           table
## 6500                     UMaine                                           texts
## 6501  UWisc_Madison_Programming                                        feedback
## 6502  UWisc_Madison_Programming                                           level
## 6503     UWisc_Madison_Modeling                                         content
## 6504     UWisc_Madison_Modeling                                            read
## 6505     UWisc_Madison_Modeling                                         variety
## 6506     UWisc_Madison_Modeling                                             web
## 6507                    Harvard                                            time
## 6508                        UMD                                      university
## 6509           William_and_Mary                                        examples
## 6510                 Boston_Uni                                      additional
## 6511                 Boston_Uni                                         midterm
## 6512                 Boston_Uni                                          submit
## 6513                      UUtah                                         website
## 6514                NYU_IntroDS                                        concepts
## 6515                      UUtah                                     accommodate
## 6516                      UUtah                                           clean
## 6517                      UUtah                                           doubt
## 6518                      UUtah                                         factors
## 6519                      UUtah                                   inappropriate
## 6520                      UUtah                                         license
## 6521                      UUtah                                        mckinney
## 6522                      UUtah                                       neighbors
## 6523                      UUtah                                        proposal
## 6524                      UUtah                                        religion
## 6525                      UUtah                                          stated
## 6526                      UUtah                                      structures
## 6527                      UUtah                                        versions
## 6528                      UUtah                                             wes
## 6529                    UZurich                                          adding
## 6530                    UZurich                                       cambridge
## 6531                    UZurich                                     conditional
## 6532                    UZurich                                      developing
## 6533                    UZurich                                          effect
## 6534                    UZurich                                       filtering
## 6535                    UZurich                                        friedman
## 6536                    UZurich                                      introduces
## 6537                    UZurich                                           joint
## 6538                    UZurich                                           lines
## 6539                    UZurich                                          normal
## 6540                    UZurich                                        o'reilly
## 6541                    UZurich                                           occur
## 6542                    UZurich                                      operations
## 6543                    UZurich                                       parameter
## 6544                    UZurich                                             pca
## 6545                    UZurich                                            step
## 6546                    UZurich                                        weighted
## 6547           Washington_State                                         project
## 6548           Washington_State                                      statistics
## 6549                        UMD                                         content
## 6550                        UMD                                        personal
## 6551                  UKentucky                                        internet
## 6552                  UKentucky                                         request
## 6553                  UKentucky                                        research
## 6554                  UKentucky                                        resource
## 6555                  UKentucky                                            site
## 6556                 UWisconsin                                          common
## 6557                 UWisconsin                                         related
## 6558            Montgomery_Coll                                         account
## 6559            Montgomery_Coll                                         credits
## 6560            Montgomery_Coll                                        describe
## 6561            Montgomery_Coll                                        elements
## 6562            Montgomery_Coll                                      extensions
## 6563            Montgomery_Coll                                        findings
## 6564            Montgomery_Coll                                          impact
## 6565            Montgomery_Coll                                     inferential
## 6566            Montgomery_Coll                                         learned
## 6567            Montgomery_Coll                                        official
## 6568            Montgomery_Coll                                           phone
## 6569            Montgomery_Coll                                           reach
## 6570                     UMaine                                          letter
## 6571                     UMaine                                           weeks
## 6572                    UVA_SDS                                           model
## 6573                    UVA_SDS                                           short
## 6574                       CUNY                                        expected
## 6575                       CUNY                                   understanding
## 6576                 UWisconsin                                        syllabus
## 6577                    UIU_207                                       completed
## 6578                    UIU_207                                       encourage
## 6579                    UIU_207                                          posted
## 6580                    UIU_207                                         receive
## 6581                    UIU_207                                           score
## 6582                     UMaine                                       resources
## 6583                 UCSanDiego                                           added
## 6584                 UCSanDiego                                           board
## 6585                 UCSanDiego                                          degree
## 6586                 UCSanDiego                                        directly
## 6587                 UCSanDiego                                            meet
## 6588                 UCSanDiego                                           minor
## 6589                 UCSanDiego                                          module
## 6590                 UCSanDiego                                         posting
## 6591                 UCSanDiego                                        previous
## 6592                 UCSanDiego                                       student's
## 6593                 UCSanDiego                                     suggestions
## 6594                 UCSanDiego                                           table
## 6595                 UCSanDiego                                         talking
## 6596                 UCSanDiego                                           worth
## 6597                  UKentucky                                        readings
## 6598                  UKentucky                                          weekly
## 6599                        ASU                                   announcements
## 6600                        ASU                                       beginning
## 6601                        ASU                                    confidential
## 6602                        ASU                                      definition
## 6603                        ASU                                              ed
## 6604                        ASU                                          engage
## 6605                        ASU                                           event
## 6606                        ASU                                     immediately
## 6607                        ASU                                       inclusion
## 6608                        ASU                                           james
## 6609                        ASU                                            line
## 6610                        ASU                                       logistics
## 6611                        ASU                                           media
## 6612                        ASU                                          papers
## 6613                        ASU                                       privately
## 6614                        ASU                                         product
## 6615                        ASU                                       providing
## 6616                        ASU                                            rule
## 6617                        ASU                                       tentative
## 6618                 Boston_Uni                                         allowed
## 6619                 Boston_Uni                                          choose
## 6620                 Boston_Uni                                      classmates
## 6621                 Boston_Uni                                         edition
## 6622                 Boston_Uni                                     preparation
## 6623                 Boston_Uni                                         require
## 6624                 Boston_Uni                                       scheduled
## 6625                 Boston_Uni                                        specific
## 6626                 Boston_Uni                                       textbooks
## 6627                    Rutgers                                        addition
## 6628                    Rutgers                                         courses
## 6629                    Rutgers                                       integrity
## 6630                    Rutgers                                     opportunity
## 6631                    Rutgers                                     probability
## 6632                    Rutgers                                       solutions
## 6633                    Rutgers                                      technology
## 6634                 UCSanDiego                                          weekly
## 6635                    UVA_SDS                                             day
## 6636                      UUtah                                            book
## 6637                      UUtah                                        document
## 6638                      UUtah                                          github
## 6639                      UUtah                                       practical
## 6640                      UUtah                                          simple
## 6641                    UVA_SDS                                     assessments
## 6642                    UVA_SDS                                            chat
## 6643                    UVA_SDS                                        continue
## 6644                    UVA_SDS                                         created
## 6645                    UVA_SDS                                        delivery
## 6646                    UVA_SDS                                          effect
## 6647                    UVA_SDS                                         enhance
## 6648                    UVA_SDS                                        enrolled
## 6649                    UVA_SDS                                     examination
## 6650                    UVA_SDS                                        extended
## 6651                    UVA_SDS                                        fairness
## 6652                    UVA_SDS                                          fields
## 6653                    UVA_SDS                                           happy
## 6654                    UVA_SDS                                              ii
## 6655                    UVA_SDS                                  implementation
## 6656                    UVA_SDS                                       interview
## 6657                    UVA_SDS                                              li
## 6658                    UVA_SDS                                           login
## 6659                    UVA_SDS                                        majority
## 6660                    UVA_SDS                                            maps
## 6661                    UVA_SDS                                         medical
## 6662                    UVA_SDS                                       messaging
## 6663                    UVA_SDS                                       parameter
## 6664                    UVA_SDS                                        pipeline
## 6665                    UVA_SDS                                           spend
## 6666                    UVA_SDS                                      statements
## 6667                    UVA_SDS                                            step
## 6668                    UVA_SDS                                            user
## 6669           Washington_State                                        calendar
## 6670           Washington_State                                       inference
## 6671           Washington_State                                       knowledge
## 6672           Washington_State                                         missing
## 6673           Washington_State                                           model
## 6674           Washington_State                                        policies
## 6675           Washington_State                                         privacy
## 6676           Washington_State                                          random
## 6677           Washington_State                                            sets
## 6678           Washington_State                                          system
## 6679                        LSU                                          create
## 6680  UWisc_Madison_Programming                                   automatically
## 6681  UWisc_Madison_Programming                                          called
## 6682  UWisc_Madison_Programming                                          giving
## 6683  UWisc_Madison_Programming                                             i.e
## 6684  UWisc_Madison_Programming                                              os
## 6685  UWisc_Madison_Programming                                       reasoning
## 6686  UWisc_Madison_Programming                                     requirement
## 6687  UWisc_Madison_Programming                                       student's
## 6688  UWisc_Madison_Programming                                       supported
## 6689  UWisc_Madison_Programming                                         writing
## 6690                   NYU_DS4E                                      accumulate
## 6691                   NYU_DS4E                                         amazing
## 6692                   NYU_DS4E                                      artificial
## 6693                   NYU_DS4E                                             bar
## 6694                   NYU_DS4E                                          blocks
## 6695                   NYU_DS4E                                           chief
## 6696                   NYU_DS4E                                         classic
## 6697                   NYU_DS4E                                      conclusion
## 6698                   NYU_DS4E                                        consumer
## 6699                   NYU_DS4E                                      contacting
## 6700                   NYU_DS4E                                          dating
## 6701                   NYU_DS4E                                          deluge
## 6702                   NYU_DS4E                                        discover
## 6703                   NYU_DS4E                                         excited
## 6704                   NYU_DS4E                                          gather
## 6705                   NYU_DS4E                                      generating
## 6706                   NYU_DS4E                                            hold
## 6707                   NYU_DS4E                                     incorporate
## 6708                   NYU_DS4E                                       inspiring
## 6709                   NYU_DS4E                                             job
## 6710                   NYU_DS4E                                        lifelong
## 6711                   NYU_DS4E                                           light
## 6712                   NYU_DS4E                                            lots
## 6713                   NYU_DS4E                                         matthew
## 6714                   NYU_DS4E                                        mosescsd
## 6715                   NYU_DS4E                                             nyu
## 6716                   NYU_DS4E                                        obsolete
## 6717                   NYU_DS4E                                         ongoing
## 6718                   NYU_DS4E                                         outputs
## 6719                   NYU_DS4E                                            pair
## 6720                   NYU_DS4E                                            pick
## 6721                   NYU_DS4E                                         picture
## 6722                   NYU_DS4E                                        pitfalls
## 6723                   NYU_DS4E                                         predict
## 6724                   NYU_DS4E                                        profound
## 6725                   NYU_DS4E                                       published
## 6726                   NYU_DS4E                                         pursuit
## 6727                   NYU_DS4E                                         quickly
## 6728                   NYU_DS4E                                          ranges
## 6729                   NYU_DS4E                                          reader
## 6730                   NYU_DS4E                                           ready
## 6731                   NYU_DS4E                                         reasons
## 6732                   NYU_DS4E                                       refresher
## 6733                   NYU_DS4E                                     remembering
## 6734                   NYU_DS4E                                           shape
## 6735                   NYU_DS4E                                         skilled
## 6736                   NYU_DS4E                                          syntax
## 6737                   NYU_DS4E                                        theories
## 6738                   NYU_DS4E                                          what’s
## 6739                   NYU_DS4E                                            wrap
## 6740                     Drexel                                           words
## 6741                        UMD                                        building
## 6742                        UMD                                         details
## 6743                        UMD                                      evaluation
## 6744                        UMD                                         program
## 6745                        UMD                                        relevant
## 6746               Georgia_Tech                                         methods
## 6747                 UWisconsin                                        advanced
## 6748                 UWisconsin                                        decision
## 6749  UWisc_Madison_Programming                                        examples
## 6750                    Cornell                                   accommodation
## 6751                    Cornell                                         details
## 6752                    Cornell                                           focus
## 6753                    Cornell                                          format
## 6754                 UCBerkeley                                        datasets
## 6755                   UToronto                                      experience
## 6756                   UToronto                                         support
## 6757                    UIU_107                                          campus
## 6758                    UIU_107                                       encourage
## 6759                    UIU_107                                           score
## 6760                        MIT                                     application
## 6761                        MIT                                           books
## 6762                        MIT                                         courses
## 6763                        MIT                                            fall
## 6764                        MIT                                         meeting
## 6765                        MIT                                      submission
## 6766                        MIT                                      technology
## 6767           Washington_State                                        adjusted
## 6768           Washington_State                                      approaches
## 6769           Washington_State                                         average
## 6770           Washington_State                                      background
## 6771           Washington_State                                         collect
## 6772           Washington_State                                        commonly
## 6773           Washington_State                                   comprehensive
## 6774           Washington_State                                       depending
## 6775           Washington_State                                     disciplines
## 6776           Washington_State                                       discovery
## 6777           Washington_State                                          fields
## 6778           Washington_State                                            fill
## 6779           Washington_State                                           forms
## 6780           Washington_State                                        friedman
## 6781           Washington_State                                        handling
## 6782           Washington_State                                        homepage
## 6783           Washington_State                                        industry
## 6784           Washington_State                                      integrated
## 6785           Washington_State                                             mwf
## 6786           Washington_State                                          o'neil
## 6787           Washington_State                                        o'reilly
## 6788           Washington_State                                         outline
## 6789           Washington_State                                            past
## 6790           Washington_State                                      properties
## 6791           Washington_State                                          robert
## 6792           Washington_State                                      structures
## 6793           Washington_State                                        tuesdays
## 6794                   NYU_DS4E                                             day
## 6795                   NYU_DS4E                                         discuss
## 6796                NYU_IntroDS                                        assigned
## 6797                NYU_IntroDS                                    disabilities
## 6798                      Brown                                   participation
## 6799                      Brown                                        software
## 6800                      Brown                                   visualization
## 6801                      Brown                                         written
## 6802           William_and_Mary                                  accommodations
## 6803           William_and_Mary                                      accordance
## 6804           William_and_Mary                                             art
## 6805           William_and_Mary                                             box
## 6806           William_and_Mary                                         catalog
## 6807           William_and_Mary                                         chances
## 6808           William_and_Mary                                         chronic
## 6809           William_and_Mary                                      conducting
## 6810           William_and_Mary                                          detail
## 6811           William_and_Mary                                         devices
## 6812           William_and_Mary                                          double
## 6813           William_and_Mary                                          easier
## 6814           William_and_Mary                                       extensive
## 6815           William_and_Mary                                      facilitate
## 6816           William_and_Mary                                         federal
## 6817           William_and_Mary                                             fit
## 6818           William_and_Mary                                    hierarchical
## 6819           William_and_Mary                                         history
## 6820           William_and_Mary                                            idea
## 6821           William_and_Mary                                       index.php
## 6822           William_and_Mary                                          inputs
## 6823           William_and_Mary                                            laws
## 6824           William_and_Mary                                         lessons
## 6825           William_and_Mary                                          limits
## 6826           William_and_Mary                                           march
## 6827           William_and_Mary                                         mondays
## 6828           William_and_Mary                                          notify
## 6829           William_and_Mary                                         options
## 6830           William_and_Mary                                     overfitting
## 6831           William_and_Mary                                         passing
## 6832           William_and_Mary                                              pc
## 6833           William_and_Mary                                      piazza.com
## 6834           William_and_Mary                                       primarily
## 6835           William_and_Mary                                       procedure
## 6836           William_and_Mary                                         produce
## 6837           William_and_Mary                                     psychiatric
## 6838           William_and_Mary                                        publicly
## 6839           William_and_Mary                                         scaling
## 6840           William_and_Mary                                          screen
## 6841           William_and_Mary                                          strong
## 6842           William_and_Mary                                        suitable
## 6843           William_and_Mary                                        tendency
## 6844           William_and_Mary                                           theme
## 6845           William_and_Mary                                            tree
## 6846                        UMD                                       beginning
## 6847                        UMD                                     calculation
## 6848                        UMD                                        detailed
## 6849                        UMD                                           equal
## 6850                        UMD                                          ethics
## 6851                        UMD                                            mark
## 6852                        UMD                                   opportunities
## 6853                        UMD                                         respect
## 6854                        UMD                                     responsible
## 6855                        UMD                                            term
## 6856  UWisc_Madison_Programming                                           weeks
## 6857                 Boston_Uni                                            code
## 6858                     Drexel                                        accurate
## 6859                     Drexel                                         digital
## 6860                     Drexel                                         effects
## 6861                     Drexel                                      electronic
## 6862                     Drexel                                          hadoop
## 6863                     Drexel                                            html
## 6864                     Drexel                                      indicating
## 6865                     Drexel                                           legal
## 6866                     Drexel                                        measures
## 6867                     Drexel                                         metrics
## 6868                     Drexel                                      milestones
## 6869                     Drexel                                     perspective
## 6870                     Drexel                                       preparing
## 6871                     Drexel                                         printed
## 6872                     Drexel                                          rachel
## 6873                     Drexel                                            risk
## 6874                     Drexel                                             roc
## 6875                     Drexel                                          stored
## 6876                     Drexel                                         vectors
## 6877                     Drexel                                          volume
## 6878             UniSys_Georgia                                   visualization
## 6879                    Rutgers                                        semester
## 6880                        UMD                           accessibilityservices
## 6881                        UMD                                         adelphi
## 6882                        UMD                                             apa
## 6883                        UMD                                         appeals
## 6884                        UMD                                       arbitrary
## 6885                        UMD                                     associate's
## 6886                        UMD                                      associates
## 6887                        UMD                                              au
## 6888                        UMD                                      bachelor's
## 6889                        UMD                                       bachelors
## 6890                        UMD                                           badge
## 6891                        UMD                                           bears
## 6892                        UMD                                       benchmark
## 6893                        UMD                                       bpage.cfm
## 6894                        UMD                                       childcare
## 6895                        UMD                                         clarity
## 6896                        UMD                                           coach
## 6897                        UMD                                      compelling
## 6898                        UMD                                       continued
## 6899                        UMD                                            cook
## 6900                        UMD                                   cooperatively
## 6901                        UMD                                        corrupts
## 6902                        UMD                                      cultivates
## 6903                        UMD                                        degrades
## 6904                        UMD                                         desired
## 6905                        UMD                                        dialogue
## 6906                        UMD                                 discretionarily
## 6907                        UMD                                             edt
## 6908                        UMD                                      employment
## 6909                        UMD                                         enabled
## 6910                        UMD                                          expand
## 6911                        UMD                                          extent
## 6912                        UMD                                faculty.umgc.edu
## 6913                        UMD                                            faq_
## 6914                        UMD                                          fiscal
## 6915                        UMD                                              fn
## 6916                        UMD                                         grammar
## 6917                        UMD                                          grants
## 6918                        UMD                                          guides
## 6919                        UMD                                    improvements
## 6920                        UMD                                   incorporation
## 6921                        UMD                                         inquiry
## 6922                        UMD                                     inspiration
## 6923                        UMD                                       intention
## 6924                        UMD                                   introductions
## 6925                        UMD                                      john.cook2
## 6926                        UMD                                       justified
## 6927                        UMD                                        legality
## 6928                        UMD                                          life's
## 6929                        UMD                                           logon
## 6930                        UMD                                           marks
## 6931                        UMD                                        navigate
## 6932                        UMD                                      navigating
## 6933                        UMD                                       noncredit
## 6934                        UMD                                             oas
## 6935                        UMD                                      physically
## 6936                        UMD                                 professionalism
## 6937                        UMD                                programmatically
## 6938                        UMD                                           prove
## 6939                        UMD                                       qualifies
## 6940                        UMD                                            rcqs
## 6941                        UMD                                        repeated
## 6942                        UMD                                        retained
## 6943                        UMD                                          richer
## 6944                        UMD                                          secure
## 6945                        UMD                                       selecting
## 6946                        UMD                                             sem
## 6947                        UMD                                        socially
## 6948                        UMD                                        spelling
## 6949                        UMD                                    strengthened
## 6950                        UMD                                      subsequent
## 6951                        UMD                                             sum
## 6952                        UMD                                      supporting
## 6953                        UMD                                           tight
## 6954                        UMD                                            toll
## 6955                        UMD                                          traits
## 6956                        UMD                                        ugcmbook
## 6957                        UMD                                      unexpected
## 6958                        UMD                                webapps.umgc.edu
## 6959                     UMaine                                         student
## 6960                        MIT                                            week
## 6961                  Princeton                                      attendance
## 6962                   UToronto                                           cross
## 6963                   UToronto                                         edition
## 6964                   UToronto                                        programs
## 6965                        ASU                                         related
## 6966                        ASU                                          review
## 6967                  UKentucky                                          skills
## 6968                   NYU_DS4E                                          period
## 6969                   NYU_DS4E                                    specifically
## 6970                   NYU_DS4E                                       wednesday
## 6971                NYU_IntroDS                                      assistance
## 6972                NYU_IntroDS                                        features
## 6973                NYU_IntroDS                                          impact
## 6974                NYU_IntroDS                                        meetings
## 6975                NYU_IntroDS                                           range
## 6976                NYU_IntroDS                                           reach
## 6977                   UVA_Stat                                        accepted
## 6978                   UVA_Stat                                      encouraged
## 6979                   UVA_Stat                                            labs
## 6980                   UVA_Stat                                        personal
## 6981                       CUNY                                     communicate
## 6982                       CUNY                                       inference
## 6983                       CUNY                                         process
## 6984                       CUNY                                           study
## 6985                 UCSanDiego                                     instructors
## 6986                 UCSanDiego                                        sections
## 6987               Georgia_Tech                                          expect
## 6988               Georgia_Tech                                          taking
## 6989               Georgia_Tech                                            text
## 6990                  UKentucky                                           agree
## 6991                  UKentucky                                          arises
## 6992                  UKentucky                                          assist
## 6993                  UKentucky                                        benefits
## 6994                  UKentucky                                             box
## 6995                  UKentucky                                      connection
## 6996                  UKentucky                                        contents
## 6997                  UKentucky                                      convenient
## 6998                  UKentucky                                     expectation
## 6999                  UKentucky                                       instances
## 7000                  UKentucky                                           items
## 7001                  UKentucky                                           leave
## 7002                  UKentucky                                     limitations
## 7003                  UKentucky                                            lose
## 7004                  UKentucky                                       mandatory
## 7005                  UKentucky                                         offense
## 7006                  UKentucky                                      organizing
## 7007                  UKentucky                                        packages
## 7008                  UKentucky                                              pc
## 7009                  UKentucky                                            peer
## 7010                  UKentucky                                       performed
## 7011                  UKentucky                                       preparing
## 7012                  UKentucky                                          relate
## 7013                  UKentucky                                    relationship
## 7014                  UKentucky                                          studio
## 7015                 UWisconsin                                             age
## 7016                 UWisconsin                                        analytic
## 7017                 UWisconsin                                        assessed
## 7018                 UWisconsin                                           posts
## 7019                 UWisconsin                                          series
## 7020                 UWisconsin                                          videos
## 7021                     Drexel                                         algebra
## 7022               USouthampton                                        teaching
## 7023               USouthampton                                      techniques
## 7024                   NYU_DS4E                                        overview
## 7025                      UUtah                                          person
## 7026                      UUtah                                            site
## 7027                  Princeton                                        assigned
## 7028                    UZurich                                         covered
## 7029           Washington_State                                        computer
## 7030           Washington_State                                         lecture
## 7031                        UMD                                        assigned
## 7032                    Rutgers                                          topics
## 7033                  Princeton                                    appointments
## 7034                  Princeton                                       cambridge
## 7035                  Princeton                                          covers
## 7036                  Princeton                                     datascience
## 7037                  Princeton                                       essential
## 7038                  Princeton                                         factors
## 7039                  Princeton                                            half
## 7040                  Princeton                                        homepage
## 7041                  Princeton                                            mail
## 7042                  Princeton                                           naive
## 7043                  Princeton                                      operations
## 7044                  Princeton                                         package
## 7045                  Princeton                                           ridge
## 7046                  Princeton                                      structured
## 7047     UWisc_Madison_Modeling                                       completed
## 7048     UWisc_Madison_Modeling                                         explore
## 7049     UWisc_Madison_Modeling                                           means
## 7050     UWisc_Madison_Modeling                                        outcomes
## 7051     UWisc_Madison_Modeling                                          posted
## 7052     UWisc_Madison_Modeling                                        practice
## 7053     UWisc_Madison_Modeling                                           score
## 7054     UWisc_Madison_Modeling                                           solve
## 7055     UWisc_Madison_Modeling                                        thinking
## 7056     UWisc_Madison_Modeling                                           write
## 7057                UWashington                                         project
## 7058                      UUtah                                       materials
## 7059                      UUtah                                          submit
## 7060  UWisc_Madison_Programming                                       classroom
## 7061  UWisc_Madison_Programming                                            copy
## 7062  UWisc_Madison_Programming                                          friday
## 7063  UWisc_Madison_Programming                                     instructors
## 7064  UWisc_Madison_Programming                                        notebook
## 7065  UWisc_Madison_Programming                                         version
## 7066  UWisc_Madison_Programming                                           based
## 7067  UWisc_Madison_Programming                                        complete
## 7068           William_and_Mary                                            labs
## 7069                      Brown                                        analysis
## 7070                      Brown                                           final
## 7071                     Drexel                                         content
## 7072                 Boston_Uni                                            date
## 7073                 Boston_Uni                                             day
## 7074                 Boston_Uni                                      discussion
## 7075                 Boston_Uni                                         written
## 7076                    Harvard                                     acquisition
## 7077                    Harvard                                           added
## 7078                    Harvard                                   automatically
## 7079                    Harvard                                          charts
## 7080                    Harvard                                         correct
## 7081                    Harvard                                          degree
## 7082                    Harvard                                      equivalent
## 7083                    Harvard                                         express
## 7084                    Harvard                                          inform
## 7085                    Harvard                                    installation
## 7086                    Harvard                                         laptops
## 7087                    Harvard                                           linux
## 7088                    Harvard                                       recognize
## 7089                    Harvard                                      relational
## 7090                    Harvard                                          sample
## 7091                    Harvard                                       situation
## 7092                    Harvard                                       structure
## 7093                    Harvard                                      submitting
## 7094                    Harvard                                      sufficient
## 7095                 UWisconsin                                      technology
## 7096                 UWisconsin                                           weeks
## 7097                        UMD                                            late
## 7098                  UKentucky                                          basics
## 7099                  UKentucky                                      individual
## 7100                  UKentucky                                          monday
## 7101                  UKentucky                                     participate
## 7102                  UKentucky                                        question
## 7103                   NYU_DS4E                                     programming
## 7104     UWisc_Madison_Modeling                                            code
## 7105                        LSU                                         achieve
## 7106                        LSU                                     acknowledge
## 7107                        LSU                                          active
## 7108                        LSU                                       attention
## 7109                        LSU                                  communications
## 7110                        LSU                                        covering
## 7111                        LSU                                       discussed
## 7112                        LSU                                          gender
## 7113                        LSU                                          giving
## 7114                        LSU                                           honor
## 7115                        LSU                                             i.e
## 7116                        LSU                                     individuals
## 7117                        LSU                                       languages
## 7118                        LSU                                           linux
## 7119                        LSU                                         minimum
## 7120                        LSU                                       processes
## 7121                        LSU                                            race
## 7122                        LSU                                        referred
## 7123                        LSU                                      repository
## 7124                        LSU                                      requisites
## 7125                        LSU                                          scores
## 7126                        LSU                                     suggestions
## 7127                        LSU                                        thursday
## 7128                        LSU                                           worth
## 7129                     UMaine                                   accessibility
## 7130                     UMaine                                         missing
## 7131                     UMaine                                           study
## 7132                    UVA_SDS                                      components
## 7133                    UVA_SDS                                          taking
## 7134            Montgomery_Coll                                         ability
## 7135            Montgomery_Coll                                           bring
## 7136            Montgomery_Coll                                             mac
## 7137            Montgomery_Coll                                       practices
## 7138            Montgomery_Coll                                        recorded
## 7139            Montgomery_Coll                                           title
## 7140            Montgomery_Coll                                         windows
## 7141                    UIU_207                                           books
## 7142                    UIU_207                                          letter
## 7143                    UIU_207                                           prior
## 7144                    UIU_207                                     probability
## 7145                    UIU_207                                          source
## 7146                    Cornell                                         advance
## 7147                    Cornell                                             aid
## 7148                    Cornell                                              al
## 7149                    Cornell                                        answered
## 7150                    Cornell                                       automated
## 7151                    Cornell                                          commit
## 7152                    Cornell                                   comprehension
## 7153                    Cornell                                      counseling
## 7154                    Cornell                                       dedicated
## 7155                    Cornell                                         digital
## 7156                    Cornell                                      discovered
## 7157                    Cornell                                       financial
## 7158                    Cornell                                             fit
## 7159                    Cornell                                     institution
## 7160                    Cornell                                           issue
## 7161                    Cornell                                        learners
## 7162                    Cornell                                            left
## 7163                    Cornell                                          mental
## 7164                    Cornell                                         offered
## 7165                    Cornell                                        outlined
## 7166                    Cornell                                        possibly
## 7167                    Cornell                                   psychological
## 7168                    Cornell                                            push
## 7169                    Cornell                                        reported
## 7170                    Cornell                                       respected
## 7171                    Cornell                                        returned
## 7172                    Cornell                                          rundel
## 7173                    Cornell                                     substantive
## 7174                    Cornell                                            task
## 7175                    Cornell                                           teams
## 7176                    Cornell                                       temporary
## 7177                    Cornell                                          timely
## 7178                    Cornell                                           typed
## 7179                    Cornell                                          update
## 7180                    Cornell                                       workflows
## 7181                   NYU_DS4E                                        semester
## 7182     UWisc_Madison_Modeling                                        analysis
## 7183                     UMaine                                          citing
## 7184                     UMaine                                       dependent
## 7185                     UMaine                                         enhance
## 7186                     UMaine                                        extended
## 7187                     UMaine                                          global
## 7188                     UMaine                                              ii
## 7189                     UMaine                                  implementation
## 7190                     UMaine                                        informed
## 7191                     UMaine                                             law
## 7192                     UMaine                                           naive
## 7193                     UMaine                                          nature
## 7194                     UMaine                                          normal
## 7195                     UMaine                                          notice
## 7196                     UMaine                                       parameter
## 7197                     UMaine                                     preliminary
## 7198                     UMaine                                      publishing
## 7199                     UMaine                                       responses
## 7200                     UMaine                                             sas
## 7201                     UMaine                                         visible
## 7202                    Rutgers                                     communicate
## 7203                    Rutgers                                      completion
## 7204                    Rutgers                                            goal
## 7205                    Rutgers                                           hands
## 7206                    Rutgers                                    mathematical
## 7207                    Rutgers                                         privacy
## 7208                    Rutgers                                          random
## 7209                    Rutgers                                          system
## 7210                    Harvard                                         meeting
## 7211                  Princeton                                         machine
## 7212           Washington_State                                           build
## 7213           Washington_State                                      components
## 7214           Washington_State                                      management
## 7215           Washington_State                                           visit
## 7216                    UVA_SDS                                     foundations
## 7217                    UVA_SDS                                         reading
## 7218                 Boston_Uni                                         aspects
## 7219                 Boston_Uni                                      assistance
## 7220                 Boston_Uni                                        calculus
## 7221                 Boston_Uni                                      collection
## 7222                 Boston_Uni                                        document
## 7223                 Boston_Uni                                             e.g
## 7224                 Boston_Uni                                          github
## 7225                 Boston_Uni                                        official
## 7226                 Boston_Uni                                         penalty
## 7227                 Boston_Uni                                          period
## 7228                 Boston_Uni                                            plan
## 7229                 Boston_Uni                                       preferred
## 7230                 Boston_Uni                                      principles
## 7231                 Boston_Uni                                        sessions
## 7232                 Boston_Uni                                    specifically
## 7233                        LSU                                       integrity
## 7234                        LSU                                       standards
## 7235                  UKentucky                                           based
## 7236                       CUNY                                        computer
## 7237                       CUNY                                     description
## 7238                       CUNY                                            real
## 7239                    UVA_SDS                                           learn
## 7240                    Harvard                                         support
## 7241                        UMD                                      coursework
## 7242                      UUtah                                         ability
## 7243                      UUtah                                           bring
## 7244                      UUtah                                       diversity
## 7245                      UUtah                                     effectively
## 7246                      UUtah                                            file
## 7247                      UUtah                                        graduate
## 7248                      UUtah                                         limited
## 7249                      UUtah                                      plagiarism
## 7250                      UUtah                                      reasonable
## 7251                      UUtah                                           title
## 7252                 UWisconsin                                         dataset
## 7253                 UWisconsin                                          health
## 7254                 UCSanDiego                                            list
## 7255                 UCBerkeley                                       encourage
## 7256                    Cornell                                            core
## 7257                    Cornell                                      individual
## 7258                    Cornell                                    instructions
## 7259                    Cornell                                          monday
## 7260                    Cornell                                         tuesday
## 7261                        MIT                                   accessibility
## 7262                        MIT                                        calendar
## 7263                        MIT                                           check
## 7264                        MIT                                      clustering
## 7265                        MIT                                      completion
## 7266                        MIT                                           error
## 7267                        MIT                                       knowledge
## 7268                        MIT                                          random
## 7269                        MIT                                         sharing
## 7270                    UIU_107                                       component
## 7271                    UIU_107                                      department
## 7272                    UIU_107                                      determined
## 7273                    UIU_107                                            fall
## 7274                    UIU_107                                         meeting
## 7275                    UIU_107                                     opportunity
## 7276                    UIU_107                                          source
## 7277                    UIU_107                                           weeks
## 7278                       CUNY                                       including
## 7279                       CUNY                                           world
## 7280               Georgia_Tech                                      regression
## 7281               Georgia_Tech                                          review
## 7282                        ASU                                             age
## 7283                        ASU                                     appointment
## 7284                        ASU                                        concerns
## 7285                        ASU                                        covering
## 7286                        ASU                                              dr
## 7287                        ASU                                         laptops
## 7288                        ASU                                             map
## 7289                        ASU                                        optional
## 7290                        ASU                                       permitted
## 7291                        ASU                                        previous
## 7292                        ASU                                            race
## 7293                        ASU                                          recent
## 7294                        ASU                                        referred
## 7295                        ASU                                            seek
## 7296                        ASU                                         talking
## 7297                        ASU                                        variance
## 7298                   NYU_DS4E                                        readings
## 7299                   NYU_DS4E                                         results
## 7300                NYU_IntroDS                                           apply
## 7301                NYU_IntroDS                                        examples
## 7302                NYU_IntroDS                                        readings
## 7303                      Brown                                           apply
## 7304                      Brown                                           dates
## 7305                      Brown                                           exams
## 7306                      Brown                                          weekly
## 7307                     Drexel                                          linked
## 7308                     Drexel                                          papers
## 7309  UWisc_Madison_Programming                                  accommodations
## 7310  UWisc_Madison_Programming                                          credit
## 7311                      UUtah                                            late
## 7312                        LSU                                     programming
## 7313  UWisc_Madison_Programming                                      attendance
## 7314  UWisc_Madison_Programming                                            list
## 7315                    UIU_207                                           based
## 7316                 UCSanDiego                                      approaches
## 7317                 UCSanDiego                                     comfortable
## 7318                 UCSanDiego                                     correctness
## 7319                 UCSanDiego                                          counts
## 7320                 UCSanDiego                                     experiences
## 7321                 UCSanDiego                                            fill
## 7322                 UCSanDiego                                       guarantee
## 7323                 UCSanDiego                                        homepage
## 7324                 UCSanDiego                                          listed
## 7325                 UCSanDiego                                             mwf
## 7326                 UCSanDiego                                           occur
## 7327                 UCSanDiego                                        weighted
## 7328                 UCBerkeley                                           tools
## 7329               USouthampton                                     information
## 7330                    Cornell                                        accepted
## 7331                    Cornell                                            note
## 7332                      UUtah                                             aid
## 7333                      UUtah                                       announced
## 7334                      UUtah                                        approval
## 7335                      UUtah                                        aurélien
## 7336                      UUtah                                       determine
## 7337                      UUtah                                           géron
## 7338                      UUtah                                        identity
## 7339                      UUtah                                              ix
## 7340                      UUtah                                          modify
## 7341                      UUtah                                    occasionally
## 7342                      UUtah                                          offers
## 7343                      UUtah                                            peer
## 7344                      UUtah                                     programmers
## 7345                      UUtah                                       protected
## 7346                      UUtah                                    repositories
## 7347                      UUtah                                        veterans
## 7348                    UZurich                                        aurélien
## 7349                    UZurich                                         authors
## 7350                    UZurich                                          biases
## 7351                    UZurich                                          binary
## 7352                    UZurich                                           chain
## 7353                    UZurich                                      classifier
## 7354                    UZurich                                      comparison
## 7355                    UZurich                                      covariance
## 7356                    UZurich                                    difficulties
## 7357                    UZurich                                        embedded
## 7358                    UZurich                                     expectation
## 7359                    UZurich                                     familiarity
## 7360                    UZurich                                          filter
## 7361                    UZurich                                         formats
## 7362                    UZurich                                           géron
## 7363                    UZurich                                    hierarchical
## 7364                    UZurich                                             net
## 7365                    UZurich                                          newton
## 7366                    UZurich                                        notation
## 7367                    UZurich                                       operating
## 7368                    UZurich                                         partial
## 7369                    UZurich                                     perspective
## 7370                    UZurich                                        presence
## 7371                    UZurich                                   probabilities
## 7372                    UZurich                                   reinforcement
## 7373                    UZurich                                            rest
## 7374                    UZurich                                         scaling
## 7375                    UZurich                                      stochastic
## 7376                    UZurich                                        studying
## 7377                    UZurich                                         theorem
## 7378             UniSys_Georgia                                     foundations
## 7379             UniSys_Georgia                                         results
## 7380                    Cornell                                        semester
## 7381                      UUtah                                          source
## 7382            Montgomery_Coll                                         provide
## 7383  UWisc_Madison_Programming                                      acceptable
## 7384  UWisc_Madison_Programming                                     accommodate
## 7385  UWisc_Madison_Programming                                      background
## 7386  UWisc_Madison_Programming                                          citing
## 7387  UWisc_Madison_Programming                                         comment
## 7388  UWisc_Madison_Programming                                     distributed
## 7389  UWisc_Madison_Programming                                     educational
## 7390  UWisc_Madison_Programming                                        enrolled
## 7391  UWisc_Madison_Programming                                         failure
## 7392  UWisc_Madison_Programming                                        incident
## 7393  UWisc_Madison_Programming                                         install
## 7394  UWisc_Madison_Programming                                          listed
## 7395  UWisc_Madison_Programming                                             lot
## 7396  UWisc_Madison_Programming                                          return
## 7397                        ASU                                            fall
## 7398                        ASU                                        includes
## 7399                   UVA_Stat                                   computational
## 7400                   UVA_Stat                                       encourage
## 7401                   UVA_Stat                                          graded
## 7402                   UVA_Stat                                        outcomes
## 7403                   UVA_Stat                                           solve
## 7404                   UVA_Stat                                     submissions
## 7405                   UVA_Stat                                        thinking
## 7406                       CUNY                                       analyzing
## 7407                       CUNY                                           focus
## 7408                   UToronto                                        calculus
## 7409                   UToronto                                        comments
## 7410                   UToronto                                        elements
## 7411                   UToronto                                         honesty
## 7412                   UToronto                                        location
## 7413                   UToronto                                           reach
## 7414                   UToronto                                          result
## 7415                   UToronto                                      validation
## 7416                   UToronto                                          vector
## 7417               Georgia_Tech                                      algorithms
## 7418               Georgia_Tech                                          basics
## 7419               Georgia_Tech                                         feature
## 7420               Georgia_Tech                                           rules
## 7421               Georgia_Tech                                         tuesday
## 7422                        UMD                                         achieve
## 7423                        UMD                                      contribute
## 7424                        UMD                                         express
## 7425                        UMD                                        handbook
## 7426                        UMD                                         posting
## 7427                        UMD                                           posts
## 7428                        UMD                                       potential
## 7429                        UMD                                      predictive
## 7430                        UMD                                        response
## 7431                        UMD                                        security
## 7432                        UMD                                       student's
## 7433                        UMD                                         studies
## 7434                        UMD                                      sufficient
## 7435                        UMD                                       supported
## 7436                        UMD                                           terms
## 7437           William_and_Mary                                          choose
## 7438           William_and_Mary                                           cross
## 7439           William_and_Mary                                           intro
## 7440           William_and_Mary                                           links
## 7441           William_and_Mary                                        sections
## 7442           William_and_Mary                                         summary
## 7443           William_and_Mary                                         version
## 7444                   NYU_DS4E                                      attendance
## 7445                    Rutgers                                         provide
## 7446                    Rutgers                                            real
## 7447                  UKentucky                                       resources
## 7448            Montgomery_Coll                                         variety
## 7449            Montgomery_Coll                                             web
## 7450                 UCSanDiego                                             e.g
## 7451                 UCSanDiego                                          follow
## 7452                 UCSanDiego                                           reach
## 7453                    UIU_107                                           based
## 7454                    UIU_107                                        complete
## 7455                   NYU_DS4E                                       algorithm
## 7456                   NYU_DS4E                                          driven
## 7457                   NYU_DS4E                                          graphs
## 7458                   NYU_DS4E                                            hard
## 7459                   NYU_DS4E                                        sampling
## 7460                   NYU_DS4E                                  visualizations
## 7461                NYU_IntroDS                                         address
## 7462                NYU_IntroDS                                           bring
## 7463                NYU_IntroDS                                         context
## 7464                NYU_IntroDS                                         copying
## 7465                NYU_IntroDS                                         develop
## 7466                NYU_IntroDS                                              ds
## 7467                NYU_IntroDS                                         finding
## 7468                NYU_IntroDS                                    introductory
## 7469                NYU_IntroDS                                          mining
## 7470                NYU_IntroDS                                         running
## 7471                NYU_IntroDS                                    technologies
## 7472                NYU_IntroDS                                           topic
## 7473                     Drexel                                        business
## 7474                      UUtah                                     engineering
## 7475                      UUtah                                         subject
## 7476                    UZurich                                        decision
## 7477                    UZurich                                         jupyter
## 7478                    UVA_SDS                                             3rd
## 7479                    UVA_SDS                                             aid
## 7480                    UVA_SDS                                        benefits
## 7481                    UVA_SDS                                          career
## 7482                    UVA_SDS                                         catalog
## 7483                    UVA_SDS                                       condition
## 7484                    UVA_SDS                                         devices
## 7485                    UVA_SDS                                      discovered
## 7486                    UVA_SDS                                      discussing
## 7487                    UVA_SDS                                       ecosystem
## 7488                    UVA_SDS                                          enroll
## 7489                    UVA_SDS                                       expressed
## 7490                    UVA_SDS                                             fax
## 7491                    UVA_SDS                                        focusing
## 7492                    UVA_SDS                                            idea
## 7493                    UVA_SDS                                       interface
## 7494                    UVA_SDS                                        involves
## 7495                    UVA_SDS                                          living
## 7496                    UVA_SDS                                          medium
## 7497                    UVA_SDS                                         mondays
## 7498                    UVA_SDS                                            move
## 7499                    UVA_SDS                                        outlined
## 7500                    UVA_SDS                                       performed
## 7501                    UVA_SDS                                   psychological
## 7502                    UVA_SDS                                          record
## 7503                    UVA_SDS                                   reinforcement
## 7504                    UVA_SDS                                       residence
## 7505                    UVA_SDS                                         scaling
## 7506                    UVA_SDS                                       secondary
## 7507                    UVA_SDS                                       semesters
## 7508                    UVA_SDS                                          senior
## 7509                    UVA_SDS                                    storytelling
## 7510                    UVA_SDS                                        studying
## 7511                    UVA_SDS                                            task
## 7512                    UVA_SDS                                         typical
## 7513                    UVA_SDS                                           voice
## 7514                    UVA_SDS                                 www.youtube.com
## 7515                        UMD                                        readings
## 7516                        UMD                                       submitted
## 7517     UWisc_Madison_Modeling                                        addition
## 7518     UWisc_Madison_Modeling                                      determined
## 7519     UWisc_Madison_Modeling                                       exercises
## 7520     UWisc_Madison_Modeling                                           prior
## 7521     UWisc_Madison_Modeling                                          source
## 7522                        LSU                                         student
## 7523               USouthampton                                           staff
## 7524                      UUtah                                             day
## 7525           William_and_Mary                                       completed
## 7526           William_and_Mary                                       encourage
## 7527           Washington_State                                            late
## 7528           Washington_State                                      regression
## 7529  UWisc_Madison_Programming                                         credits
## 7530  UWisc_Madison_Programming                                        official
## 7531  UWisc_Madison_Programming                                             run
## 7532  UWisc_Madison_Programming                                        strongly
## 7533                        MIT                                         provide
## 7534                      UUtah                                         content
## 7535                      UUtah                                            read
## 7536           Washington_State                                  accountability
## 7537           Washington_State                                     alternative
## 7538           Washington_State                                           cathy
## 7539           Washington_State                                        consists
## 7540           Washington_State                                           depth
## 7541           Washington_State                                     experiments
## 7542           Washington_State                                     familiarity
## 7543           Washington_State                                             fit
## 7544           Washington_State                                     formulation
## 7545           Washington_State                                       frontline
## 7546           Washington_State                                        involves
## 7547           Washington_State                                            item
## 7548           Washington_State                                           items
## 7549           Washington_State                                         massive
## 7550           Washington_State                                     perspective
## 7551           Washington_State                                         provost
## 7552           Washington_State                                          rachel
## 7553           Washington_State                                       rajaraman
## 7554           Washington_State                                        reported
## 7555           Washington_State                                          schutt
## 7556           Washington_State                                      scientists
## 7557           Washington_State                                        straight
## 7558           Washington_State                                        suitable
## 7559           Washington_State                                             tom
## 7560           Washington_State                                          ullman
## 7561           Washington_State                                         updates
## 7562           Washington_State                                         webpage
## 7563                 Boston_Uni                                           exams
## 7564                 Boston_Uni                                     foundations
## 7565                 Boston_Uni                                          weekly
## 7566                     UMaine                                   accommodation
## 7567                     UMaine                                         details
## 7568                     UMaine                                          format
## 7569                     UMaine                                          person
## 7570                  UKentucky                                        business
## 7571                  UKentucky                                        requests
## 7572                      UUtah                                            code
## 7573                     UMaine                                            code
## 7574                    UVA_SDS                                     engineering
## 7575                    UVA_SDS                                           level
## 7576     UWisc_Madison_Modeling                                          online
## 7577     UWisc_Madison_Modeling                                            week
## 7578                    UIU_207                                          attend
## 7579                    UIU_207                                      considered
## 7580                    UIU_207                                           hands
## 7581                    UIU_207                                        provided
## 7582                 UWisconsin                                             act
## 7583                 UWisconsin                                       conducted
## 7584                 UWisconsin                                         enhance
## 7585                 UWisconsin                                         improve
## 7586                 UWisconsin                                        insights
## 7587                 UWisconsin                                       interview
## 7588                 UWisconsin                                          robert
## 7589                     Drexel                                         machine
## 7590                  UKentucky                                         receive
## 7591                    Harvard                                          attend
## 7592                    Harvard                                          system
## 7593                    Rutgers                                       analyzing
## 7594                    Rutgers                                         details
## 7595                    Rutgers                                           focus
## 7596                    Rutgers                                          report
## 7597                    Rutgers                                        research
## 7598                    Rutgers                                            site
## 7599                 UCSanDiego                                          graded
## 7600           Washington_State                                        decision
## 7601           Washington_State                                     engineering
## 7602           Washington_State                                        standard
## 7603           Washington_State                                            talk
## 7604                        LSU                                      attendance
## 7605                        LSU                                           check
## 7606                        LSU                                        provided
## 7607                 UCSanDiego                                        complete
## 7608            Montgomery_Coll                                        creating
## 7609            Montgomery_Coll                                   documentation
## 7610            Montgomery_Coll                                          emails
## 7611            Montgomery_Coll                                           event
## 7612            Montgomery_Coll                                      guidelines
## 7613            Montgomery_Coll                                         network
## 7614            Montgomery_Coll                                         respect
## 7615            Montgomery_Coll                                         session
## 7616            Montgomery_Coll                                           steps
## 7617            Montgomery_Coll                                      successful
## 7618            Montgomery_Coll                                          sunday
## 7619                   NYU_DS4E                                         lecture
## 7620                NYU_IntroDS                                        computer
## 7621                NYU_IntroDS                                         lecture
## 7622                NYU_IntroDS                                          models
## 7623                NYU_IntroDS                                            real
## 7624                  Princeton                                          skills
## 7625                        UMD                                      classmates
## 7626                 UCBerkeley                                         courses
## 7627                 Boston_Uni                                           cover
## 7628                 Boston_Uni                                      cumulative
## 7629                 Boston_Uni                                       databases
## 7630                 Boston_Uni                                       detection
## 7631                 Boston_Uni                                  dimensionality
## 7632                 Boston_Uni                                    distribution
## 7633                 Boston_Uni                                          entire
## 7634                 Boston_Uni                                         finding
## 7635                 Boston_Uni                                            hard
## 7636                 Boston_Uni                                       reduction
## 7637                 Boston_Uni                                           start
## 7638                 Boston_Uni                                       violation
## 7639                 Boston_Uni                                           words
## 7640                 UCSanDiego                                         details
## 7641                    Harvard                                      accessible
## 7642                    Harvard                                        actively
## 7643                    Harvard                                            chat
## 7644                    Harvard                                           cloud
## 7645                    Harvard                                          comply
## 7646                    Harvard                                   comprehensive
## 7647                    Harvard                                      developing
## 7648                    Harvard                                          errors
## 7649                    Harvard                                       guarantee
## 7650                    Harvard                                         install
## 7651                    Harvard                                         license
## 7652                    Harvard                                            maps
## 7653                    Harvard                                       microsoft
## 7654                    Harvard                                          obtain
## 7655                    Harvard                                           peers
## 7656                    Harvard                                         percent
## 7657                    Harvard                                        products
## 7658                    Harvard                                       remaining
## 7659                    Harvard                                          remote
## 7660                    Harvard                                     responsibly
## 7661                    Harvard                                           spend
## 7662  UWisc_Madison_Programming                                         receive
## 7663  UWisc_Madison_Programming                                           write
## 7664                    UIU_107                                      completion
## 7665                    UIU_107                                      considered
## 7666                    UIU_107                                            drop
## 7667                    UIU_107                                           hands
## 7668                    UIU_107                                         missing
## 7669                    UIU_107                                         privacy
## 7670                    UIU_107                                        provided
## 7671                        MIT                                      components
## 7672                        MIT                                        internet
## 7673                        MIT                                        research
## 7674                        LSU                                   participation
## 7675                    Cornell                                         applied
## 7676                    Cornell                                          coding
## 7677                    Cornell                                        evaluate
## 7678                    Cornell                                          friday
## 7679                    Cornell                                          health
## 7680                    Cornell                                     instructors
## 7681                    Cornell                                       introduce
## 7682                    Cornell                                        specific
## 7683                  Princeton                                              al
## 7684                  Princeton                                   approximately
## 7685                  Princeton                                      assistants
## 7686                  Princeton                                          choice
## 7687                  Princeton                                         cluster
## 7688                  Princeton                                         density
## 7689                  Princeton                                           depth
## 7690                  Princeton                                       expressed
## 7691                  Princeton                                      expression
## 7692                  Princeton                                        familiar
## 7693                  Princeton                                        gaussian
## 7694                  Princeton                                      generative
## 7695                  Princeton                                          inputs
## 7696                  Princeton                                            item
## 7697                  Princeton                                           lasso
## 7698                  Princeton                                     limitations
## 7699                  Princeton                                       locations
## 7700                  Princeton                                           march
## 7701                  Princeton                                       primarily
## 7702                  Princeton                                         produce
## 7703                  Princeton                                         ranking
## 7704                  Princeton                                            rise
## 7705                  Princeton                                         rstudio
## 7706                  Princeton                                            team
## 7707                  Princeton                                          witten
## 7708                  Princeton                                 www.youtube.com
## 7709                        LSU                                       addressed
## 7710                        LSU                                      approaches
## 7711                        LSU                                   communicating
## 7712                        LSU                                           curve
## 7713                        LSU                                     differences
## 7714                        LSU                                    disciplinary
## 7715                        LSU                                       encounter
## 7716                        LSU                                         enhance
## 7717                        LSU                                       evaluated
## 7718                        LSU                                      identities
## 7719                        LSU                                   inappropriate
## 7720                        LSU                                       inclusive
## 7721                        LSU                                          inside
## 7722                        LSU                                      integrated
## 7723                        LSU                                              li
## 7724                        LSU                                         located
## 7725                        LSU                                        maintain
## 7726                        LSU                                            maps
## 7727                        LSU                                         package
## 7728                        LSU                                            past
## 7729                        LSU                                         percent
## 7730                        LSU                                        physical
## 7731                        LSU                                       platforms
## 7732                        LSU                                       probation
## 7733                        LSU                                        products
## 7734                        LSU                                      publishing
## 7735                        LSU                                        religion
## 7736                        LSU                                          remote
## 7737                        LSU                                      respectful
## 7738                        LSU                                          slides
## 7739                        LSU                                           track
## 7740                        LSU                                        versions
## 7741                        LSU                                       visualize
## 7742                        LSU                                        websites
## 7743                        LSU                                       welcoming
## 7744           Washington_State                                          center
## 7745           Washington_State                                             web
## 7746           William_and_Mary                                          adjust
## 7747           William_and_Mary                                       breakdown
## 7748           William_and_Mary                                         careful
## 7749           William_and_Mary                                         classic
## 7750           William_and_Mary                                             cnn
## 7751           William_and_Mary                                            cons
## 7752           William_and_Mary                                      contacting
## 7753           William_and_Mary                                             crn
## 7754           William_and_Mary                                          daniel
## 7755           William_and_Mary                                       dataframe
## 7756           William_and_Mary                                             def
## 7757           William_and_Mary                                      deliberate
## 7758           William_and_Mary                                  demonstrations
## 7759           William_and_Mary                                          depend
## 7760           William_and_Mary                                         ensures
## 7761           William_and_Mary                                        february
## 7762           William_and_Mary                                          forest
## 7763           William_and_Mary                                      guaranteed
## 7764           William_and_Mary                                       histogram
## 7765           William_and_Mary                                  hyperparameter
## 7766           William_and_Mary                                             ide
## 7767           William_and_Mary                                       identical
## 7768           William_and_Mary                                        interact
## 7769           William_and_Mary                                       interfere
## 7770           William_and_Mary                                      invitation
## 7771           William_and_Mary                                           ipynb
## 7772           William_and_Mary                                       isolation
## 7773           William_and_Mary                                             jan
## 7774           William_and_Mary                                           layer
## 7775           William_and_Mary                                        lifelong
## 7776           William_and_Mary                                         mixture
## 7777           William_and_Mary                                     necessarily
## 7778           William_and_Mary                                       organized
## 7779           William_and_Mary                                         outputs
## 7780           William_and_Mary                                        planning
## 7781           William_and_Mary                                         prevent
## 7782           William_and_Mary                                      professors
## 7783           William_and_Mary                                        progress
## 7784           William_and_Mary                                            pros
## 7785           William_and_Mary                                       recording
## 7786           William_and_Mary                                       registrar
## 7787           William_and_Mary                                        retrieve
## 7788           William_and_Mary                                          safari
## 7789           William_and_Mary                                        selected
## 7790           William_and_Mary                                           smith
## 7791           William_and_Mary                                            span
## 7792           William_and_Mary                                          stable
## 7793           William_and_Mary                                       statistic
## 7794           William_and_Mary                                       technique
## 7795           William_and_Mary                                        tracking
## 7796           William_and_Mary                                       whichever
## 7797           William_and_Mary                                        withdraw
## 7798            Montgomery_Coll                                      instructor
## 7799                      Brown                                        datasets
## 7800                      Brown                                        modeling
## 7801                      Brown                                         variety
## 7802                   UToronto                                       submitted
## 7803  UWisc_Madison_Programming                                            exam
## 7804                     Drexel                                       causation
## 7805                     Drexel                                         century
## 7806                     Drexel                                           chang
## 7807                     Drexel                                       computers
## 7808                     Drexel                                  considerations
## 7809                     Drexel                                           cycle
## 7810                     Drexel                                  demonstrations
## 7811                     Drexel                                      discipline
## 7812                     Drexel                                       explained
## 7813                     Drexel                                           falls
## 7814                     Drexel                                             faq
## 7815                     Drexel                                          fourth
## 7816                     Drexel                                          gentle
## 7817                     Drexel                                          humans
## 7818                     Drexel                                      identified
## 7819                     Drexel                                       intensive
## 7820                     Drexel                                       mapreduce
## 7821                     Drexel                                            matt
## 7822                     Drexel                                            mike
## 7823                     Drexel                                            spam
## 7824                     Drexel                                    unstructured
## 7825                     Drexel                                           we’re
## 7826                     Drexel                                        workflow
## 7827                      UUtah                                        accuracy
## 7828                      UUtah                                            rule
## 7829                      UUtah                                            view
## 7830               Georgia_Tech                                       resources
## 7831                    Rutgers                                     information
## 7832           William_and_Mary                                             day
## 7833                    Cornell                                        identify
## 7834                    Cornell                                          posted
## 7835                    Cornell                                           write
## 7836                        UMD                                         grading
## 7837             UniSys_Georgia                                  classification
## 7838             UniSys_Georgia                                   communication
## 7839             UniSys_Georgia                                        modeling
## 7840             UniSys_Georgia                                         variety
## 7841               Georgia_Tech                                          online
## 7842               Georgia_Tech                                     programming
## 7843                    UIU_207                                        teaching
## 7844                   UVA_Stat                                       component
## 7845                   UVA_Stat                                      determined
## 7846                   UVA_Stat                                            fall
## 7847                   UVA_Stat                                       integrity
## 7848                   UVA_Stat                                            post
## 7849                   UVA_Stat                                           scale
## 7850                   UVA_Stat                                      submission
## 7851                  UKentucky                                             a.m
## 7852                  UKentucky                                           april
## 7853                  UKentucky                                    asynchronous
## 7854                  UKentucky                                           audio
## 7855                  UKentucky                                          author
## 7856                  UKentucky                                            base
## 7857                  UKentucky                                       behaviors
## 7858                  UKentucky                                    capabilities
## 7859                  UKentucky                                    circumstance
## 7860                  UKentucky                                           civil
## 7861                  UKentucky                                        civility
## 7862                  UKentucky                                      complicate
## 7863                  UKentucky                                   complications
## 7864                  UKentucky                                    contribution
## 7865                  UKentucky                                    coordination
## 7866                  UKentucky                                     coordinator
## 7867                  UKentucky                                         dealing
## 7868                  UKentucky                                         demands
## 7869                  UKentucky                                            desk
## 7870                  UKentucky                                           drawn
## 7871                  UKentucky                                          excuse
## 7872                  UKentucky                                        explorer
## 7873                  UKentucky                                         january
## 7874                  UKentucky                                       librarian
## 7875                  UKentucky                                    manipulating
## 7876                  UKentucky                                        metadata
## 7877                  UKentucky                                         morning
## 7878                  UKentucky                                        ordinary
## 7879                  UKentucky                                           paste
## 7880                  UKentucky                                        postings
## 7881                  UKentucky                                        progress
## 7882                  UKentucky                                          reader
## 7883                  UKentucky                                            rich
## 7884                  UKentucky                                          safari
## 7885                  UKentucky                                       schedules
## 7886                  UKentucky                                         stanton
## 7887                  UKentucky                                         trained
## 7888                  UKentucky                                           treat
## 7889                  UKentucky                                      unforeseen
## 7890                  UKentucky                                    unstructured
## 7891                  UKentucky                                         uploads
## 7892                  UKentucky                                         utilize
## 7893                  UKentucky                                            word
## 7894                       CUNY                                          basics
## 7895                       CUNY                                      coursework
## 7896                       CUNY                                     exploratory
## 7897                       CUNY                                            form
## 7898                       CUNY                                    instructions
## 7899                       CUNY                                        networks
## 7900                       CUNY                                        question
## 7901                       CUNY                                           rules
## 7902                       CUNY                                        sciences
## 7903                       CUNY                                        standard
## 7904                     Drexel                                        handbook
## 7905                    Cornell                                        concepts
## 7906                    Harvard                                        teaching
## 7907                   NYU_DS4E                                         analyze
## 7908                   NYU_DS4E                                          expect
## 7909                   NYU_DS4E                                         explain
## 7910                   NYU_DS4E                                           focus
## 7911                   NYU_DS4E                                            text
## 7912            Montgomery_Coll                                        identify
## 7913            Montgomery_Coll                                         receive
## 7914            Montgomery_Coll                                        services
## 7915            Montgomery_Coll                                            late
## 7916                     UMaine                                       announced
## 7917                     UMaine                                   appropriately
## 7918                     UMaine                                          arrive
## 7919                     UMaine                                        conflict
## 7920                     UMaine                                   contributions
## 7921                     UMaine                                         devices
## 7922                     UMaine                                     dimensional
## 7923                     UMaine                                      disclaimer
## 7924                     UMaine                                         effects
## 7925                     UMaine                                      electronic
## 7926                     UMaine                                          enable
## 7927                     UMaine                                    experimental
## 7928                     UMaine                                           leave
## 7929                     UMaine                                         manning
## 7930                     UMaine                                           march
## 7931                     UMaine                                         michael
## 7932                     UMaine                                          notify
## 7933                     UMaine                                            rest
## 7934                     UMaine                                       semesters
## 7935                     UMaine                                         theorem
## 7936                     UMaine                                            tree
## 7937                     UMaine                                          unable
## 7938                     UMaine                                         viewing
## 7939               Georgia_Tech                                         current
## 7940               Georgia_Tech                                       homeworks
## 7941                   UToronto                                           bayes
## 7942                   UToronto                                      conditions
## 7943                   UToronto                                       diversity
## 7944                   UToronto                                         limited
## 7945                   UToronto                                            loss
## 7946                   UToronto                                      plagiarism
## 7947                   UToronto                                       reference
## 7948                   UToronto                                     significant
## 7949                   UToronto                                         special
## 7950           William_and_Mary                                         learned
## 7951           William_and_Mary                                        meetings
## 7952                        ASU                                            acts
## 7953                        ASU                                       addressed
## 7954                        ASU                                        adjusted
## 7955                        ASU                                         applies
## 7956                        ASU                                          comply
## 7957                        ASU                                           curve
## 7958                        ASU                                             dot
## 7959                        ASU                                     exceptional
## 7960                        ASU                                           joint
## 7961                        ASU                                             law
## 7962                        ASU                                         located
## 7963                        ASU                                        majority
## 7964                        ASU                                        mckinney
## 7965                        ASU                                       messaging
## 7966                        ASU                                          normal
## 7967                        ASU                                          origin
## 7968                        ASU                                        physical
## 7969                        ASU                                      properties
## 7970                        ASU                                        religion
## 7971                        ASU                                        settings
## 7972                        ASU                                     simulations
## 7973                        ASU                                         treated
## 7974                        ASU                                         veteran
## 7975                        ASU                                             wes
## 7976                        ASU                                      withdrawal
## 7977                    UVA_SDS                                         support
## 7978                      UUtah                                        evaluate
## 7979                      UUtah                                          health
## 7980                      UUtah                                        programs
## 7981     UWisc_Madison_Modeling                                          answer
## 7982     UWisc_Madison_Modeling                                         classes
## 7983     UWisc_Madison_Modeling                                     communicate
## 7984     UWisc_Madison_Modeling                                           hands
## 7985     UWisc_Madison_Modeling                                       inference
## 7986     UWisc_Madison_Modeling                                           model
## 7987     UWisc_Madison_Modeling                                         process
## 7988                    UZurich                                           cross
## 7989                    UZurich                                         dataset
## 7990                    UZurich                                  interpretation
## 7991                    UZurich                                     recommended
## 7992                 UWisconsin                                          graded
## 7993                 UCSanDiego                                       diversity
## 7994                 UCSanDiego                                          public
## 7995           William_and_Mary                                            post
## 7996                      UUtah                                        language
## 7997                     Drexel                                        overview
## 7998                    UIU_107                                         lecture
## 7999                    UIU_107                                        teaching
## 8000                   NYU_DS4E                                         concept
## 8001                   NYU_DS4E                                      estimation
## 8002                   NYU_DS4E                                          people
## 8003                NYU_IntroDS                                     calculation
## 8004                NYU_IntroDS                                        chapters
## 8005                NYU_IntroDS                                          ethics
## 8006                NYU_IntroDS                                            hand
## 8007                NYU_IntroDS                                       implement
## 8008                NYU_IntroDS                                          length
## 8009                NYU_IntroDS                                            line
## 8010                NYU_IntroDS                                    optimization
## 8011                NYU_IntroDS                                          papers
## 8012                NYU_IntroDS                                      requesting
## 8013                NYU_IntroDS                                       selection
## 8014                NYU_IntroDS                                     surrounding
## 8015                NYU_IntroDS                                     visualizing
## 8016               USouthampton                                         support
## 8017                        UMD                                           extra
## 8018                 Boston_Uni                                        modeling
## 8019                 Boston_Uni                                             web
## 8020  UWisc_Madison_Programming                                         ability
## 8021  UWisc_Madison_Programming                                       diversity
## 8022  UWisc_Madison_Programming                                         finding
## 8023                     UMaine                                           rules
## 8024                     UMaine                                         subject
## 8025                   NYU_DS4E                                        abstract
## 8026                   NYU_DS4E                                     abstraction
## 8027                   NYU_DS4E                                  accomplishment
## 8028                   NYU_DS4E                                      acquainted
## 8029                   NYU_DS4E                                          acting
## 8030                   NYU_DS4E                                           adopt
## 8031                   NYU_DS4E                                andrea.jonesrooy
## 8032                   NYU_DS4E                                         annoyed
## 8033                   NYU_DS4E                                             awe
## 8034                   NYU_DS4E                                        backbone
## 8035                   NYU_DS4E                                            bars
## 8036                   NYU_DS4E                                          buffer
## 8037                   NYU_DS4E                                       buzzwords
## 8038                   NYU_DS4E                                        classify
## 8039                   NYU_DS4E                                         columns
## 8040                   NYU_DS4E                                   conceptualize
## 8041                   NYU_DS4E                                            cool
## 8042                   NYU_DS4E                                         daniels
## 8043                   NYU_DS4E                                         debates
## 8044                   NYU_DS4E                                      dedication
## 8045                   NYU_DS4E                                          deeper
## 8046                   NYU_DS4E                                     diagnostics
## 8047                   NYU_DS4E                                     discoveries
## 8048                   NYU_DS4E                                     distinguish
## 8049                   NYU_DS4E                                        electron
## 8050                   NYU_DS4E                                         empower
## 8051                   NYU_DS4E                                       empowered
## 8052                   NYU_DS4E                                       evaluator
## 8053                   NYU_DS4E                                      exceptions
## 8054                   NYU_DS4E                                        exciting
## 8055                   NYU_DS4E                                            eyes
## 8056                   NYU_DS4E                                            feed
## 8057                   NYU_DS4E                                          forced
## 8058                   NYU_DS4E                                       formation
## 8059                   NYU_DS4E                                    foundational
## 8060                   NYU_DS4E                                      frequently
## 8061                   NYU_DS4E                                     frustration
## 8062                   NYU_DS4E                                           grail
## 8063                   NYU_DS4E                                         halfway
## 8064                   NYU_DS4E                                       happiness
## 8065                   NYU_DS4E                                         harmful
## 8066                   NYU_DS4E                                         haven’t
## 8067                   NYU_DS4E                                           holes
## 8068                   NYU_DS4E                                            holy
## 8069                   NYU_DS4E                                     icalization
## 8070                   NYU_DS4E                                             ics
## 8071                   NYU_DS4E                                           imply
## 8072                   NYU_DS4E                                       induction
## 8073                   NYU_DS4E                                      inevitable
## 8074                   NYU_DS4E                                             ing
## 8075                   NYU_DS4E                                      investment
## 8076                   NYU_DS4E                                          jargon
## 8077                   NYU_DS4E                                           jones
## 8078                   NYU_DS4E                                             joy
## 8079                   NYU_DS4E                                            jump
## 8080                   NYU_DS4E                                             led
## 8081                   NYU_DS4E                                   manipulations
## 8082                   NYU_DS4E                                    meaningfully
## 8083                   NYU_DS4E                                   methodologies
## 8084                   NYU_DS4E                                       minimally
## 8085                   NYU_DS4E                                       modeler’s
## 8086                   NYU_DS4E                                           nifty
## 8087                   NYU_DS4E                                      obfuscates
## 8088                   NYU_DS4E                                     observation
## 8089                   NYU_DS4E                                          onward
## 8090                   NYU_DS4E                                         outlets
## 8091                   NYU_DS4E                                        overlaid
## 8092                   NYU_DS4E                                     parentheses
## 8093                   NYU_DS4E                                         passive
## 8094                   NYU_DS4E                                         periods
## 8095                   NYU_DS4E                                   philosophical
## 8096                   NYU_DS4E                                          phrase
## 8097                   NYU_DS4E                                            ping
## 8098                   NYU_DS4E                                            prac
## 8099                   NYU_DS4E                                     practically
## 8100                   NYU_DS4E                                     president’s
## 8101                   NYU_DS4E                                        producer
## 8102                   NYU_DS4E                                     professions
## 8103                   NYU_DS4E                                      programmer
## 8104                   NYU_DS4E                                       prolonged
## 8105                   NYU_DS4E                                         promise
## 8106                   NYU_DS4E                                         pulling
## 8107                   NYU_DS4E                                          rabbit
## 8108                   NYU_DS4E                                             rad
## 8109                   NYU_DS4E                                         replied
## 8110                   NYU_DS4E                                        resolved
## 8111                   NYU_DS4E                                          reward
## 8112                   NYU_DS4E                                        rigorous
## 8113                   NYU_DS4E                                           roots
## 8114                   NYU_DS4E                                            rooy
## 8115                   NYU_DS4E                                      satisfying
## 8116                   NYU_DS4E                                            scat
## 8117                   NYU_DS4E                                    scatterplots
## 8118                   NYU_DS4E                                         seaborn
## 8119                   NYU_DS4E                                            snow
## 8120                   NYU_DS4E                                            sort
## 8121                   NYU_DS4E                                           stage
## 8122                   NYU_DS4E                                            tend
## 8123                   NYU_DS4E                                        terplots
## 8124                   NYU_DS4E                                      terrifying
## 8125                   NYU_DS4E                                            tice
## 8126                   NYU_DS4E                                        to:think
## 8127                   NYU_DS4E                                         totally
## 8128                   NYU_DS4E                                       tradeoffs
## 8129                   NYU_DS4E                                      treatments
## 8130                   NYU_DS4E                                       unexcused
## 8131                   NYU_DS4E                                        unknowns
## 8132                   NYU_DS4E                                      usefulness
## 8133                   NYU_DS4E                                           usual
## 8134                   NYU_DS4E                                      vocabulary
## 8135                   NYU_DS4E                                          warned
## 8136                   NYU_DS4E                                       wonderful
## 8137                   NYU_DS4E                                       youtube’s
## 8138                    Cornell                                             8th
## 8139                    Cornell                                           align
## 8140                    Cornell                                          amazon
## 8141                    Cornell                                    associations
## 8142                    Cornell                                      attempting
## 8143                    Cornell                                      calculated
## 8144                    Cornell                                            caps
## 8145                    Cornell                                       cetinkaya
## 8146                    Cornell                                         chatgpt
## 8147                    Cornell                                            cite
## 8148                    Cornell                                           cited
## 8149                    Cornell                                          closer
## 8150                    Cornell                                         copilot
## 8151                    Cornell                                      correspond
## 8152                    Cornell                                         dispute
## 8153                    Cornell                                          facing
## 8154                    Cornell                                        february
## 8155                    Cornell                                       grolemund
## 8156                    Cornell                                         growing
## 8157                    Cornell                                 implementations
## 8158                    Cornell                                          losing
## 8159                    Cornell                                          marked
## 8160                    Cornell                                         munging
## 8161                    Cornell                                        obtained
## 8162                    Cornell                                        partners
## 8163                    Cornell                                           paste
## 8164                    Cornell                                       permanent
## 8165                    Cornell                                     potentially
## 8166                    Cornell                                        powerful
## 8167                    Cornell                                         reasons
## 8168                    Cornell                                          repeat
## 8169                    Cornell                                       scenarios
## 8170                    Cornell                                   stackoverflow
## 8171                    Cornell                                    supplemented
## 8172                    Cornell                                           touch
## 8173                    Cornell                                           usage
## 8174                    Cornell                                        valuable
## 8175                    Cornell                                         wickham
## 8176                    Cornell                                        workflow
## 8177                        MIT                                         include
## 8178                   UVA_Stat                                           based
## 8179                   UVA_Stat                                        complete
## 8180                    UIU_107                                           world
## 8181                    UVA_SDS                                            type
## 8182                  UKentucky                                      assistance
## 8183                  UKentucky                                       decisions
## 8184                  UKentucky                                             pdf
## 8185                    UIU_207                                         college
## 8186                    UIU_207                                      management
## 8187                    UIU_207                                        multiple
## 8188                    UIU_207                                          report
## 8189                    UIU_207                                        requires
## 8190                    UIU_207                                          taking
## 8191                 UCSanDiego                                         actions
## 8192                 UCSanDiego                                        contents
## 8193                 UCSanDiego                                       correctly
## 8194                 UCSanDiego                                       determine
## 8195                 UCSanDiego                                      discussing
## 8196                 UCSanDiego                                          figure
## 8197                 UCSanDiego                                    intelligence
## 8198                 UCSanDiego                                         setting
## 8199                 UCSanDiego                                          upload
## 8200               USouthampton                                     statistical
## 8201                        UMD                                      acceptable
## 8202                        UMD                                         comment
## 8203                        UMD                                     examination
## 8204                        UMD                                     experiences
## 8205                        UMD                                         failure
## 8206                        UMD                                        fairness
## 8207                        UMD                                        maintain
## 8208                        UMD                                      misconduct
## 8209                        UMD                                        products
## 8210                 UWisconsin                                           dates
## 8211                  UKentucky                                       integrity
## 8212                    Cornell                                            date
## 8213                  UKentucky                                     information
## 8214                    Harvard                                           visit
## 8215                    Rutgers                                         algebra
## 8216                    Rutgers                                          basics
## 8217                    Rutgers                                        feedback
## 8218                    Rutgers                                            form
## 8219                    Rutgers                                      objectives
## 8220                    Rutgers                                          school
## 8221                    Rutgers                                         solving
## 8222                    Rutgers                                          spring
## 8223                    Rutgers                                            talk
## 8224                    Rutgers                                             top
## 8225                 UCSanDiego                                          letter
## 8226                 UCSanDiego                                            post
## 8227                      UUtah                                        lectures
## 8228                        LSU                                          change
## 8229                        LSU                                          expect
## 8230                    UVA_SDS                                        practice
## 8231  UWisc_Madison_Programming                                              al
## 8232  UWisc_Madison_Programming                                       automated
## 8233  UWisc_Madison_Programming                                          commit
## 8234  UWisc_Madison_Programming                                          rubric
## 8235  UWisc_Madison_Programming                                      similarity
## 8236  UWisc_Madison_Programming                                            stay
## 8237  UWisc_Madison_Programming                                         staying
## 8238  UWisc_Madison_Programming                                         succeed
## 8239  UWisc_Madison_Programming                                     traditional
## 8240  UWisc_Madison_Programming                                          upload
## 8241           Washington_State                                    applications
## 8242           Washington_State                                        business
## 8243           Washington_State                                         edition
## 8244           Washington_State                                     fundamental
## 8245           Washington_State                                         summary
## 8246                    Rutgers                                         project
## 8247                 UCBerkeley                                          design
## 8248                 UCBerkeley                                           goals
## 8249                 UCBerkeley                                           hands
## 8250                 UCBerkeley                                       inference
## 8251                 UCBerkeley                                         missing
## 8252                 UCBerkeley                                         privacy
## 8253                 UCBerkeley                                            sets
## 8254                 UCBerkeley                                          system
## 8255                       CUNY                                        analysis
## 8256                   UToronto                                         lecture
## 8257                UWashington                                        complete
## 8258                    Harvard                                        language
## 8259                    UIU_107                                         analyze
## 8260                    UIU_107                                         college
## 8261                    UIU_107                                           focus
## 8262                    UIU_107                                        multiple
## 8263                    UIU_107                                          person
## 8264                    UIU_107                                        requires
## 8265                   UToronto                                      university
## 8266                        MIT                                             2nd
## 8267                        MIT                                        deadline
## 8268                        MIT                                     engineering
## 8269                        MIT                                        standard
## 8270                        MIT                                         subject
## 8271     UWisc_Madison_Modeling                                         methods
## 8272     UWisc_Madison_Modeling                                          models
## 8273     UWisc_Madison_Modeling                                         provide
## 8274     UWisc_Madison_Modeling                                        teaching
## 8275                        UMD                                          action
## 8276                        UMD                                         penalty
## 8277                        UMD                                   undergraduate
## 8278                    Harvard                                     programming
## 8279                  Princeton                                             set
## 8280           Washington_State                                           means
## 8281                        LSU                                          issues
## 8282                        LSU                                        language
## 8283                      Brown                                   computational
## 8284                      Brown                                         explore
## 8285                      Brown                                         related
## 8286                   NYU_DS4E                                          skills
## 8287                    Cornell                                     demonstrate
## 8288                    Cornell                                             e.g
## 8289                    Cornell                                         honesty
## 8290                    Cornell                                         learned
## 8291                    Cornell                                        meetings
## 8292                    Cornell                                      permission
## 8293                    Cornell                                        sessions
## 8294                   UToronto                                        personal
## 8295                      UUtah                                         acquire
## 8296                      UUtah                                        affected
## 8297                      UUtah                                            apis
## 8298                      UUtah                                          author
## 8299                      UUtah                                           broad
## 8300                      UUtah                                     emergencies
## 8301                      UUtah                                            fair
## 8302                      UUtah                                          images
## 8303                      UUtah                                     intelligent
## 8304                      UUtah                                          intent
## 8305                      UUtah                                       interfere
## 8306                      UUtah                                         ipython
## 8307                      UUtah                                       milestone
## 8308                      UUtah                                            path
## 8309                      UUtah                                          police
## 8310                      UUtah                                       principle
## 8311                      UUtah                                       regrading
## 8312                      UUtah                                        scraping
## 8313                      UUtah                                    undocumented
## 8314  UWisc_Madison_Programming                                          laptop
## 8315                    UZurich                                       advantage
## 8316                    UZurich                                   approximation
## 8317                    UZurich                                          bishop
## 8318                    UZurich                                            boyd
## 8319                    UZurich                                     coefficient
## 8320                    UZurich                                   collaborative
## 8321                    UZurich                                      complexity
## 8322                    UZurich                                            cone
## 8323                    UZurich                                     derivatives
## 8324                    UZurich                                          digits
## 8325                    UZurich                                     eigenvalues
## 8326                    UZurich                                    eigenvectors
## 8327                    UZurich                                         elastic
## 8328                    UZurich                                       equations
## 8329                    UZurich                                         filters
## 8330                    UZurich                                            fold
## 8331                    UZurich                                       gradients
## 8332                    UZurich                                           house
## 8333                    UZurich                                  hyperparameter
## 8334                    UZurich                                           image
## 8335                    UZurich                                     informatics
## 8336                    UZurich                                           input
## 8337                    UZurich                                     intelligent
## 8338                    UZurich                                          kaggle
## 8339                    UZurich                                        lagrange
## 8340                    UZurich                                          latent
## 8341                    UZurich                                      motivation
## 8342                    UZurich                                          murphy
## 8343                    UZurich                                           naïve
## 8344                    UZurich                                        newton's
## 8345                    UZurich                                          object
## 8346                    UZurich                                         optimal
## 8347                    UZurich                                        outliers
## 8348                    UZurich                                         pearson
## 8349                    UZurich                                        positive
## 8350                    UZurich                                      predicting
## 8351                    UZurich                                           price
## 8352                    UZurich                                       projected
## 8353                    UZurich                                           proof
## 8354                    UZurich                                      protection
## 8355                    UZurich                                          reduce
## 8356                    UZurich                                        semantic
## 8357                    UZurich                                            size
## 8358                    UZurich                                      strengthen
## 8359                    UZurich                                             svm
## 8360                    UZurich                                          target
## 8361                    UZurich                                        tradeoff
## 8362                    UZurich                                    transforming
## 8363                    UZurich                                        underpin
## 8364                    UZurich                                          wealth
## 8365                 UWisconsin                                        logistic
## 8366                 Boston_Uni                                          chance
## 8367                 Boston_Uni                                          emails
## 8368                 Boston_Uni                                        exercise
## 8369                 Boston_Uni                                            hand
## 8370                 Boston_Uni                                          hastie
## 8371                 Boston_Uni                                            hour
## 8372                 Boston_Uni                                      importance
## 8373                 Boston_Uni                                        intended
## 8374                 Boston_Uni                                           james
## 8375                 Boston_Uni                                         minutes
## 8376                 Boston_Uni                                         network
## 8377                 Boston_Uni                                      prediction
## 8378                 Boston_Uni                                      requesting
## 8379                 Boston_Uni                                     responsible
## 8380                 Boston_Uni                                            send
## 8381                 Boston_Uni                                         squares
## 8382                 Boston_Uni                                        starting
## 8383                 Boston_Uni                                      tibshirani
## 8384                 Boston_Uni                                            tool
## 8385                 Boston_Uni                                       typically
## 8386                 Boston_Uni                                     visualizing
## 8387                  UKentucky                                  accommodations
## 8388            Montgomery_Coll                                     acknowledge
## 8389            Montgomery_Coll                                        analytic
## 8390            Montgomery_Coll                                    arrangements
## 8391            Montgomery_Coll                                  communications
## 8392            Montgomery_Coll                                      discretion
## 8393            Montgomery_Coll                                      equivalent
## 8394            Montgomery_Coll                                     extenuating
## 8395            Montgomery_Coll                                         finally
## 8396            Montgomery_Coll                                     interactive
## 8397            Montgomery_Coll                                         jeffrey
## 8398            Montgomery_Coll                                     mathematics
## 8399            Montgomery_Coll                                            meet
## 8400            Montgomery_Coll                                          missed
## 8401            Montgomery_Coll                                        optional
## 8402            Montgomery_Coll                                         posting
## 8403            Montgomery_Coll                                       recognize
## 8404            Montgomery_Coll                                      repository
## 8405            Montgomery_Coll                                           worth
## 8406                UWashington                                         student
## 8407               Georgia_Tech                                         website
## 8408                   NYU_DS4E                                           learn
## 8409             UniSys_Georgia                                   computational
## 8410             UniSys_Georgia                                           means
## 8411             UniSys_Georgia                                          social
## 8412                      Brown                                          python
## 8413                      UUtah                                        building
## 8414           Washington_State                                         machine
## 8415                        ASU                                          person
## 8416                        ASU                                        resource
## 8417                 UWisconsin                                      regression
## 8418                   UVA_Stat                                   accessibility
## 8419                   UVA_Stat                                      considered
## 8420                   UVA_Stat                                        designed
## 8421                   UVA_Stat                                       knowledge
## 8422                   UVA_Stat                                    mathematical
## 8423                   UVA_Stat                                        provided
## 8424                   UVA_Stat                                          system
## 8425                  Princeton                                          friday
## 8426  UWisc_Madison_Programming                                            read
## 8427                 UWisconsin                                         advised
## 8428                 UWisconsin                                         attempt
## 8429                 UWisconsin                                          binary
## 8430                 UWisconsin                                       davenport
## 8431                 UWisconsin                                    examinations
## 8432                 UWisconsin                                         execute
## 8433                 UWisconsin                                         harvard
## 8434                 UWisconsin                                         manning
## 8435                 UWisconsin                                           nosql
## 8436                 UWisconsin                                          studio
## 8437                       CUNY                                         applied
## 8438                       CUNY                                         dataset
## 8439                       CUNY                                        evaluate
## 8440                       CUNY                                     fundamental
## 8441                       CUNY                                       homeworks
## 8442                       CUNY                                  interpretation
## 8443                       CUNY                                       introduce
## 8444                       CUNY                                          method
## 8445                       CUNY                                          pandas
## 8446                       CUNY                                            zoom
## 8447                      UUtah                                    arrangements
## 8448                      UUtah                                            deep
## 8449                      UUtah                                        directly
## 8450                      UUtah                                          gender
## 8451                      UUtah                                            lead
## 8452                      UUtah                                         purpose
## 8453             UniSys_Georgia                                           tools
## 8454            Montgomery_Coll                                        addition
## 8455            Montgomery_Coll                                      department
## 8456            Montgomery_Coll                                           scale
## 8457                    UVA_SDS                                           align
## 8458                    UVA_SDS                                    appreciation
## 8459                    UVA_SDS                                          collab
## 8460                    UVA_SDS                                      completely
## 8461                    UVA_SDS                                        contacts
## 8462                    UVA_SDS                                           cycle
## 8463                    UVA_SDS                                          device
## 8464                    UVA_SDS                                            door
## 8465                    UVA_SDS                                           ebook
## 8466                    UVA_SDS                                         element
## 8467                    UVA_SDS                                       explained
## 8468                    UVA_SDS                                           falls
## 8469                    UVA_SDS                                          humans
## 8470                    UVA_SDS                                          images
## 8471                    UVA_SDS                                         ipython
## 8472                    UVA_SDS                                         journal
## 8473                    UVA_SDS                                      laboratory
## 8474                    UVA_SDS                                      leveraging
## 8475                    UVA_SDS                                        maximize
## 8476                    UVA_SDS                                              mc
## 8477                    UVA_SDS                                       operation
## 8478                    UVA_SDS                                        password
## 8479                    UVA_SDS                                           piece
## 8480                    UVA_SDS                                      professors
## 8481                    UVA_SDS                                      progresses
## 8482                    UVA_SDS                                         quickly
## 8483                    UVA_SDS                                          rafael
## 8484                    UVA_SDS                                         revised
## 8485                    UVA_SDS                                          scales
## 8486                    UVA_SDS                                        selected
## 8487                    UVA_SDS                                          serves
## 8488                    UVA_SDS                                          simply
## 8489                    UVA_SDS                                         smarter
## 8490                    UVA_SDS                                          spirit
## 8491                    UVA_SDS                                          steven
## 8492                    UVA_SDS                                    supplemental
## 8493                    UVA_SDS                                   technological
## 8494                    UVA_SDS                                              tu
## 8495                    UVA_SDS                                      ultimately
## 8496                    UVA_SDS                                        watching
## 8497                   NYU_DS4E                                            test
## 8498                    UIU_207                                      activities
## 8499                    UIU_207                                          grades
## 8500                    UIU_207                                            late
## 8501                    UIU_207                                           notes
## 8502     UWisc_Madison_Modeling                                          expect
## 8503     UWisc_Madison_Modeling                                         explain
## 8504     UWisc_Madison_Modeling                                      management
## 8505     UWisc_Madison_Modeling                                        multiple
## 8506                 UWisconsin                                     application
## 8507                 UWisconsin                                            post
## 8508               Georgia_Tech                                         central
## 8509               Georgia_Tech                                        elements
## 8510               Georgia_Tech                                        meetings
## 8511               Georgia_Tech                                          modern
## 8512               Georgia_Tech                                             pdf
## 8513               Georgia_Tech                                          theory
## 8514                        ASU                                      university
## 8515                    Harvard                                          grades
## 8516                    Harvard                                           staff
## 8517                    Cornell                                      activities
## 8518                    Cornell                                          credit
## 8519                    UZurich                                       practical
## 8520                    UZurich                                        sessions
## 8521                    UZurich                                         systems
## 8522                 UCBerkeley                                         lecture
## 8523           William_and_Mary                                  dimensionality
## 8524           William_and_Mary                                              ds
## 8525           William_and_Mary                                       reduction
## 8526           William_and_Mary                                           trees
## 8527           William_and_Mary                                  visualizations
## 8528           Washington_State                                    additionally
## 8529           Washington_State                                         advisor
## 8530           Washington_State                                           anand
## 8531           Washington_State                                            apps
## 8532           Washington_State                                           avrim
## 8533           Washington_State                                            blum
## 8534           Washington_State                                   brainstorming
## 8535           Washington_State                                         breadth
## 8536           Washington_State                                         carries
## 8537           Washington_State                                      conclusion
## 8538           Washington_State                                        course's
## 8539           Washington_State                                        customer
## 8540           Washington_State                                          domain
## 8541           Washington_State                                           draft
## 8542           Washington_State                                      eigenvalue
## 8543           Washington_State                                      electrical
## 8544           Washington_State                                       expertise
## 8545           Washington_State                                      extraction
## 8546           Washington_State                                          facing
## 8547           Washington_State                                         fawcett
## 8548           Washington_State                                            firm
## 8549           Washington_State                                         fitting
## 8550           Washington_State                                        frequent
## 8551           Washington_State                                         growing
## 8552           Washington_State                                             han
## 8553           Washington_State                                         handled
## 8554           Washington_State                                         heavily
## 8555           Washington_State                                          highly
## 8556           Washington_State                                        hopcroft
## 8557           Washington_State                                       inspiring
## 8558           Washington_State                                        interact
## 8559           Washington_State                                            jian
## 8560           Washington_State                                          jiawei
## 8561           Washington_State                                            jure
## 8562           Washington_State                                          kamber
## 8563           Washington_State                                          kannan
## 8564           Washington_State                                           kevin
## 8565           Washington_State                                         listing
## 8566           Washington_State                                       micheline
## 8567           Washington_State                                             min
## 8568           Washington_State                                          murphy
## 8569           Washington_State                                             pei
## 8570           Washington_State                                     percentages
## 8571           Washington_State                                      philosophy
## 8572           Washington_State                                          portal
## 8573           Washington_State                                   probabilistic
## 8574           Washington_State                                         rapidly
## 8575           Washington_State                                       registrar
## 8576           Washington_State                                        relating
## 8577           Washington_State                                         samples
## 8578           Washington_State                                           scrap
## 8579           Washington_State                                    significance
## 8580           Washington_State                                    supplemented
## 8581           Washington_State                                          trevor
## 8582           Washington_State                                    university's
## 8583           Washington_State                                           upper
## 8584           Washington_State                                           usage
## 8585           Washington_State                                         violate
## 8586           Washington_State                                        visitors
## 8587           Washington_State                                         welfare
## 8588           Washington_State                                        withdraw
## 8589                     Drexel                                          design
## 8590                    Harvard                                             box
## 8591                    Harvard                                  clarifications
## 8592                    Harvard                                 collaboratively
## 8593                    Harvard                                       correctly
## 8594                    Harvard                                      discovered
## 8595                    Harvard                                      generation
## 8596                    Harvard                                         granted
## 8597                    Harvard                                          manage
## 8598                    Harvard                                         michael
## 8599                    Harvard                                          minute
## 8600                    Harvard                                          modify
## 8601                    Harvard                                          offers
## 8602                    Harvard                                       operating
## 8603                    Harvard                                     programmers
## 8604                    Harvard                                      scientists
## 8605                    Harvard                                           tasks
## 8606                    Harvard                                             tbd
## 8607                    Harvard                                          upload
## 8608                    Harvard                                          volume
## 8609                    Harvard                                           wrong
## 8610                     UMaine                                      university
## 8611                    Rutgers                                           basic
## 8612                     Drexel                                    presentation
## 8613                        UMD                                            home
## 8614                   UToronto                                      analytical
## 8615                   UToronto                                        chapters
## 8616                   UToronto                                    confidential
## 8617                   UToronto                                          ensure
## 8618                   UToronto                                     immediately
## 8619                   UToronto                                       inclusion
## 8620                   UToronto                                            mark
## 8621                   UToronto                                         quizzes
## 8622                   UToronto                                     responsible
## 8623                   UToronto                                          weight
## 8624                   UToronto                                            wide
## 8625                 UWisconsin                                           types
## 8626                        ASU                                     information
## 8627                        LSU                                             3rd
## 8628                        LSU                                  accountability
## 8629                        LSU                                          affect
## 8630                        LSU                                  clarifications
## 8631                        LSU                                            comp
## 8632                        LSU                                          easier
## 8633                        LSU                                          easily
## 8634                        LSU                                        familiar
## 8635                        LSU                                        focusing
## 8636                        LSU                                    intermediate
## 8637                        LSU                                          living
## 8638                        LSU                                       locations
## 8639                        LSU                                         offense
## 8640                        LSU                                       operating
## 8641                        LSU                                         passing
## 8642                        LSU                                     project.org
## 8643                        LSU                                            push
## 8644                        LSU                                     registering
## 8645                        LSU                                      represents
## 8646                        LSU                                            rise
## 8647                        LSU                                         setting
## 8648                        LSU                                       sexuality
## 8649                        LSU                                        supports
## 8650                        LSU                                       temporary
## 8651                        LSU                                         updates
## 8652                        LSU                                       workflows
## 8653                 Boston_Uni                                        practice
## 8654                 Boston_Uni                                           write
## 8655                 Boston_Uni                                           staff
## 8656               USouthampton                                            page
## 8657           Washington_State                                          access
## 8658           Washington_State                                         website
## 8659                 UCSanDiego                                            send
## 8660                 UCSanDiego                                           watch
## 8661                 UCBerkeley                                           world
## 8662                     UMaine                                         allowed
## 8663                     UMaine                                          method
## 8664                     UMaine                                         summary
## 8665                     UMaine                                       textbooks
## 8666                     UMaine                                            type
## 8667                    UIU_107                                          grades
## 8668                    UIU_107                                            late
## 8669                    UIU_107                                           staff
## 8670                     Drexel                                     datascience
## 8671                     Drexel                                       essential
## 8672                    UIU_207                                         faculty
## 8673                    UIU_207                                    instructions
## 8674                    UIU_207                                         jupyter
## 8675                    UIU_207                                           major
## 8676                    UIU_207                                        standard
## 8677                   UToronto                                            time
## 8678                        MIT                                       materials
## 8679                    UVA_SDS                                       decisions
## 8680                    UVA_SDS                                        official
## 8681                      UUtah                                           tools
## 8682                 Boston_Uni                                          python
## 8683                    UIU_207                                      statistics
## 8684                    Harvard                                         jupyter
## 8685                    Harvard                                          school
## 8686  UWisc_Madison_Programming                                         minutes
## 8687                 UCSanDiego                                      considered
## 8688                  UKentucky                                    expectations
## 8689                  UKentucky                                            main
## 8690                  UKentucky                                    manipulation
## 8691                  UKentucky                                           refer
## 8692                  UKentucky                                           topic
## 8693                  UKentucky                                           words
## 8694                    Cornell                                           apply
## 8695                    Cornell                                       submitted
## 8696                   NYU_DS4E                                            draw
## 8697                   NYU_DS4E                                      inferences
## 8698                   NYU_DS4E                                           kinds
## 8699                NYU_IntroDS                                          active
## 8700                NYU_IntroDS                                           added
## 8701                NYU_IntroDS                                     algorithmic
## 8702                NYU_IntroDS                                        analytic
## 8703                NYU_IntroDS                                         chapter
## 8704                NYU_IntroDS                                        covering
## 8705                NYU_IntroDS                                        ensemble
## 8706                NYU_IntroDS                                          inform
## 8707                NYU_IntroDS                                       libraries
## 8708                NYU_IntroDS                                      predictive
## 8709                NYU_IntroDS                                      sufficient
## 8710                    Rutgers                                        evaluate
## 8711                    Rutgers                                       homeworks
## 8712                    Rutgers                                           intro
## 8713                    Rutgers                                           links
## 8714                    Rutgers                                            type
## 8715                        LSU                                          laptop
## 8716                        LSU                                      objectives
## 8717                   UVA_Stat                                        projects
## 8718                   UVA_Stat                                      techniques
## 8719                        LSU                                         project
## 8720           Washington_State                                        describe
## 8721           Washington_State                                           press
## 8722           Washington_State                                      principles
## 8723           Washington_State                                         systems
## 8724                      UUtah                                      activities
## 8725                 UCBerkeley                                         analyze
## 8726                 UCBerkeley                                          format
## 8727                 UCBerkeley                                         request
## 8728                 UCBerkeley                                            site
## 8729           William_and_Mary                                         midterm
## 8730  UWisc_Madison_Programming                                         process
## 8731  UWisc_Madison_Programming                                        provided
## 8732                  Princeton                                      absolutely
## 8733                  Princeton                                   amazonaws.com
## 8734                  Princeton                                           anova
## 8735                  Princeton                                        arranged
## 8736                  Princeton                                         capital
## 8737                  Princeton                                         carries
## 8738                  Princeton                                        clusters
## 8739                  Princeton                                             cnn
## 8740                  Princeton                                        commands
## 8741                  Princeton                                          cran.r
## 8742                  Princeton                                             csv
## 8743                  Princeton                                              de
## 8744                  Princeton                                    discriminant
## 8745                  Princeton                                              dp
## 8746                  Princeton                                           false
## 8747                  Princeton                                       forbidden
## 8748                  Princeton                                          handed
## 8749                  Princeton                                           house
## 8750                  Princeton                                     illustrated
## 8751                  Princeton                                           image
## 8752                  Princeton                                        keywords
## 8753                  Princeton                                          latent
## 8754                  Princeton                                           price
## 8755                  Princeton                                       projected
## 8756                  Princeton                                           quasi
## 8757                  Princeton                                              s3
## 8758                  Princeton                                       schedules
## 8759                  Princeton                                           smith
## 8760                  Princeton                                  transformation
## 8761                  Princeton                                      ultimately
## 8762                  Princeton                                             van
## 8763                  Princeton                                  www.amazon.com
## 8764                  Princeton                                  www.kaggle.com
## 8765                  Princeton                                           www.r
## 8766                    UIU_107                                    instructions
## 8767                    UIU_107                                         solving
## 8768                    UIU_107                                          spring
## 8769                    UIU_107                                           total
## 8770                    UIU_107                                         tuesday
## 8771                        ASU                                         alleged
## 8772                        ASU                                          arrive
## 8773                        ASU                                        benefits
## 8774                        ASU                                           chain
## 8775                        ASU                                           color
## 8776                        ASU                                        courtesy
## 8777                        ASU                                         density
## 8778                        ASU                                      disclaimer
## 8779                        ASU                                    examinations
## 8780                        ASU                                         extreme
## 8781                        ASU                                         federal
## 8782                        ASU                                           floor
## 8783                        ASU                                        identity
## 8784                        ASU                                            laws
## 8785                        ASU                                       locations
## 8786                        ASU                                        national
## 8787                        ASU                                          newton
## 8788                        ASU                                         notions
## 8789                        ASU                                      observance
## 8790                        ASU                                         offices
## 8791                        ASU                                         partial
## 8792                        ASU                                           plots
## 8793                        ASU                                       protected
## 8794                        ASU                                       receiving
## 8795                        ASU                                      registered
## 8796                        ASU                                        reported
## 8797                        ASU                                       residence
## 8798                        ASU                                          safety
## 8799                        ASU                                        strictly
## 8800                        ASU                                    verification
## 8801           Washington_State                                     application
## 8802           Washington_State                                     probability
## 8803                        MIT                                           avoid
## 8804                        MIT                                            copy
## 8805                        MIT                                             key
## 8806                        MIT                                    requirements
## 8807                        LSU                                           found
## 8808                        LSU                                        personal
## 8809                   NYU_DS4E                                           weeks
## 8810                NYU_IntroDS                                        addition
## 8811                NYU_IntroDS                                       exercises
## 8812                      Brown                                     application
## 8813                      Brown                                       exercises
## 8814                      Brown                                            fall
## 8815                      Brown                                           weeks
## 8816           William_and_Mary                                         methods
## 8817           William_and_Mary                                      techniques
## 8818                   UToronto                                          campus
## 8819                   UToronto                                          create
## 8820                   UToronto                                     environment
## 8821                   UToronto                                        services
## 8822                 UCSanDiego                                       submitted
## 8823                        UMD                                           topic
## 8824                        UMD                                          values
## 8825     UWisc_Madison_Modeling                                           notes
## 8826     UWisc_Madison_Modeling                                      regression
## 8827                   NYU_DS4E                                         midterm
## 8828                    Cornell                                           check
## 8829  UWisc_Madison_Programming                                  responsibility
## 8830                 UCSanDiego                                         receive
## 8831                    Cornell                                          entire
## 8832                    Cornell                                            hard
## 8833                    Cornell                                      reasonable
## 8834                    Cornell                                         respond
## 8835                    Cornell                                           title
## 8836                    Cornell                                       violation
## 8837             UniSys_Georgia                                     application
## 8838           William_and_Mary                                         content
## 8839           William_and_Mary                                        modeling
## 8840           William_and_Mary                                            note
## 8841                     Drexel                                             web
## 8842                   UToronto                                          python
## 8843                        ASU                                          basics
## 8844                        ASU                                         faculty
## 8845                   UVA_Stat                                       analyzing
## 8846                   UVA_Stat                                   collaboration
## 8847                   UVA_Stat                                        relevant
## 8848                   UVA_Stat                                        requires
## 8849                   UVA_Stat                                        resource
## 8850                 UWisconsin                                      challenges
## 8851                 UWisconsin                                          ensure
## 8852                 UWisconsin                                   opportunities
## 8853                  Princeton                                      statistics
## 8854  UWisc_Madison_Programming                                          grades
## 8855                     UMaine                                          absent
## 8856                     UMaine                                      applicable
## 8857                     UMaine                                        articles
## 8858                     UMaine                                           avrim
## 8859                     UMaine                                         bagging
## 8860                     UMaine                                            blum
## 8861                     UMaine                                   brainstorming
## 8862                     UMaine                                     coefficient
## 8863                     UMaine                                    construction
## 8864                     UMaine                                             crc
## 8865                     UMaine                                       dismissal
## 8866                     UMaine                                           don’t
## 8867                     UMaine                                          eating
## 8868                     UMaine                                           enter
## 8869                     UMaine                                          forest
## 8870                     UMaine                                           front
## 8871                     UMaine                                           hints
## 8872                     UMaine                                        hopcroft
## 8873                     UMaine                                        interval
## 8874                     UMaine                                     introducing
## 8875                     UMaine                                          kannan
## 8876                     UMaine                                        keyboard
## 8877                     UMaine                                           limit
## 8878                     UMaine                                          marked
## 8879                     UMaine                                          miller
## 8880                     UMaine                                        modified
## 8881                     UMaine                                             nyu
## 8882                     UMaine                                       obtaining
## 8883                     UMaine                                      programmed
## 8884                     UMaine                                          remain
## 8885                     UMaine                                             rvs
## 8886                     UMaine                                        sanction
## 8887                     UMaine                                           scrap
## 8888                     UMaine                                       sequences
## 8889                     UMaine                                         sitting
## 8890                     UMaine                                           smart
## 8891                     UMaine                                       splitting
## 8892                     UMaine                                          steven
## 8893                     UMaine                                          thomas
## 8894                     UMaine                                             thu
## 8895                     UMaine                                         toronto
## 8896                     UMaine                                             tue
## 8897                     UMaine                                    unacceptable
## 8898                     UMaine                                     uncertainty
## 8899                     UMaine                                         warming
## 8900                        UMD                                       admission
## 8901                        UMD                                         culture
## 8902                        UMD                                    descriptions
## 8903                        UMD                                        ensuring
## 8904                        UMD                                     exploration
## 8905                        UMD                                     interaction
## 8906                        UMD                                           items
## 8907                        UMD                                         passing
## 8908                        UMD                                          rubric
## 8909                        UMD                                       uploading
## 8910                  Princeton                                     computation
## 8911                  Princeton                                          impact
## 8912                  Princeton                                       wednesday
## 8913            Montgomery_Coll                                   accessibility
## 8914            Montgomery_Coll                                         classes
## 8915            Montgomery_Coll                                          system
## 8916           Washington_State                                        material
## 8917                  UKentucky                                            week
## 8918                 Boston_Uni                                     acknowledge
## 8919                 Boston_Uni                                            arts
## 8920                 Boston_Uni                                       carefully
## 8921                 Boston_Uni                                          finish
## 8922                 Boston_Uni                                             fun
## 8923                 Boston_Uni                                          google
## 8924                 Boston_Uni                                     interactive
## 8925                 Boston_Uni                                         portion
## 8926                 Boston_Uni                                      relational
## 8927                 Boston_Uni                                        response
## 8928                 Boston_Uni                                       structure
## 8929                 Boston_Uni                                     suggestions
## 8930                 Boston_Uni                                        thursday
## 8931                        UMD                                         student
## 8932                       CUNY                                            book
## 8933                       CUNY                                     computation
## 8934                       CUNY                                     demonstrate
## 8935                       CUNY                                        findings
## 8936                       CUNY                                     inferential
## 8937                       CUNY                                         learned
## 8938                       CUNY                                       practical
## 8939                       CUNY                                      procedures
## 8940                       CUNY                                    professional
## 8941                       CUNY                                           reach
## 8942                       CUNY                                            role
## 8943                       CUNY                                         systems
## 8944                 UWisconsin                                         process
## 8945                      Brown                                           based
## 8946     UWisc_Madison_Modeling                                        approach
## 8947     UWisc_Madison_Modeling                                            form
## 8948     UWisc_Madison_Modeling                                        question
## 8949                  UKentucky                                        analysis
## 8950                        ASU                                          center
## 8951                        ASU                                            note
## 8952                  UKentucky                                          center
## 8953     UWisc_Madison_Modeling                                            exam
## 8954  UWisc_Madison_Programming                                        computer
## 8955            Montgomery_Coll                                         browser
## 8956            Montgomery_Coll                                            chat
## 8957            Montgomery_Coll                                        choosing
## 8958            Montgomery_Coll                                           clean
## 8959            Montgomery_Coll                                        commonly
## 8960            Montgomery_Coll                                     educational
## 8961            Montgomery_Coll                                           excel
## 8962            Montgomery_Coll                                       guarantee
## 8963            Montgomery_Coll                                           happy
## 8964            Montgomery_Coll                                         illness
## 8965            Montgomery_Coll                                          inside
## 8966            Montgomery_Coll                                      integrated
## 8967            Montgomery_Coll                                            miss
## 8968            Montgomery_Coll                                          nature
## 8969            Montgomery_Coll                                         package
## 8970            Montgomery_Coll                                         success
## 8971            Montgomery_Coll                                              uc
## 8972            Montgomery_Coll                                      withdrawal
## 8973               Georgia_Tech                                      conditions
## 8974               Georgia_Tech                                         control
## 8975               Georgia_Tech                                        download
## 8976               Georgia_Tech                                          graphs
## 8977               Georgia_Tech                                    introductory
## 8978               Georgia_Tech                                        logistic
## 8979               Georgia_Tech                                            main
## 8980               Georgia_Tech                                            math
## 8981               Georgia_Tech                                          taught
## 8982                      UUtah                                          campus
## 8983                      UUtah                                     submissions
## 8984                    Harvard                                         midterm
## 8985  UWisc_Madison_Programming                                        semester
## 8986                    UZurich                                           error
## 8987                        UMD                                            life
## 8988                        UMD                                     participate
## 8989                      UUtah                                      documented
## 8990                      UUtah                                          piazza
## 8991                      UUtah                                        training
## 8992                 Boston_Uni                                         courses
## 8993                 Boston_Uni                                      department
## 8994                 Boston_Uni                                            post
## 8995                 Boston_Uni                                       solutions
## 8996                 Boston_Uni                                      submission
## 8997                    UZurich                                           bayes
## 8998                    UZurich                                      conditions
## 8999                    UZurich                                  dimensionality
## 9000                    UZurich                                            loss
## 9001                    UZurich                                       reduction
## 9002                 UWisconsin                                        business
## 9003                 UWisconsin                                             key
## 9004                 UWisconsin                                       textbooks
## 9005                 UWisconsin                                            type
## 9006                   UVA_Stat                                     information
## 9007                    UIU_207                                     statistical
## 9008                 UCSanDiego                                        acquired
## 9009                 UCSanDiego                                      artificial
## 9010                 UCSanDiego                                       attending
## 9011                 UCSanDiego                                          behalf
## 9012                 UCSanDiego                                   clarification
## 9013                 UCSanDiego                                      exhaustive
## 9014                 UCSanDiego                                            faqs
## 9015                 UCSanDiego                                     incompletes
## 9016                 UCSanDiego                                        instance
## 9017                 UCSanDiego                                      invitation
## 9018                 UCSanDiego                                         prevent
## 9019                 UCSanDiego                                        priority
## 9020                 UCSanDiego                                        resubmit
## 9021                 UCSanDiego                                         roughly
## 9022                 UCSanDiego                                          verify
## 9023           Washington_State                                           apply
## 9024           William_and_Mary                                      difference
## 9025           William_and_Mary                                         network
## 9026           William_and_Mary                                      percentage
## 9027           William_and_Mary                                         squares
## 9028           William_and_Mary                                           steps
## 9029           William_and_Mary                                          sunday
## 9030                     Drexel                                        readings
## 9031                     UMaine                                          action
## 9032                     UMaine                                         honesty
## 9033                     UMaine                                             pdf
## 9034                     UMaine                                           press
## 9035                     UMaine                                          theory
## 9036                     Drexel                                      challenges
## 9037                     Drexel                                         library
## 9038                     Drexel                                         mastery
## 9039                     Drexel                                       selection
## 9040                      UUtah                                        activity
## 9041                      UUtah                                      misconduct
## 9042                      UUtah                                          neural
## 9043                      UUtah                                          notice
## 9044                      UUtah                                         private
## 9045                      UUtah                                      respectful
## 9046                      UUtah                                          scikit
## 9047                    UIU_207                                      classmates
## 9048                    UIU_207                                          coding
## 9049                    UIU_207                                            hall
## 9050                    UIU_107                                         midterm
## 9051                  UKentucky                                          expect
## 9052                  UKentucky                                           visit
## 9053                 UCSanDiego                                          access
## 9054                  Princeton                                           notes
## 9055           William_and_Mary                              academicscheduling
## 9056           William_and_Mary                                        adapting
## 9057           William_and_Mary                                     adjustments
## 9058           William_and_Mary                                   agglomerative
## 9059           William_and_Mary                               blackboard.wm.edu
## 9060           William_and_Mary                                        canceled
## 9061           William_and_Mary                                          caused
## 9062           William_and_Mary                                           chats
## 9063           William_and_Mary                                         compute
## 9064           William_and_Mary                                      concurrent
## 9065           William_and_Mary                                     contrasting
## 9066           William_and_Mary                                     cooperation
## 9067           William_and_Mary                                     corrections
## 9068           William_and_Mary                                       coworkers
## 9069           William_and_Mary                                     cwm.zoom.us
## 9070           William_and_Mary                                         data146
## 9071           William_and_Mary                                          dbscan
## 9072           William_and_Mary                                  deanofstudents
## 9073           William_and_Mary                                          devote
## 9074           William_and_Mary                                       diagnosed
## 9075           William_and_Mary                                       diagnosis
## 9076           William_and_Mary                                            disk
## 9077           William_and_Mary                                          editor
## 9078           William_and_Mary                                             ego
## 9079           William_and_Mary                                           exact
## 9080           William_and_Mary                                         exhibit
## 9081           William_and_Mary                                          expert
## 9082           William_and_Mary                                        facstaff
## 9083           William_and_Mary                                           float
## 9084           William_and_Mary                                              fr
## 9085           William_and_Mary                                         frazier
## 9086           William_and_Mary                                              gb
## 9087           William_and_Mary                                      geospatial
## 9088           William_and_Mary                                            gini
## 9089           William_and_Mary                                          guided
## 9090           William_and_Mary                                      headphones
## 9091           William_and_Mary                                             hub
## 9092           William_and_Mary                                     importantly
## 9093           William_and_Mary                                        impurity
## 9094           William_and_Mary                                    inaccuracies
## 9095           William_and_Mary                                 instr_del_catgs
## 9096           William_and_Mary                                        internal
## 9097           William_and_Mary                                       inundated
## 9098           William_and_Mary                                         invited
## 9099           William_and_Mary                               jupyterhub.wm.edu
## 9100           William_and_Mary                                            keen
## 9101           William_and_Mary                                       learn.org
## 9102           William_and_Mary                                        leverage
## 9103           William_and_Mary                                      mailto:sas
## 9104           William_and_Mary                                              mb
## 9105           William_and_Mary                                          memory
## 9106           William_and_Mary                                             met
## 9107           William_and_Mary                                      microphone
## 9108           William_and_Mary                                        minimize
## 9109           William_and_Mary                                             mlp
## 9110           William_and_Mary                                              mo
## 9111           William_and_Mary                                          mobile
## 9112           William_and_Mary                                       motivated
## 9113           William_and_Mary                                          moving
## 9114           William_and_Mary                                          nicely
## 9115           William_and_Mary                                         nuances
## 9116           William_and_Mary                                         overfit
## 9117           William_and_Mary                                      percentile
## 9118           William_and_Mary                                        period's
## 9119           William_and_Mary                                   predominantly
## 9120           William_and_Mary                                     preferences
## 9121           William_and_Mary                                       presently
## 9122           William_and_Mary                                           pride
## 9123           William_and_Mary                                      qualifying
## 9124           William_and_Mary                                        quantile
## 9125           William_and_Mary                                       recurring
## 9126           William_and_Mary                                       remainder
## 9127           William_and_Mary                                     rescheduled
## 9128           William_and_Mary                                         returns
## 9129           William_and_Mary                                              rm
## 9130           William_and_Mary                                             ron
## 9131           William_and_Mary                                            rsof
## 9132           William_and_Mary                                         scatter
## 9133           William_and_Mary                                         shyness
## 9134           William_and_Mary                                       slack.com
## 9135           William_and_Mary                                           snail
## 9136           William_and_Mary                                           solid
## 9137           William_and_Mary                                      spring2021
## 9138           William_and_Mary                                             str
## 9139           William_and_Mary                    studentaccessibilityservices
## 9140           William_and_Mary                                            swem
## 9141           William_and_Mary                                    troubleshoot
## 9142           William_and_Mary                                        uncommon
## 9143           William_and_Mary                                   underestimate
## 9144           William_and_Mary                                     variability
## 9145           William_and_Mary                                         vasiliu
## 9146           William_and_Mary                                       warranted
## 9147           William_and_Mary                                            wise
## 9148                 UCSanDiego                                   collaboration
## 9149  UWisc_Madison_Programming                                        arriving
## 9150  UWisc_Madison_Programming                                            bank
## 9151  UWisc_Madison_Programming                                          behalf
## 9152  UWisc_Madison_Programming                                            cite
## 9153  UWisc_Madison_Programming                                              e1
## 9154  UWisc_Madison_Programming                                              e2
## 9155  UWisc_Madison_Programming                                              e3
## 9156  UWisc_Madison_Programming                                     emergencies
## 9157  UWisc_Madison_Programming                                      engagement
## 9158  UWisc_Madison_Programming                                          happen
## 9159  UWisc_Madison_Programming                                          majors
## 9160  UWisc_Madison_Programming                                      proctoring
## 9161  UWisc_Madison_Programming                                            runs
## 9162  UWisc_Madison_Programming                                      separately
## 9163  UWisc_Madison_Programming                                         trouble
## 9164                     UMaine                                     application
## 9165                     UMaine                                          source
## 9166                    Cornell                                         content
## 9167                    UVA_SDS                                        policies
## 9168                    UVA_SDS                                           study
## 9169                     Drexel                                              3d
## 9170                     Drexel                                         article
## 9171                     Drexel                                          barbie
## 9172                     Drexel                                            beat
## 9173                     Drexel                                       beautiful
## 9174                     Drexel                                          bigger
## 9175                     Drexel                                     bl.ocks.org
## 9176                     Drexel                                           brody
## 9177                     Drexel                                          broken
## 9178                     Drexel                                            bsds
## 9179                     Drexel                                        children
## 9180                     Drexel                                           chris
## 9181                     Drexel                                    deliverables
## 9182                     Drexel                                             dgm
## 9183                     Drexel                                           dolls
## 9184                     Drexel                                            doug
## 9185                     Drexel                                      drexel.edu
## 9186                     Drexel                                       factories
## 9187                     Drexel                                         factory
## 9188                     Drexel                             fivethirtyeight.com
## 9189                     Drexel                                    folksonomies
## 9190                     Drexel                         googleblog.blogspot.com
## 9191                     Drexel                                         hartley
## 9192                     Drexel                                            huge
## 9193                     Drexel                                          hurdle
## 9194                     Drexel                                         illegal
## 9195                     Drexel                                     infographic
## 9196                     Drexel                                    infographics
## 9197                     Drexel                    jakerylandwilliams.github.io
## 9198                     Drexel                                         janitor
## 9199                     Drexel                                             jim
## 9200                     Drexel                                         journey
## 9201                     Drexel                                         judging
## 9202                     Drexel                                           kalid
## 9203                     Drexel                                           laney
## 9204                     Drexel                               leipzig.github.io
## 9205                     Drexel                                           maloy
## 9206                     Drexel                                           manna
## 9207                     Drexel                                         marking
## 9208                     Drexel                                            mozy
## 9209                     Drexel                                        mozy.com
## 9210                     Drexel                                        newshour
## 9211                     Drexel                                             odr
## 9212                     Drexel                                             oed
## 9213                     Drexel                                             pgs
## 9214                     Drexel                                        plzhqobo
## 9215                     Drexel                                   practitioners
## 9216                     Drexel                                        profiles
## 9217                     Drexel                                           pulse
## 9218                     Drexel                                       reception
## 9219                     Drexel                                     reoffending
## 9220                     Drexel                                           roles
## 9221                     Drexel                                           scott
## 9222                     Drexel                                          singel
## 9223                     Drexel                                          street
## 9224                     Drexel                                      taxonomies
## 9225                     Drexel                                           trade
## 9226                     Drexel                                          tricky
## 9227                     Drexel                                        velocity
## 9228                     Drexel                                            wall
## 9229                     Drexel                                           wanna
## 9230                     Drexel                      wtqdpd3mizzm2xvfitgf8he_ab
## 9231                     Drexel                      www.datasciencecentral.com
## 9232                   UToronto                                         chapter
## 9233                   UToronto                                            deep
## 9234                   UToronto                                     mathematics
## 9235                   UToronto                                       permitted
## 9236                   UToronto                                        referred
## 9237                   UToronto                                            seek
## 9238                    UVA_SDS                                       assistant
## 9239                    UVA_SDS                                          driven
## 9240                    UVA_SDS                                            live
## 9241                    UVA_SDS                                            math
## 9242           William_and_Mary                                        semester
## 9243                        LSU                                       classroom
## 9244                        LSU                                  responsibility
## 9245                    Rutgers                                        comments
## 9246                    Rutgers                                         credits
## 9247                    Rutgers                                        elements
## 9248                    Rutgers                                        findings
## 9249                    Rutgers                                          impact
## 9250                    Rutgers                                    professional
## 9251                    Rutgers                                          simple
## 9252                 UCSanDiego                                           meant
## 9253            Montgomery_Coll                                        computer
## 9254  UWisc_Madison_Programming                                        multiple
## 9255                 UCBerkeley                                        advanced
## 9256                 UCBerkeley                                           guide
## 9257                 UCBerkeley                                        networks
## 9258                   UVA_Stat                                          credit
## 9259                  UKentucky                                   announcements
## 9260                  UKentucky                                      definition
## 9261                  UKentucky                                            earn
## 9262                  UKentucky                                          emails
## 9263                  UKentucky                                          ethics
## 9264                  UKentucky                                         message
## 9265                    Harvard                                         explore
## 9266                    Harvard                                        services
## 9267                    Harvard                                        thinking
## 9268           William_and_Mary                                         discuss
## 9269           Washington_State                                           study
## 9270                      UUtah                                       resources
## 9271                    UIU_107                                          choose
## 9272                    UIU_107                                      classmates
## 9273                    UIU_107                                         dataset
## 9274                    UIU_107                                       scheduled
## 9275                   NYU_DS4E                                          review
## 9276                        LSU                                     environment
## 9277                NYU_IntroDS                                        calendar
## 9278                NYU_IntroDS                                      clustering
## 9279                NYU_IntroDS                                           hands
## 9280                NYU_IntroDS                                         sharing
## 9281                NYU_IntroDS                                           short
## 9282                      Brown                                        calendar
## 9283                      Brown                                      clustering
## 9284                      Brown                                           goals
## 9285                      Brown                                           model
## 9286           Washington_State                                  dimensionality
## 9287           Washington_State                                      reasonable
## 9288           Washington_State                                       reduction
## 9289           Washington_State                                           trees
## 9290                     UMaine                                        syllabus
## 9291                    UIU_207                                            code
## 9292                  UKentucky                                         5.2.4.2
## 9293                  UKentucky                                          acumen
## 9294                  UKentucky                                          alumni
## 9295                  UKentucky                                           apple
## 9296                  UKentucky                                        athletic
## 9297                  UKentucky                                    availability
## 9298                  UKentucky                                            bill
## 9299                  UKentucky                                        birthday
## 9300                  UKentucky                                       bookstore
## 9301                  UKentucky                                        browsers
## 9302                  UKentucky                                           calls
## 9303                  UKentucky                                      cantagallo
## 9304                  UKentucky                                           carla
## 9305                  UKentucky                                      ci.uky.edu
## 9306                  UKentucky                                    complexities
## 9307                  UKentucky                                    complication
## 9308                  UKentucky                                         compose
## 9309                  UKentucky                                       concisely
## 9310                  UKentucky                                       continues
## 9311                  UKentucky                                       courteous
## 9312                  UKentucky                                        curating
## 9313                  UKentucky                                        curation
## 9314                  UKentucky                                           death
## 9315                  UKentucky                                         decorum
## 9316                  UKentucky                                         default
## 9317                  UKentucky                                    developments
## 9318                  UKentucky                                    disbursement
## 9319                  UKentucky                                       discourse
## 9320                  UKentucky                                distancelearning
## 9321                  UKentucky                                       divisions
## 9322                  UKentucky                                            dlls
## 9323                  UKentucky                                      dllservice
## 9324                  UKentucky                                       documents
## 9325                  UKentucky                                         drawing
## 9326                  UKentucky                                           drill
## 9327                  UKentucky                                            duty
## 9328                  UKentucky                                   email.uky.edu
## 9329                  UKentucky                                           enjoy
## 9330                  UKentucky                                      excursions
## 9331                  UKentucky                                             ext
## 9332                  UKentucky                                              gi
## 9333                  UKentucky                                             gym
## 9334                  UKentucky                                        helpdesk
## 9335                  UKentucky                                 intercollegiate
## 9336                  UKentucky                                    interlibrary
## 9337                  UKentucky                                     investigate
## 9338                  UKentucky                                          istpub
## 9339                  UKentucky                                          itunes
## 9340                  UKentucky                                    iweb.uky.edu
## 9341                  UKentucky                                         jkarnes
## 9342                  UKentucky                                            king
## 9343                  UKentucky                                          lastly
## 9344                  UKentucky                                     libpage.php
## 9345                  UKentucky                                         llib_id
## 9346                  UKentucky                                            loan
## 9347                  UKentucky                                          luther
## 9348                  UKentucky                                         lweb_id
## 9349                  UKentucky                                          martin
## 9350                  UKentucky                                      msdownload
## 9351                  UKentucky                                           night
## 9352                  UKentucky                                   nonattendance
## 9353                  UKentucky                                    organization
## 9354                  UKentucky                                         overdue
## 9355                  UKentucky                                      paragraphs
## 9356                  UKentucky                                    policies.pdf
## 9357                  UKentucky                                            pose
## 9358                  UKentucky                                              pp
## 9359                  UKentucky                                    preservation
## 9360                  UKentucky                                      preserving
## 9361                  UKentucky                                        pressure
## 9362                  UKentucky                                      provenance
## 9363                  UKentucky                                         queries
## 9364                  UKentucky                                     reflections
## 9365                  UKentucky                                        reliable
## 9366                  UKentucky                                       scripting
## 9367                  UKentucky                                             sis
## 9368                  UKentucky                                            slis
## 9369                  UKentucky                                 surface.syr.edu
## 9370                  UKentucky                                          thread
## 9371                  UKentucky                                           trips
## 9372                  UKentucky                              uk.instructure.com
## 9373                  UKentucky                                          varies
## 9374                  UKentucky                                          worthy
## 9375                  UKentucky                                   youngseek.kim
## 9376                        MIT                                      extensions
## 9377                        MIT                                            john
## 9378                        MIT                                      permission
## 9379                        MIT                                            plan
## 9380                        MIT                                            quiz
## 9381                        MIT                                             run
## 9382                        MIT                                        strongly
## 9383                        MIT                                   undergraduate
## 9384               Georgia_Tech                                         machine
## 9385                       CUNY                                           exams
## 9386                       CUNY                                        language
## 9387                   UToronto                                           basic
## 9388                   UToronto                                         midterm
## 9389                   UToronto                                       resources
## 9390             UniSys_Georgia                                      clustering
## 9391             UniSys_Georgia                                           error
## 9392             UniSys_Georgia                                           goals
## 9393             UniSys_Georgia                                           hands
## 9394             UniSys_Georgia                                       inference
## 9395             UniSys_Georgia                                         privacy
## 9396             UniSys_Georgia                                         process
## 9397  UWisc_Madison_Programming                                          result
## 9398                   NYU_DS4E                                        holidays
## 9399                   NYU_DS4E                                        informed
## 9400                   NYU_DS4E                                          listed
## 9401                   NYU_DS4E                                            miss
## 9402                   NYU_DS4E                                         outline
## 9403                NYU_IntroDS                                       answering
## 9404                NYU_IntroDS                                     categorical
## 9405                NYU_IntroDS                                          covers
## 9406                NYU_IntroDS                                       dependent
## 9407                NYU_IntroDS                                        holidays
## 9408                NYU_IntroDS                                         improve
## 9409                NYU_IntroDS                                        incident
## 9410                NYU_IntroDS                                          manual
## 9411                NYU_IntroDS                                        mckinney
## 9412                NYU_IntroDS                                       neighbors
## 9413                NYU_IntroDS                                      scientific
## 9414                NYU_IntroDS                                       student’s
## 9415                NYU_IntroDS                                    successfully
## 9416                NYU_IntroDS                                             wes
## 9417                        LSU                                            code
## 9418     UWisc_Madison_Modeling                                         midterm
## 9419                    Harvard                                         machine
## 9420                 Boston_Uni                                            time
## 9421                UWashington                                          grades
## 9422                UWashington                                      regression
## 9423                UWashington                                          skills
## 9424                        UMD                                       inclusion
## 9425                        UMD                                         library
## 9426                        UMD                                         quizzes
## 9427                      UUtah                                          pandas
## 9428  UWisc_Madison_Programming                                      submission
## 9429                 UWisconsin                                      encourages
## 9430                 UWisconsin                                      predicting
## 9431                 UWisconsin                                         smarter
## 9432                 UWisconsin                                           teach
## 9433                 UWisconsin                                          thomas
## 9434                 UWisconsin                                          week's
## 9435                   UVA_Stat                                           guide
## 9436                   UVA_Stat                                    instructions
## 9437                   UVA_Stat                                         jupyter
## 9438                   UVA_Stat                                        solution
## 9439                     Drexel                                         provost
## 9440                     Drexel                                           story
## 9441                        ASU                                      assessment
## 9442                        ASU                                   circumstances
## 9443                        ASU                                       classroom
## 9444                        ASU                                  responsibility
## 9445                     Drexel                                             pdf
## 9446                    Cornell                                          emails
## 9447                    Cornell                                     immediately
## 9448                    Cornell                                      percentage
## 9449                    Cornell                                     predictions
## 9450                    Cornell                                         service
## 9451                    UIU_107                                            code
## 9452            Montgomery_Coll                                        internet
## 9453            Montgomery_Coll                                            code
## 9454            Montgomery_Coll                                         contact
## 9455                  Princeton                                            sets
## 9456                        UMD                                       knowledge
## 9457                        UMD                                           model
## 9458                 UWisconsin                                      management
## 9459                    Cornell                                            171s
## 9460                    Cornell                                            2sam
## 9461                    Cornell                                            2spm
## 9462                    Cornell                                            35pm
## 9463                    Cornell                                            3spm
## 9464                    Cornell                                           abide
## 9465                    Cornell                                           adapt
## 9466                    Cornell                                      admissions
## 9467                    Cornell                                       affecting
## 9468                    Cornell                                      appearance
## 9469                    Cornell                                         athlete
## 9470                    Cornell                                       athletics
## 9471                    Cornell                                         barring
## 9472                    Cornell                                          belong
## 9473                    Cornell                                        benjamin
## 9474                    Cornell                                           built
## 9475                    Cornell                                        category
## 9476                    Cornell                           counseling:psychiatry
## 9477                    Cornell                                     dacasupport
## 9478                    Cornell                                        deducted
## 9479                    Cornell                                       difficult
## 9480                    Cornell                                 dos.cornell.edu
## 9481                    Cornell                                       equitable
## 9482                    Cornell                                       ethically
## 9483                    Cornell                                         evening
## 9484                    Cornell                                          failed
## 9485                    Cornell                                           faith
## 9486                    Cornell                                       forwarded
## 9487                    Cornell                                           gates
## 9488                    Cornell                                          hardin
## 9489                    Cornell                                         harness
## 9490                    Cornell                              health.cornell.edu
## 9491                    Cornell                                         helpers
## 9492                    Cornell                                       highlight
## 9493                    Cornell                                         inf0295
## 9494                    Cornell                                         is:ssam
## 9495                    Cornell                                      legitimate
## 9496                    Cornell                                      mistakenly
## 9497                    Cornell                                       openlntro
## 9498                    Cornell                                        packaged
## 9499                    Cornell                                       pragmatic
## 9500                    Cornell                                        prevents
## 9501                    Cornell                                        promotes
## 9502                    Cornell                                        proposed
## 9503                    Cornell                                        recycled
## 9504                    Cornell                                         relying
## 9505                    Cornell                                          reused
## 9506                    Cornell                                         reusing
## 9507                    Cornell                                 sds.cornell.edu
## 9508                    Cornell                                          slower
## 9509                    Cornell                                         soltoff
## 9510                    Cornell                                       soltoff's
## 9511                    Cornell                                            sspm
## 9512                    Cornell                                         telling
## 9513                    Cornell                                              tl
## 9514                    Cornell                               university_policy
## 9515                    Cornell                                         varsity
## 9516                    Cornell                                          waiver
## 9517                        ASU                                          campus
## 9518                  Princeton                                  dimensionality
## 9519                  Princeton                                       numerical
## 9520                  Princeton                                        training
## 9521                  UKentucky                                         related
## 9522                  UKentucky                                        services
## 9523                   NYU_DS4E                                         learned
## 9524     UWisc_Madison_Modeling                                    applications
## 9525     UWisc_Madison_Modeling                                          friday
## 9526  UWisc_Madison_Programming                                          python
## 9527                 UCSanDiego                                          grades
## 9528                    Harvard                                          adhere
## 9529                    Harvard                                           admin
## 9530                    Harvard                                  administration
## 9531                    Harvard                                           chang
## 9532                    Harvard                                             chu
## 9533                    Harvard                                   clarification
## 9534                    Harvard                                    connectivity
## 9535                    Harvard                                        controls
## 9536                    Harvard                                         demands
## 9537                    Harvard                                           draft
## 9538                    Harvard                                      extraction
## 9539                    Harvard                                         fellows
## 9540                    Harvard                                       incorrect
## 9541                    Harvard                                  infrastructure
## 9542                    Harvard                                       intensive
## 9543                    Harvard                                          intent
## 9544                    Harvard                                             lee
## 9545                    Harvard                                           lower
## 9546                    Harvard                                          object
## 9547                    Harvard                                        oriented
## 9548                    Harvard                                      proctoring
## 9549                    Harvard                                       refresher
## 9550                    Harvard                                       regrading
## 9551                    Harvard                                         satisfy
## 9552                    Harvard                                      separately
## 9553                    Harvard                                           speak
## 9554                    Harvard                                  specifications
## 9555                    Harvard                                           takes
## 9556                    Harvard                                           touch
## 9557                     Drexel                                        policies
## 9558           William_and_Mary                                        networks
## 9559           William_and_Mary                                          spring
## 9560           William_and_Mary                                           types
## 9561                       CUNY                                         address
## 9562                       CUNY                                          assess
## 9563                       CUNY                                     effectively
## 9564                       CUNY                                          effort
## 9565                       CUNY                                          graphs
## 9566                       CUNY                                            math
## 9567                       CUNY                                       numerical
## 9568                       CUNY                                          tables
## 9569                        LSU                                    introduction
## 9570                    UIU_207                                         discuss
## 9571                    UIU_207                                         website
## 9572                 UWisconsin                                      predictive
## 9573                        LSU                                         adopted
## 9574                        LSU                                        affected
## 9575                        LSU                                        analyses
## 9576                        LSU                                          assure
## 9577                        LSU                                        combines
## 9578                        LSU                                     complicated
## 9579                        LSU                                         decades
## 9580                        LSU                                          domain
## 9581                        LSU                                en.wikipedia.org
## 9582                        LSU                                         extract
## 9583                        LSU                                            fine
## 9584                        LSU                                        finished
## 9585                        LSU                                          gather
## 9586                        LSU                                          honors
## 9587                        LSU                                          hosted
## 9588                        LSU                                             ide
## 9589                        LSU                                         ideally
## 9590                        LSU                               interdisciplinary
## 9591                        LSU                                            lots
## 9592                        LSU                                        markdown
## 9593                        LSU                                           minus
## 9594                        LSU                                           mixed
## 9595                        LSU                                     nationality
## 9596                        LSU                                        opinions
## 9597                        LSU                                       organized
## 9598                        LSU                                         outcome
## 9599                        LSU                                            pace
## 9600                        LSU                                       permanent
## 9601                        LSU                                        positive
## 9602                        LSU                                      progresses
## 9603                        LSU                                        pronouns
## 9604                        LSU                                         rapidly
## 9605                        LSU                                         recover
## 9606                        LSU                                       searching
## 9607                        LSU                                       statistic
## 9608                        LSU                                       suspected
## 9609                        LSU                                              tu
## 9610                        LSU                                    unacceptable
## 9611                        LSU                                   uncomfortable
## 9612                        LSU                                         unusual
## 9613                        LSU                                            wait
## 9614                        LSU                                         warming
## 9615                        LSU                                          wealth
## 9616                        LSU                                            wiki
## 9617                        LSU                                           www.r
## 9618                        LSU                                 www.rstudio.com
## 9619                 Boston_Uni                                      attendance
## 9620                 Boston_Uni                                      clustering
## 9621                 Boston_Uni                                            sets
## 9622                NYU_IntroDS                                      techniques
## 9623                      Brown                                      techniques
## 9624                        UMD                                        business
## 9625                        UMD                                        requests
## 9626                        UMD                                  responsibility
## 9627                 UWisconsin                                         project
## 9628                    Cornell                                         discuss
## 9629               USouthampton                                        modeling
## 9630                 UWisconsin                                      procedures
## 9631                 UWisconsin                                            role
## 9632                 UCBerkeley                                         support
## 9633               Georgia_Tech                                           event
## 9634               Georgia_Tech                                        function
## 9635               Georgia_Tech                                          hastie
## 9636               Georgia_Tech                                            mark
## 9637               Georgia_Tech                                           power
## 9638               Georgia_Tech                                       selection
## 9639               Georgia_Tech                                      tibshirani
## 9640               Georgia_Tech                                           watch
## 9641             UniSys_Georgia                                          models
## 9642             UniSys_Georgia                                      techniques
## 9643                 UWisconsin                                         content
## 9644                 Boston_Uni                                          linear
## 9645                 Boston_Uni                                   participation
## 9646                      Brown                                           world
## 9647                 Boston_Uni                                           bonus
## 9648                 Boston_Uni                                           break
## 9649                 Boston_Uni                                   communicating
## 9650                 Boston_Uni                                   comprehensive
## 9651                 Boston_Uni                                         descent
## 9652                 Boston_Uni                                           doubt
## 9653                 Boston_Uni                                            fill
## 9654                 Boston_Uni                                        handling
## 9655                 Boston_Uni                                    interpreting
## 9656                 Boston_Uni                                            isbn
## 9657                 Boston_Uni                                        mckinney
## 9658                 Boston_Uni                                       messaging
## 9659                 Boston_Uni                                            miss
## 9660                 Boston_Uni                                    multivariate
## 9661                 Boston_Uni                                       requiring
## 9662                 Boston_Uni                                           ridge
## 9663                 Boston_Uni                                     simulations
## 9664                 Boston_Uni                                             sql
## 9665                 Boston_Uni                                      strategies
## 9666                 Boston_Uni                                      violations
## 9667                 Boston_Uni                                             wes
## 9668                      UUtah                                      guidelines
## 9669                      UUtah                                           media
## 9670                    UZurich                                      continuous
## 9671                    UZurich                                            rule
## 9672                    UZurich                                            view
## 9673                  UKentucky                                           total
## 9674     UWisc_Madison_Modeling                                        concepts
## 9675                     UMaine                                           error
## 9676                     UMaine                                       variables
## 9677                    UIU_107                                         discuss
## 9678                    UIU_207                                       analytics
## 9679                    UIU_207                                      foundation
## 9680                    UIU_207                                         primary
## 9681                    UIU_207                                    specifically
## 9682                 UCSanDiego                                            test
## 9683                    Cornell                                          graded
## 9684                    UVA_SDS                                           focus
## 9685                     UMaine                                           bayes
## 9686                     UMaine                                        sampling
## 9687                     UMaine                                     significant
## 9688                     UMaine                                          values
## 9689                        MIT                                        textbook
## 9690                      UUtah                                         anxiety
## 9691                      UUtah                                             cda
## 9692                      UUtah                                            cops
## 9693                      UUtah                                           couid
## 9694                      UUtah                                      depression
## 9695                      UUtah                                        doctor's
## 9696                      UUtah                                       etiquette
## 9697                      UUtah                                     familiarize
## 9698                      UUtah                                    holistically
## 9699                      UUtah                                     immigration
## 9700                      UUtah                                           messy
## 9701                      UUtah                                           olpin
## 9702                      UUtah                         studentaffairs.utah.edu
## 9703                    UZurich                                 backpropagation
## 9704                    UZurich                                    backtracking
## 9705                    UZurich                                        backward
## 9706                    UZurich                                           balls
## 9707                    UZurich                                           batch
## 9708                    UZurich                                          bengio
## 9709                    UZurich                                       bernoulli
## 9710                    UZurich                                        binomial
## 9711                    UZurich                                         breiman
## 9712                    UZurich                                            buzz
## 9713                    UZurich                                  characteristic
## 9714                    UZurich                                         concern
## 9715                    UZurich                                     convolution
## 9716                    UZurich                                      correcting
## 9717                    UZurich                                       courville
## 9718                    UZurich                                        cultures
## 9719                    UZurich                                    definiteness
## 9720                    UZurich                                        deriving
## 9721                    UZurich                                       detecting
## 9722                    UZurich                                       deviation
## 9723                    UZurich                                  differentiable
## 9724                    UZurich                                 differentiating
## 9725                    UZurich                                      dimensions
## 9726                    UZurich                                       direction
## 9727                    UZurich                                  disctributions
## 9728                    UZurich                                   dissimilarity
## 9729                    UZurich                                         dropout
## 9730                    UZurich                                           dying
## 9731                    UZurich                                      eigenfaces
## 9732                    UZurich                                        encoding
## 9733                    UZurich                                         entropy
## 9734                    UZurich                                       estimates
## 9735                    UZurich                                       euclidean
## 9736                    UZurich                                       evolution
## 9737                    UZurich                                         extrema
## 9738                    UZurich                                        flavours
## 9739                    UZurich                                  generalisation
## 9740                    UZurich                                       ggradient
## 9741                    UZurich                                      goodfellow
## 9742                    UZurich                                       gradually
## 9743                    UZurich                                            grid
## 9744                    UZurich                                           hacks
## 9745                    UZurich                                     handwritten
## 9746                    UZurich                                             hot
## 9747                    UZurich                                 hyperparameters
## 9748                    UZurich                                        increase
## 9749                    UZurich                                    inequalities
## 9750                    UZurich                                    initialising
## 9751                    UZurich                                       iterative
## 9752                    UZurich                                     iteratively
## 9753                    UZurich                                        jacobian
## 9754                    UZurich                                          karush
## 9755                    UZurich                                           keras
## 9756                    UZurich                                            kuhn
## 9757                    UZurich                                           label
## 9758                    UZurich                                      lagrangian
## 9759                    UZurich                                          layers
## 9760                    UZurich                                           leaky
## 9761                    UZurich                                    learderboard
## 9762                    UZurich                                        linearly
## 9763                    UZurich                                         linkage
## 9764                    UZurich                                          margin
## 9765                    UZurich                                       measuring
## 9766                    UZurich                                          mercer
## 9767                    UZurich                                            mini
## 9768                    UZurich                                      minimising
## 9769                    UZurich                                           mnist
## 9770                    UZurich                                             msc
## 9771                    UZurich                                multidimensional
## 9772                    UZurich                                     multipliers
## 9773                    UZurich                                          mutual
## 9774                    UZurich                                            nets
## 9775                    UZurich                                         nielsen
## 9776                    UZurich                                            norm
## 9777                    UZurich                                           norms
## 9778                    UZurich                                        operator
## 9779                    UZurich                                          optima
## 9780                    UZurich                                      optimality
## 9781                    UZurich                                      optimising
## 9782                    UZurich                                         origins
## 9783                    UZurich                                       outlliers
## 9784                    UZurich                                       paramters
## 9785                    UZurich                                     perceptrons
## 9786                    UZurich                                             phd
## 9787                    UZurich                                       polyhedra
## 9788                    UZurich                                         pooling
## 9789                    UZurich                                         premise
## 9790                    UZurich                                          primal
## 9791                    UZurich                                         proving
## 9792                    UZurich                                             psd
## 9793                    UZurich                                   quadratically
## 9794                    UZurich                                          radial
## 9795                    UZurich                                        receiver
## 9796                    UZurich                                     recognition
## 9797                    UZurich                                       rectified
## 9798                    UZurich                                           rsita
## 9799                    UZurich                                      saturation
## 9800                    UZurich                                     sensitivity
## 9801                    UZurich                                       separable
## 9802                    UZurich                                       shrinkage
## 9803                    UZurich                                         sigmoid
## 9804                    UZurich                                           sitas
## 9805                    UZurich                                          spaces
## 9806                    UZurich                                     specificity
## 9807                    UZurich                                        spectral
## 9808                    UZurich                                        steepest
## 9809                    UZurich                                        stepwise
## 9810                    UZurich                                        stopping
## 9811                    UZurich                                          string
## 9812                    UZurich                                   supplementary
## 9813                    UZurich                                          taylor
## 9814                    UZurich                                           trick
## 9815                    UZurich                                          tucker
## 9816                    UZurich                                           tukey
## 9817                    UZurich                                             uzh
## 9818                    UZurich                                    vandenberghe
## 9819                    UZurich                                       vanishing
## 9820                    UZurich                                           views
## 9821                    UZurich                                         wrapper
## 9822                    UZurich                                          zurich
## 9823                    UZurich                                          zürich
## 9824                    UZurich                                       zürichuzh
## 9825                    Harvard                                       analytics
## 9826                    Harvard                                      foundation
## 9827                    Harvard                                        official
## 9828                    Harvard                                      permission
## 9829                    Harvard                                            quiz
## 9830                   NYU_DS4E                                        practice
## 9831                        LSU                                        comments
## 9832                        LSU                                             e.g
## 9833                        LSU                                            plan
## 9834                        LSU                                          result
## 9835           William_and_Mary                                        emphasis
## 9836                        ASU                                            10th
## 9837                        ASU                                             8th
## 9838                        ASU                                          agents
## 9839                        ASU                                       assaulted
## 9840                        ASU                                         awarded
## 9841                        ASU                                      classrooms
## 9842                        ASU                                    combinations
## 9843                        ASU                                       contained
## 9844                        ASU                                         contour
## 9845                        ASU                                          dating
## 9846                        ASU                                              de
## 9847                        ASU                                      deliberate
## 9848                        ASU                                      derivative
## 9849                        ASU                                     derivatives
## 9850                        ASU                                       dismissal
## 9851                        ASU                                      distancing
## 9852                        ASU                                          eating
## 9853                        ASU                                      encourages
## 9854                        ASU                                            faqs
## 9855                        ASU                                         genetic
## 9856                        ASU                                      guaranteed
## 9857                        ASU                                       incidents
## 9858                        ASU                                      laboratory
## 9859                        ASU                                           light
## 9860                        ASU                                       listening
## 9861                        ASU                                           minus
## 9862                        ASU                                     observances
## 9863                        ASU                                     orientation
## 9864                        ASU                                        o’reilly
## 9865                        ASU                                            path
## 9866                        ASU                                         pearson
## 9867                        ASU                                          police
## 9868                        ASU                                           posed
## 9869                        ASU                                           poses
## 9870                        ASU                                         reached
## 9871                        ASU                                    registration
## 9872                        ASU                                             rvs
## 9873                        ASU                                          scales
## 9874                        ASU                                            soft
## 9875                        ASU                                  studentaffairs
## 9876                        ASU                                        underpin
## 9877                        ASU                                         welfare
## 9878                    Harvard                                      submission
## 9879                 UCBerkeley                                           files
## 9880                 UCBerkeley                                            type
## 9881                   NYU_DS4E                                      statistics
## 9882                    Rutgers                                          assess
## 9883                    Rutgers                                           cover
## 9884                    Rutgers                                          direct
## 9885                    Rutgers                                         finding
## 9886                    Rutgers                                        graduate
## 9887                    Rutgers                                    introductory
## 9888                    Rutgers                                            math
## 9889                    Rutgers                                    quantitative
## 9890                    Rutgers                                     significant
## 9891                    Rutgers                                         special
## 9892                    Rutgers                                          taught
## 9893                    Rutgers                                    technologies
## 9894                    Rutgers                                           video
## 9895           Washington_State                                        building
## 9896                        LSU                                      technology
## 9897                    UVA_SDS                                         mastery
## 9898                    UVA_SDS                                          people
## 9899                    UVA_SDS                                            term
## 9900                      Brown                                        building
## 9901                      Brown                                           ideas
## 9902                      Brown                                        relevant
## 9903            Montgomery_Coll                                          grades
## 9904                       CUNY                                        projects
## 9905                   UVA_Stat                                      experience
## 9906                   UToronto                                          attend
## 9907                       CUNY                                     programming
## 9908                    UIU_107                                      assistance
## 9909                    UIU_107                                     computation
## 9910                    UIU_107                                        features
## 9911                    UIU_107                                        findings
## 9912                    UIU_107                                          impact
## 9913                    UIU_107                                    specifically
## 9914                    UIU_107                                        strongly
## 9915                    UIU_107                                       wednesday
## 9916            Montgomery_Coll                                          arises
## 9917            Montgomery_Coll                                          assist
## 9918            Montgomery_Coll                                         catalog
## 9919            Montgomery_Coll                                        distance
## 9920            Montgomery_Coll                                      electronic
## 9921            Montgomery_Coll                                         history
## 9922            Montgomery_Coll                                     implemented
## 9923            Montgomery_Coll                                       index.php
## 9924            Montgomery_Coll                                      indicating
## 9925            Montgomery_Coll                                            left
## 9926            Montgomery_Coll                                             log
## 9927            Montgomery_Coll                                        managing
## 9928            Montgomery_Coll                                        military
## 9929            Montgomery_Coll                                          modify
## 9930            Montgomery_Coll                                         offices
## 9931            Montgomery_Coll                                       penalized
## 9932            Montgomery_Coll                                       recommend
## 9933            Montgomery_Coll                                     registering
## 9934            Montgomery_Coll                                     regulations
## 9935            Montgomery_Coll                                        reserves
## 9936            Montgomery_Coll                                        returned
## 9937            Montgomery_Coll                                          rundel
## 9938            Montgomery_Coll                                          screen
## 9939            Montgomery_Coll                                         started
## 9940            Montgomery_Coll                                         staying
## 9941            Montgomery_Coll                                           style
## 9942            Montgomery_Coll                                          unable
## 9943            Montgomery_Coll                                        veterans
## 9944                 UWisconsin                                           notes
## 9945                 UCSanDiego                                          attend
## 9946                    UVA_SDS                                        10,12,13
## 9947                    UVA_SDS                                        12,14,15
## 9948                    UVA_SDS                                        14,16,17
## 9949                    UVA_SDS                                        17,19,20
## 9950                    UVA_SDS                                            185a
## 9951                    UVA_SDS                                        19,21,22
## 9952                    UVA_SDS                                             2,3
## 9953                    UVA_SDS                                           22,24
## 9954                    UVA_SDS                                        24,26,27
## 9955                    UVA_SDS                                        26,28,29
## 9956                    UVA_SDS                                        28,30,12
## 9957                    UVA_SDS                                         29,31,9
## 9958                    UVA_SDS                                           31,11
## 9959                    UVA_SDS                                             5,6
## 9960                    UVA_SDS                                           5,7,8
## 9961                    UVA_SDS                                            9,10
## 9962                    UVA_SDS                                    accommodates
## 9963                    UVA_SDS                                        activist
## 9964                    UVA_SDS                                             aka
## 9965                    UVA_SDS                                      algorithym
## 9966                    UVA_SDS                                         alvardo
## 9967                    UVA_SDS                                          amazed
## 9968                    UVA_SDS                                             app
## 9969                    UVA_SDS                                      b075x4lt6k
## 9970                    UVA_SDS                                     b5emclqf_i4
## 9971                    UVA_SDS                                            baek
## 9972                    UVA_SDS                                      battleship
## 9973                    UVA_SDS                                   bbcollaborate
## 9974                    UVA_SDS                                          bounds
## 9975                    UVA_SDS                                              br
## 9976                    UVA_SDS                                           brian
## 9977                    UVA_SDS                                         bundles
## 9978                    UVA_SDS                                           bw2zd
## 9979                    UVA_SDS                                          carrie
## 9980                    UVA_SDS                                         channel
## 9981                    UVA_SDS                                     collage.png
## 9982                    UVA_SDS                                     completable
## 9983                    UVA_SDS                                     constructed
## 9984                    UVA_SDS                                            d222
## 9985                    UVA_SDS                                         decided
## 9986                    UVA_SDS                                     definintion
## 9987                    UVA_SDS                                     deliverable
## 9988                    UVA_SDS                                       demanding
## 9989                    UVA_SDS                                        designer
## 9990                    UVA_SDS                                          devops
## 9991                    UVA_SDS                                      discord.gg
## 9992                    UVA_SDS                                           drive
## 9993                    UVA_SDS  ebhizpx6z85duqghvviv_syb1yyeryxhhj_3rdy0pdtgvq
## 9994                    UVA_SDS                                      efficiency
## 9995                    UVA_SDS                                     encompasses
## 9996                    UVA_SDS                                        evolving
## 9997                    UVA_SDS                                     explainable
## 9998                    UVA_SDS                                            feet
## 9999                    UVA_SDS                                            foot
## 10000                   UVA_SDS                                          govern
## 10001                   UVA_SDS                                      grading.md
## 10002                   UVA_SDS                                            grow
## 10003                   UVA_SDS                                           guess
## 10004                   UVA_SDS                                        gurantee
## 10005                   UVA_SDS                                       guranteed
## 10006                   UVA_SDS                                          hoping
## 10007                   UVA_SDS                                      humanizing
## 10008                   UVA_SDS                                     incorperate
## 10009                   UVA_SDS                                       increases
## 10010                   UVA_SDS                                      inequality
## 10011                   UVA_SDS                                          invite
## 10012                   UVA_SDS                                          iphone
## 10013                   UVA_SDS                                            jess
## 10014                   UVA_SDS                                             knn
## 10015                   UVA_SDS                                           linda
## 10016                   UVA_SDS                                           loose
## 10017                   UVA_SDS                                           lpa2a
## 10018                   UVA_SDS                              lpa2a_virginia_edu
## 10019                   UVA_SDS                                            lupi
## 10020                   UVA_SDS                                         managed
## 10021                   UVA_SDS                                      mastermind
## 10022                   UVA_SDS                                            mind
## 10023                   UVA_SDS                                          miriam
## 10024                   UVA_SDS                                          moment
## 10025                   UVA_SDS                                        mornings
## 10026                   UVA_SDS                                        motivate
## 10027                   UVA_SDS                               my.sharepoint.com
## 10028                   UVA_SDS                                           myuva
## 10029                   UVA_SDS                                             n.b
## 10030                   UVA_SDS                                       narrative
## 10031                   UVA_SDS                                             nau
## 10032                   UVA_SDS                                            neal
## 10033                   UVA_SDS                                            nice
## 10034                   UVA_SDS                                          nilson
## 10035                   UVA_SDS                                    observations
## 10036                   UVA_SDS                                        occupied
## 10037                   UVA_SDS                                         offical
## 10038                   UVA_SDS                                          olhyk8
## 10039                   UVA_SDS                            ontoligent.github.io
## 10040                   UVA_SDS                                              ot
## 10041                   UVA_SDS                                           paths
## 10042                   UVA_SDS                                          permit
## 10043                   UVA_SDS                                           peter
## 10044                   UVA_SDS                                        pgapcmhp
## 10045                   UVA_SDS                                       pioneered
## 10046                   UVA_SDS                                         pledged
## 10047                   UVA_SDS                                        podcasts
## 10048                   UVA_SDS                                         posavec
## 10049                   UVA_SDS                                           prime
## 10050                   UVA_SDS                                      projection
## 10051                   UVA_SDS                                         putting
## 10052                   UVA_SDS                                  r4ds.had.co.nz
## 10053                   UVA_SDS                                        received
## 10054                   UVA_SDS                                         relaxed
## 10055                   UVA_SDS                                        relieved
## 10056                   UVA_SDS                                         reminds
## 10057                   UVA_SDS                                           renee
## 10058                   UVA_SDS                                          ridley
## 10059                   UVA_SDS                                       scenerios
## 10060                   UVA_SDS                                            scps
## 10061                   UVA_SDS                                    scpshelpdesk
## 10062                   UVA_SDS                                       sdac.html
## 10063                   UVA_SDS                                         seating
## 10064                   UVA_SDS                                           sheng
## 10065                   UVA_SDS                                          signed
## 10066                   UVA_SDS                                  simultaneously
## 10067                   UVA_SDS                                        speakers
## 10068                   UVA_SDS                                           spent
## 10069                   UVA_SDS                                           stack
## 10070                   UVA_SDS                                   studenthealth
## 10071                   UVA_SDS                                    surprisingly
## 10072                   UVA_SDS                                      synthesize
## 10073                   UVA_SDS                                      systematic
## 10074                   UVA_SDS                                            tech
## 10075                   UVA_SDS                                        thornton
## 10076                   UVA_SDS                                            thur
## 10077                   UVA_SDS                                         today's
## 10078                   UVA_SDS                                       unoffical
## 10079                   UVA_SDS                                          uvabbc
## 10080                   UVA_SDS                                       uvacollab
## 10081                   UVA_SDS                                            vary
## 10082                   UVA_SDS                                             wet
## 10083                   UVA_SDS                                 www.tinyurl.com
## 10084                   UVA_SDS                                        youtu.be
## 10085                   Cornell                                      objectives
## 10086                UCSanDiego                                            file
## 10087                UCSanDiego                                           start
## 10088                UCSanDiego                                          survey
## 10089                Boston_Uni                                         lecture
## 10090            UniSys_Georgia                                      evaluation
## 10091            UniSys_Georgia                                        multiple
## 10092            UniSys_Georgia                                            text
## 10093          William_and_Mary                                          letter
## 10094          William_and_Mary                                           weeks
## 10095                       MIT                                      conditions
## 10096                       MIT                                       education
## 10097                       MIT                                            hard
## 10098                       MIT                                        sampling
## 10099                       MIT                                     significant
## 10100          Washington_State                                         complex
## 10101          Washington_State                                       deadlines
## 10102          Washington_State                                   distributions
## 10103          Washington_State                                        exercise
## 10104          Washington_State                                       scientist
## 10105                  UToronto                                            acts
## 10106                  UToronto                                     comfortable
## 10107                  UToronto                                          covers
## 10108                  UToronto                                         hearing
## 10109                  UToronto                                            info
## 10110                  UToronto                                          listed
## 10111                  UToronto                                             low
## 10112                  UToronto                                      operations
## 10113                  UToronto                                     preliminary
## 10114                  UToronto                                       requiring
## 10115                  UToronto                                      respectful
## 10116                  UToronto                                      structured
## 10117                  UToronto                                      structures
## 10118                  UToronto                                       thursdays
## 10119                  UToronto                                        tuesdays
## 10120                  UToronto                                       welcoming
## 10121                 UKentucky                                           board
## 10122                 UKentucky                                  communications
## 10123                 UKentucky                                          family
## 10124                 UKentucky                                       libraries
## 10125                 UKentucky                                           posts
## 10126                 UKentucky                                           table
## 10127                       UMD                                     affirmative
## 10128                       UMD                                          arrays
## 10129                       UMD                                   authorization
## 10130                       UMD                                             bar
## 10131                       UMD                                      commitment
## 10132                       UMD                                      identified
## 10133                       UMD                                       lifecycle
## 10134                       UMD                                      philosophy
## 10135                       UMD                                      transcript
## 10136                       UMD                                        tutorial
## 10137                       UMD                                    university's
## 10138                       UMD                                          uphold
## 10139                   UIU_207                                        complete
## 10140                UCSanDiego                                             act
## 10141                UCSanDiego                                        enrolled
## 10142                UCSanDiego                                          errors
## 10143                UCSanDiego                                       inclusive
## 10144                UCSanDiego                                         percent
## 10145                UCSanDiego                                              uc
## 10146 UWisc_Madison_Programming                                         copying
## 10147 UWisc_Madison_Programming                                       detection
## 10148                UCBerkeley                                            free
## 10149          Washington_State                                    acadcal.aspx
## 10150          Washington_State                            accesscenter.wsu.edu
## 10151          Washington_State                                   alert.wsu.edu
## 10152          Washington_State                                     arrangement
## 10153          Washington_State                                        audience
## 10154          Washington_State                                        branches
## 10155          Washington_State                                         closure
## 10156          Washington_State                                     communities
## 10157          Washington_State                                       competent
## 10158          Washington_State                                 conduct.wsu.edu
## 10159          Washington_State                                      constitute
## 10160          Washington_State                                      contextual
## 10161          Washington_State                                         counted
## 10162          Washington_State                                         cpts483
## 10163          Washington_State                                           craft
## 10164          Washington_State                                    datafication
## 10165          Washington_State                                            deal
## 10166          Washington_State                                             eme
## 10167          Washington_State                                        enforced
## 10168          Washington_State                                        engineer
## 10169          Washington_State                                       enhancing
## 10170          Washington_State                                           equip
## 10171          Washington_State                                          estate
## 10172          Washington_State                                      extracting
## 10173          Washington_State                                          facets
## 10174          Washington_State                                          foster
## 10175          Washington_State                                            gaps
## 10176          Washington_State                                     gebremedhin
## 10177          Washington_State                                   generalizable
## 10178          Washington_State                                     imagination
## 10179          Washington_State                                   inadvertently
## 10180          Washington_State                                          jerome
## 10181          Washington_State                                              jr
## 10182          Washington_State                                       landscape
## 10183          Washington_State                                        leskovek
## 10184          Washington_State                                           miera
## 10185          Washington_State                                         mindset
## 10186          Washington_State                                        mohammed
## 10187          Washington_State                                    neighborhood
## 10188          Washington_State                                     oem.wsu.edu
## 10189          Washington_State                                       osble.org
## 10190          Washington_State                                     parenthesis
## 10191          Washington_State                                    partitioning
## 10192          Washington_State                                        persuade
## 10193          Washington_State                                     populations
## 10194          Washington_State                                        proceeds
## 10195          Washington_State                                       ravindran
## 10196          Washington_State                                      realdirect
## 10197          Washington_State                                         receice
## 10198          Washington_State                                       retention
## 10199          Washington_State                              safetyplan.wsu.edu
## 10200          Washington_State                                       scrapping
## 10201          Washington_State                                           sloan
## 10202          Washington_State                                        spanning
## 10203          Washington_State                                    synergically
## 10204          Washington_State                                       synthesis
## 10205          Washington_State                                       treatment
## 10206          Washington_State                                            v2.1
## 10207          Washington_State                                        violates
## 10208          Washington_State                                             wac
## 10209          Washington_State                                          wagner
## 10210          Washington_State                                           wsu's
## 10211          Washington_State                                         wsu.edu
## 10212          Washington_State                           www.registrar.wsu.edu
## 10213          Washington_State                                            zaki
## 10214                  UVA_Stat                                         allowed
## 10215                  UVA_Stat                                    applications
## 10216                  UVA_Stat                                          choose
## 10217                  UVA_Stat                                       introduce
## 10218                  UVA_Stat                                         require
## 10219               UWashington                                           basic
## 10220               UWashington                                       materials
## 10221               UWashington                                             set
## 10222                     UUtah                                      tensorflow
## 10223                   Harvard                                          review
## 10224                     UUtah                                        calculus
## 10225                     UUtah                                             e.g
## 10226                       ASU                                       functions
## 10227                       ASU                                       preferred
## 10228                       ASU                                          status
## 10229                    UMaine                                      statistics
## 10230                       UMD                                            date
## 10231                       UMD                                   participation
## 10232                 Princeton                                            text
## 10233                     UUtah                                          python
## 10234                UWisconsin                                        feedback
## 10235 UWisc_Madison_Programming                                       arguments
## 10236 UWisc_Madison_Programming                                          assign
## 10237 UWisc_Madison_Programming                                    disciplinary
## 10238 UWisc_Madison_Programming                                           forms
## 10239 UWisc_Madison_Programming                                            half
## 10240 UWisc_Madison_Programming                                      misconduct
## 10241          Washington_State                                   visualization
## 10242    UWisc_Madison_Modeling                                          github
## 10243    UWisc_Madison_Modeling                                          period
## 10244    UWisc_Madison_Modeling                                       practical
## 10245    UWisc_Madison_Modeling                                          simple
## 10246                       UMD                                           sites
## 10247          William_and_Mary                                          method
## 10248          William_and_Mary                                            zoom
## 10249                   Rutgers                                        schedule
## 10250           Montgomery_Coll                                        datasets
## 10251           Montgomery_Coll                                            note
## 10252           Montgomery_Coll                                        personal
## 10253                   UIU_207                                           exams
## 10254                   UIU_207                                       submitted
## 10255                  NYU_DS4E                                     conclusions
## 10256                   UZurich                                         feature
## 10257                   UZurich                                            test
## 10258                   Cornell                                           board
## 10259                   Cornell                                              cs
## 10260                   Cornell                                       discussed
## 10261                   Cornell                                              dr
## 10262                   Cornell                                     extenuating
## 10263                   Cornell                                       religious
## 10264                   Cornell                                        response
## 10265                   Cornell                                           share
## 10266                   Cornell                                         similar
## 10267                   Cornell                                        thursday
## 10268                Boston_Uni                                         covered
## 10269                Boston_Uni                                         explain
## 10270                Boston_Uni                                           ideas
## 10271                Boston_Uni                                         request
## 10272                 Princeton                                            aims
## 10273                 Princeton                                     correlation
## 10274                 Princeton                                     expressions
## 10275                 Princeton                                          people
## 10276                 Princeton                                      prediction
## 10277                 Princeton                                         squares
## 10278                  UVA_Stat                                          python
## 10279                   Cornell                                         lecture
## 10280                   Cornell                                        lectures
## 10281                       UMD                                      procedures
## 10282                      CUNY                                        accuracy
## 10283                      CUNY                                   distributions
## 10284                      CUNY                                          engage
## 10285                      CUNY                                      estimation
## 10286                      CUNY                                      importance
## 10287                      CUNY                                   participating
## 10288          Washington_State                                        identify
## 10289          Washington_State                                         related
## 10290                 UKentucky                                          online
## 10291                UCSanDiego                                         lecture
## 10292                UCSanDiego                                        projects
## 10293                UCSanDiego                                         project
## 10294                UCSanDiego                                           staff
## 10295                 Princeton                                   1k4un50wqqsq1
## 10296                 Princeton                                        additive
## 10297                 Princeton                                       adversary
## 10298                 Princeton                                             als
## 10299                 Princeton                                      amazon.com
## 10300                 Princeton                                       anova.pdf
## 10301                 Princeton                                        appendix
## 10302                 Princeton                                   applicability
## 10303                 Princeton                                          approx
## 10304                 Princeton                                           asset
## 10305                 Princeton                                          autism
## 10306                 Princeton                                      autism.csv
## 10307                 Princeton                                         bingyan
## 10308                 Princeton                                        bingyanw
## 10309                 Princeton                                        biweekly
## 10310                 Princeton                                          boston
## 10311                 Princeton                              boston.housing.dat
## 10312                 Princeton                                       buehlmann
## 10313                 Princeton                                            burn
## 10314                 Princeton                                        burn.dat
## 10315                 Princeton                                    burn.des.txt
## 10316                 Princeton                            canvas.princeton.edu
## 10317                 Princeton                                             cid
## 10318                 Princeton                                         concave
## 10319                 Princeton                                     convinience
## 10320                 Princeton                                            crid
## 10321                 Princeton                                          dchild
## 10322                 Princeton                                        dividend
## 10323                 Princeton                                             doc
## 10324                 Princeton                                    downloaddata
## 10325                 Princeton                                            econ
## 10326                 Princeton                                     econometric
## 10327                 Princeton                                      expansions
## 10328                 Princeton                                 expressions.csv
## 10329                 Princeton                       files.fred.stlouisfed.org
## 10330                 Princeton                                          folded
## 10331                 Princeton                                           fred2
## 10332                 Princeton                                            geer
## 10333                 Princeton                                            gene
## 10334                 Princeton                                           genes
## 10335                 Princeton                                            glim
## 10336                 Princeton                                        glim.pdf
## 10337                 Princeton                                         glimpse
## 10338                 Princeton                                       homework2
## 10339                 Princeton                                         housing
## 10340                 Princeton                                       indicator
## 10341                 Princeton                                          intend
## 10342                 Princeton                                       intro.pdf
## 10343                 Princeton                                           jqfan
## 10344                 Princeton                                             l_1
## 10345                 Princeton                                             l_o
## 10346                 Princeton                                            lab1
## 10347                 Princeton                                            lab6
## 10348                 Princeton                                            lab7
## 10349                 Princeton                                            lab8
## 10350                 Princeton                                           labor
## 10351                 Princeton                                 labor.suppl.dat
## 10352                 Princeton                                 mailto:bingyanw
## 10353                 Princeton                                    mailto:jqfan
## 10354                 Princeton                                   mailto:xz8451
## 10355                 Princeton                                         manuals
## 10356                 Princeton                                       mccracken
## 10357                 Princeton                                              md
## 10358                 Princeton                                        meanings
## 10359                 Princeton                                      monographs
## 10360                 Princeton                                         monthly
## 10361                 Princeton                                              mw
## 10362                 Princeton                                        neighbor
## 10363                 Princeton                               neuroblastoma.csv
## 10364                 Princeton                                          notes2
## 10365                 Princeton                                             orf
## 10366                 Princeton                                      parameters
## 10367                 Princeton                                         patient
## 10368                 Princeton                                        patients
## 10369                 Princeton                                             pce
## 10370                 Princeton                                    pictures.zip
## 10371                 Princeton                                        playlist
## 10372                 Princeton                    plou2xlyxmslk9qqfztxeybphvru
## 10373                 Princeton                                         precept
## 10374                 Princeton                                      preprocess
## 10375                 Princeton                                    preprocessed
## 10376                 Princeton                                         pricing
## 10377                 Princeton                                           prize
## 10378                 Princeton                                             qid
## 10379                 Princeton                                            rank
## 10380                 Princeton                                        refitted
## 10381                 Princeton                                     regularized
## 10382                 Princeton                                     reproducing
## 10383                 Princeton                                             rnn
## 10384                 Princeton                                     rstudio.com
## 10385                 Princeton                                        screeing
## 10386                 Princeton                                           sp500
## 10387                 Princeton                                        sparsier
## 10388                 Princeton                                        sparsity
## 10389                 Princeton                                         sprefix
## 10390                 Princeton                                          subset
## 10391                 Princeton                                        survival
## 10392                 Princeton                              tableofcontent.pdf
## 10393                 Princeton                                   test.data.csv
## 10394                 Princeton                                  train.data.csv
## 10395                 Princeton                                     transformed
## 10396                 Princeton                                 transformed.csv
## 10397                 Princeton                                           trqap
## 10398                 Princeton                                            tube
## 10399                 Princeton                                      update.pdf
## 10400                 Princeton                                        venables
## 10401                 Princeton                                        verbatim
## 10402                 Princeton                                       viewpoint
## 10403                 Princeton                                      volatility
## 10404                 Princeton                                            wang
## 10405                 Princeton                                  www.multpl.com
## 10406                 Princeton                               www.routledge.com
## 10407                 Princeton                                         xiaonan
## 10408                 Princeton                                          xz8451
## 10409                 Princeton                                           yield
## 10410                 Princeton                                          yields
## 10411                 Princeton                                             zhu
## 10412               NYU_IntroDS                                          review
## 10413                       MIT                                         lecture
## 10414                UWisconsin                                         privacy
## 10415                Boston_Uni                                        textbook
## 10416                  NYU_DS4E                                       comparing
## 10417                  NYU_DS4E                                        concrete
## 10418                  NYU_DS4E                                     experiments
## 10419                  NYU_DS4E                                          limits
## 10420                  NYU_DS4E                                         matters
## 10421                  NYU_DS4E                                    prerequisite
## 10422                  NYU_DS4E                                            rest
## 10423               NYU_IntroDS                                         advised
## 10424               NYU_IntroDS                                             art
## 10425               NYU_IntroDS                                      assistants
## 10426               NYU_IntroDS                                         authors
## 10427               NYU_IntroDS                                             cas
## 10428               NYU_IntroDS                                       comparing
## 10429               NYU_IntroDS                                        consists
## 10430               NYU_IntroDS                                          earned
## 10431               NYU_IntroDS                                        embedded
## 10432               NYU_IntroDS                                           essay
## 10433               NYU_IntroDS                                         forests
## 10434               NYU_IntroDS                                       instances
## 10435               NYU_IntroDS                                             net
## 10436               NYU_IntroDS                                     overfitting
## 10437               NYU_IntroDS                                   probabilities
## 10438               NYU_IntroDS                                         provost
## 10439               NYU_IntroDS                                  regularization
## 10440               NYU_IntroDS                                          relate
## 10441               NYU_IntroDS                                 representations
## 10442               NYU_IntroDS                                             roc
## 10443               NYU_IntroDS                                        sequence
## 10444               NYU_IntroDS                                      similarity
## 10445               NYU_IntroDS                                      suspension
## 10446               NYU_IntroDS                                              tf
## 10447               NYU_IntroDS                                            tree
## 10448                       ASU                                  accommodations
## 10449                   Cornell                                        includes
## 10450                   UIU_107                                          issues
## 10451                   UIU_107                                       submitted
## 10452                   UIU_107                                          weekly
## 10453              USouthampton                                         contact
## 10454                   UVA_SDS                                            test
## 10455                UCSanDiego                                        cheating
## 10456                UCSanDiego                                  responsibility
## 10457                       MIT                                  classification
## 10458                       MIT                                            note
## 10459 UWisc_Madison_Programming                                            late
## 10460          Washington_State                                           tools
## 10461                   Cornell                                          submit
## 10462                   UIU_207                                       assistant
## 10463                   UIU_207                                     conclusions
## 10464                   UIU_207                                         develop
## 10465                   UIU_207                                          direct
## 10466                   UIU_207                                              ds
## 10467                   UIU_207                                            file
## 10468                   UIU_207                                            loss
## 10469                   UIU_207                                           meets
## 10470                   UIU_207                                          piazza
## 10471                   UIU_207                                      previously
## 10472                   UIU_207                                    quantitative
## 10473                   UIU_207                                         running
## 10474                   UIU_207                                        sampling
## 10475                   UIU_207                                       violation
## 10476                   UIU_207                                         windows
## 10477                   UIU_207                                           words
## 10478                 Princeton                                          linear
## 10479                UWisconsin                                           peers
## 10480                   Harvard                                   accessibility
## 10481                   Harvard                                          answer
## 10482                   Harvard                                           model
## 10483              Georgia_Tech                                     appointment
## 10484              Georgia_Tech                                        existing
## 10485              Georgia_Tech                                         finally
## 10486              Georgia_Tech                                     instruction
## 10487              Georgia_Tech                                        machines
## 10488              Georgia_Tech                                         meaning
## 10489              Georgia_Tech                                   presentations
## 10490              Georgia_Tech                                       represent
## 10491              Georgia_Tech                                      requisites
## 10492              Georgia_Tech                                           space
## 10493                   Harvard                                            live
## 10494                    UMaine                                           cheat
## 10495                    UMaine                                      continuous
## 10496                    UMaine                                     correlation
## 10497                    UMaine                                      definition
## 10498                    UMaine                                          events
## 10499                    UMaine                                        function
## 10500                    UMaine                                       tentative
## 10501                    UMaine                                            term
## 10502                    UMaine                                     visualizing
## 10503          Washington_State                                         ethical
## 10504          Washington_State                                     exploratory
## 10505    UWisc_Madison_Modeling                                        complete
## 10506                       LSU                                     communicate
## 10507                       LSU                                       knowledge
## 10508                     UUtah                                         writing
## 10509                   UZurich                                            bias
## 10510                   UZurich                                            deep
## 10511                   UZurich                                        machines
## 10512                   UZurich                                     mathematics
## 10513                   UZurich                                           space
## 10514                  NYU_DS4E                                            life
## 10515                  NYU_DS4E                                           types
## 10516               NYU_IntroDS                                         ethical
## 10517                     Brown                                        decision
## 10518                     Brown                                         ethical
## 10519                     Brown                                     performance
## 10520                     Brown                                        question
## 10521                UCBerkeley                                        document
## 10522                UCBerkeley                                      validation
## 10523                       LSU                                         address
## 10524                       LSU                                       diversity
## 10525                       LSU                                            main
## 10526                    UMaine                                        addendum
## 10527                    UMaine                                        adequate
## 10528                    UMaine                                         adverse
## 10529                    UMaine                                          aiding
## 10530                    UMaine                                             ali
## 10531                    UMaine                                           annex
## 10532                    UMaine                                        annoying
## 10533                    UMaine                                            arno
## 10534                    UMaine                                         audible
## 10535                    UMaine                                            bags
## 10536                    UMaine                                           begun
## 10537                    UMaine                                            beta
## 10538                    UMaine                                              bi
## 10539                    UMaine                                          bility
## 10540                    UMaine                                           botev
## 10541                    UMaine                                          bridge
## 10542                    UMaine                                          burden
## 10543                    UMaine                                             cam
## 10544                    UMaine                                          cantly
## 10545                    UMaine                                          carlos
## 10546                    UMaine                                          cauchy
## 10547                    UMaine                                        checking
## 10548                    UMaine                                             chi
## 10549                    UMaine                                          cielen
## 10550                    UMaine                                       classmate
## 10551                    UMaine                                          clause
## 10552                    UMaine                                        clinical
## 10553                    UMaine                                      committing
## 10554                    UMaine                                         conform
## 10555                    UMaine                                         covid19
## 10556                    UMaine                                       criterion
## 10557                    UMaine                                            davy
## 10558                    UMaine                                          dicial
## 10559                    UMaine                                            dirk
## 10560                    UMaine                                        disclose
## 10561                    UMaine                                       dishonest
## 10562                    UMaine                                       dismissed
## 10563                    UMaine                                             dse
## 10564                    UMaine                                            east
## 10565                    UMaine                                           elect
## 10566                    UMaine                                        employer
## 10567                    UMaine                                       ensembele
## 10568                    UMaine                                      estimators
## 10569                    UMaine                                           evans
## 10570                    UMaine                                            fake
## 10571                    UMaine                                       fernandez
## 10572                    UMaine                                          fisher
## 10573                    UMaine                                           frame
## 10574                    UMaine                                       framework
## 10575                    UMaine                                     frequentist
## 10576                    UMaine                                           gamma
## 10577                    UMaine                                          granda
## 10578                    UMaine                                         holiday
## 10579                    UMaine                                       importing
## 10580                    UMaine                                         instruc
## 10581                    UMaine                                      internship
## 10582                    UMaine                                          joseph
## 10583                    UMaine                                          kroese
## 10584                    UMaine                                         ligious
## 10585                    UMaine                                      logistical
## 10586                    UMaine                                       maine.edu
## 10587                    UMaine                                         meysman
## 10588                    UMaine                                         mohamed
## 10589                    UMaine                                             mse
## 10590                    UMaine                                         opposed
## 10591                    UMaine                                            pack
## 10592                    UMaine                                           packt
## 10593                    UMaine                                            pdfs
## 10594                    UMaine                                            pmfs
## 10595                    UMaine                                             pos
## 10596                    UMaine                                       posterior
## 10597                    UMaine                                        pounding
## 10598                    UMaine                                           preju
## 10599                    UMaine                                           proba
## 10600                    UMaine                                     publication
## 10601                    UMaine                                        radislav
## 10602                    UMaine                                            ravi
## 10603                    UMaine                                      recognizes
## 10604                    UMaine                                         refrain
## 10605                    UMaine                                       relatives
## 10606                    UMaine                                    restlessness
## 10607                    UMaine                                          reword
## 10608                    UMaine                                       rosenthal
## 10609                    UMaine                                            rude
## 10610                    UMaine                                  salimeh.yasaei
## 10611                    UMaine                                       sensitive
## 10612                    UMaine                                          sheets
## 10613                    UMaine                                           sible
## 10614                    UMaine                                         signifi
## 10615                    UMaine                                           signs
## 10616                    UMaine                                          skiena
## 10617                    UMaine                                        sleeping
## 10618                    UMaine                                     structuring
## 10619                    UMaine                                       suggested
## 10620                    UMaine                                     summarizing
## 10621                    UMaine                                       supersede
## 10622                    UMaine                                          taimre
## 10623                    UMaine                                     termination
## 10624                    UMaine                                    thanksgiving
## 10625                    UMaine                                             tor
## 10626                    UMaine                                        trustees
## 10627                    UMaine                                    unreasonable
## 10628                    UMaine                                         vaisman
## 10629                    UMaine                                         watkins
## 10630                    UMaine                                   www.maine.edu
## 10631                    UMaine                                         zdravko
## 10632                  UVA_Stat                                         discuss
## 10633                  UVA_Stat                                         written
## 10634                     Brown                                         project
## 10635                   UZurich                                          models
## 10636                UCSanDiego                                          person
## 10637          William_and_Mary                                          review
## 10638                      CUNY                                           means
## 10639                      CUNY                                        thinking
## 10640                      CUNY                                          skills
## 10641                   Rutgers                                            aims
## 10642                   Rutgers                                            gain
## 10643                   Rutgers                                            view
## 10644          William_and_Mary                                      clustering
## 10645          William_and_Mary                                           model
## 10646          William_and_Mary                                          random
## 10647                   Cornell                                         edition
## 10648            UniSys_Georgia                                       statement
## 10649                   UIU_107                                       assistant
## 10650                   UIU_107                                           bring
## 10651                   UIU_107                                          direct
## 10652                   UIU_107                                          driven
## 10653                   UIU_107                                       education
## 10654                   UIU_107                                    quantitative
## 10655                   UIU_107                                         running
## 10656                   UIU_107                                       violation
## 10657                   UIU_107                                         windows
## 10658                   UIU_107                                           words
## 10659                 UKentucky                                         project
## 10660              Georgia_Tech                                            fall
## 10661                  NYU_DS4E                                  classification
## 10662                  NYU_DS4E                                        datasets
## 10663               NYU_IntroDS                                          center
## 10664                    Drexel                                        accessed
## 10665                    Drexel                                         archive
## 10666                    Drexel                                        articles
## 10667                    Drexel                                       lifecycle
## 10668                    Drexel                                        metadata
## 10669                    Drexel                                             mid
## 10670                    Drexel                                           paper
## 10671                    Drexel                                            ryan
## 10672                    Drexel                                            size
## 10673                    Drexel                                            york
## 10674 UWisc_Madison_Programming                                      department
## 10675 UWisc_Madison_Programming                                      evaluation
## 10676 UWisc_Madison_Programming                                          person
## 10677                Boston_Uni                                            late
## 10678                   UVA_SDS                                          charts
## 10679                   UVA_SDS                                            draw
## 10680                   UVA_SDS                                         reflect
## 10681                   UVA_SDS                                          videos
## 10682                UCSanDiego                                           exams
## 10683                UCSanDiego                                       deadlines
## 10684                UCSanDiego                                         message
## 10685          William_and_Mary                                           covid
## 10686          William_and_Mary                                        delivery
## 10687          William_and_Mary                                             pca
## 10688          William_and_Mary                                        physical
## 10689          William_and_Mary                                     preliminary
## 10690          William_and_Mary                                           ridge
## 10691          William_and_Mary                                             sas
## 10692          William_and_Mary                                          scikit
## 10693                Boston_Uni                                        applying
## 10694                Boston_Uni                                          arrive
## 10695                Boston_Uni                                         chances
## 10696                Boston_Uni                                        contents
## 10697                Boston_Uni                                    descriptions
## 10698                Boston_Uni                                     dimensional
## 10699                Boston_Uni                                      disruptive
## 10700                Boston_Uni                                       extensive
## 10701                Boston_Uni                                           floor
## 10702                Boston_Uni                                         granted
## 10703                Boston_Uni                                      invaluable
## 10704                Boston_Uni                                         massive
## 10705                Boston_Uni                                        measures
## 10706                Boston_Uni                                          medium
## 10707                Boston_Uni                                           multi
## 10708                Boston_Uni                                      piazza.com
## 10709                Boston_Uni                                       rajaraman
## 10710                Boston_Uni                                         ranking
## 10711                Boston_Uni                                     regulations
## 10712                Boston_Uni                                        strictly
## 10713                Boston_Uni                                     substantial
## 10714                Boston_Uni                                            tips
## 10715                Boston_Uni                                          ullman
## 10716                Boston_Uni                                          witten
## 10717                       MIT                                           ahead
## 10718                       MIT                                       beginning
## 10719                       MIT                                          chance
## 10720                       MIT                                              ed
## 10721                       MIT                                       emergency
## 10722                       MIT                                       extension
## 10723                       MIT                                         maximum
## 10724                       MIT                                       regularly
## 10725                       MIT                                        starting
## 10726                       MIT                                          weight
## 10727               UWashington                                        assigned
## 10728               UWashington                                          linear
## 10729               UWashington                                        software
## 10730                  UVA_Stat                                        comments
## 10731                  UVA_Stat                                      extensions
## 10732                  UVA_Stat                                     inferential
## 10733                  UVA_Stat                                            john
## 10734                  UVA_Stat                                        location
## 10735                  UVA_Stat                                        meetings
## 10736                  UVA_Stat                                         penalty
## 10737                  UVA_Stat                                         primary
## 10738                  UVA_Stat                                       wednesday
## 10739                UCSanDiego                                acknowledgements
## 10740                UCSanDiego                                      berkeley's
## 10741                UCSanDiego                                       calculate
## 10742                UCSanDiego                                   chronological
## 10743                UCSanDiego                                        clicking
## 10744                UCSanDiego                                      dscstudent
## 10745                UCSanDiego                                         earlier
## 10746                UCSanDiego                                           emoji
## 10747                UCSanDiego                                         enforce
## 10748                UCSanDiego                                           fills
## 10749                UCSanDiego                                              np
## 10750                UCSanDiego                                       podcasted
## 10751                UCSanDiego                                         release
## 10752                UCSanDiego                                     scholarship
## 10753                UCSanDiego                                           stick
## 10754                UCSanDiego                                          tablet
## 10755                UCSanDiego                                        ucsd.edu
## 10756                UCSanDiego                                          unlike
## 10757                UCSanDiego                                      waitlisted
## 10758                UCSanDiego                                         warning
## 10759                       UMD                                        feedback
## 10760                   UIU_207                                         lecture
## 10761          Washington_State                                     algorithmic
## 10762          Washington_State                                        analytic
## 10763          Washington_State                                     appointment
## 10764          Washington_State                                         consult
## 10765          Washington_State                                        existing
## 10766          Washington_State                                     mathematics
## 10767          Washington_State                                         nearest
## 10768          Washington_State                                      predictive
## 10769                       ASU                                           bayes
## 10770                       ASU                                           cover
## 10771                       ASU                                      cumulative
## 10772                       ASU                                      reasonable
## 10773                       ASU                                           refer
## 10774 UWisc_Madison_Programming                                          people
## 10775                UCSanDiego                                            exam
## 10776                    Drexel                                           types
## 10777                   UIU_207                                        modeling
## 10778                   UIU_207                                            read
## 10779 UWisc_Madison_Programming                                       additions
## 10780 UWisc_Madison_Programming                                          closed
## 10781 UWisc_Madison_Programming                                        droppped
## 10782 UWisc_Madison_Programming                                         helping
## 10783 UWisc_Madison_Programming                                         kuemmel
## 10784 UWisc_Madison_Programming                                          matter
## 10785 UWisc_Madison_Programming                                        mcburney
## 10786 UWisc_Madison_Programming                                        numbered
## 10787 UWisc_Madison_Programming                                             p13
## 10788 UWisc_Madison_Programming                                              p2
## 10789 UWisc_Madison_Programming                                         picking
## 10790 UWisc_Madison_Programming                                              q1
## 10791 UWisc_Madison_Programming                                             q10
## 10792 UWisc_Madison_Programming                                        scantron
## 10793 UWisc_Madison_Programming                                             sci
## 10794 UWisc_Madison_Programming                                         sending
## 10795 UWisc_Madison_Programming                                        snippets
## 10796 UWisc_Madison_Programming                               stackoverflow.com
## 10797                    Drexel                                      difference
## 10798                    Drexel                                            term
## 10799          William_and_Mary                                      validation
## 10800                Boston_Uni                                         solving
## 10801                Boston_Uni                                         tuesday
## 10802                     UUtah                                          canvas
## 10803                     UUtah                                     instructors
## 10804                     UUtah                                           links
## 10805                 UKentucky                                      developing
## 10806                 UKentucky                                         failure
## 10807                 UKentucky                                              ii
## 10808                 UKentucky                                         illness
## 10809                 UKentucky                                           occur
## 10810                 UKentucky                                             p.m
## 10811                 UKentucky                                          rights
## 10812                 UKentucky                                         veteran
## 10813                   UZurich                                    applications
## 10814                   UZurich                                           basis
## 10815                   UZurich                                          method
## 10816    UWisc_Madison_Modeling                                          assess
## 10817    UWisc_Madison_Modeling                                      cumulative
## 10818    UWisc_Madison_Modeling                                            file
## 10819    UWisc_Madison_Modeling                                    manipulation
## 10820    UWisc_Madison_Modeling                                    quantitative
## 10821    UWisc_Madison_Modeling                                           tests
## 10822    UWisc_Madison_Modeling                                          values
## 10823    UWisc_Madison_Modeling                                  visualizations
## 10824              USouthampton                                       exercises
## 10825              USouthampton                                      technology
## 10826                   Rutgers                                           solve
## 10827                   UIU_107                                            real
## 10828                   UIU_107                                            exam
## 10829                  NYU_DS4E                                           cheat
## 10830                  NYU_DS4E                                     predictions
## 10831                  NYU_DS4E                                     surrounding
## 10832                       MIT                                    introduction
## 10833                  UToronto                                      regression
## 10834                       UMD                                        critical
## 10835                Boston_Uni                                      encouraged
## 10836                Boston_Uni                                            labs
## 10837                UCSanDiego                                         midterm
## 10838            UniSys_Georgia                                        analysis
## 10839                   Cornell                                      completion
## 10840                   Cornell                                      considered
## 10841                   Cornell                                        designed
## 10842                   Cornell                                           extra
## 10843                  UToronto                                         actions
## 10844                  UToronto                                        advising
## 10845                  UToronto                                          assist
## 10846                  UToronto                                         chronic
## 10847                  UToronto                                      classifier
## 10848                  UToronto                                     classifiers
## 10849                  UToronto                                             fax
## 10850                  UToronto                                           floor
## 10851                  UToronto                                          formal
## 10852                  UToronto                                    interactions
## 10853                  UToronto                                         matters
## 10854                  UToronto                                         metrics
## 10855                  UToronto                                        notation
## 10856                  UToronto                                          offers
## 10857                  UToronto                                        packages
## 10858                  UToronto                                     psychiatric
## 10859                  UToronto                                 representations
## 10860                  UToronto                                responsibilities
## 10861                  UToronto                                       secondary
## 10862                  UToronto                                          select
## 10863                  UToronto                                        supports
## 10864                  UToronto                                             tbd
## 10865                  UToronto                                       temporary
## 10866                  UToronto                                           voice
## 10867                  UToronto                                         webpage
## 10868                   UIU_107                                           times
## 10869                       MIT                                        thinking
## 10870                       MIT                                           write
## 10871                       MIT                                          grades
## 10872                  UVA_Stat                                        semester
## 10873                 Princeton                                            deep
## 10874                 Princeton                                         laptops
## 10875                 Princeton                                          missed
## 10876                 Princeton                                          series
## 10877                 UKentucky                                         account
## 10878                 UKentucky                                           phone
## 10879                       ASU                                      understand
## 10880                UCSanDiego                                        advising
## 10881                UCSanDiego                                         started
## 10882                UCSanDiego                                           wrong
## 10883                       UMD                                     assessments
## 10884                       UMD                                          citing
## 10885                       UMD                                      withdrawal
## 10886                      CUNY                                            arts
## 10887                      CUNY                                       attention
## 10888                      CUNY                                            bias
## 10889                      CUNY                                       copyright
## 10890                      CUNY                                        creation
## 10891                      CUNY                                        existing
## 10892                      CUNY                                         finally
## 10893                      CUNY                                          gender
## 10894                      CUNY                                      inferences
## 10895                      CUNY                                           meant
## 10896                      CUNY                                         natural
## 10897                      CUNY                                           numpy
## 10898                      CUNY                                       processes
## 10899                      CUNY                                            race
## 10900                      CUNY                                       reasoning
## 10901                      CUNY                                       represent
## 10902                      CUNY                                     requirement
## 10903                      CUNY                                           texts
## 10904            UniSys_Georgia                                      additional
## 10905                UWisconsin                                         minutes
## 10906                   Cornell                                             day
## 10907                   Cornell                                      discussion
## 10908                   Harvard                                        building
## 10909                   Cornell                                           begin
## 10910                   Cornell                                           forum
## 10911                   Cornell                                           human
## 10912                   Cornell                                         medical
## 10913                UCSanDiego                                            code
## 10914                       ASU                                            exam
## 10915                       LSU                                          report
## 10916                       MIT                                          python
## 10917 UWisc_Madison_Programming                                          choice
## 10918 UWisc_Madison_Programming                                         dropped
## 10919 UWisc_Madison_Programming                                             tag
## 10920          Washington_State                                         dataset
## 10921                UWisconsin                                    architecture
## 10922                UWisconsin                                         charles
## 10923                UWisconsin                                         cleaned
## 10924                UWisconsin                                         compare
## 10925                UWisconsin                                         dialogs
## 10926                UWisconsin                                           dread
## 10927                UWisconsin                                        forecast
## 10928                UWisconsin                                         kenneth
## 10929                UWisconsin                                        mitigate
## 10930                UWisconsin                                             of7
## 10931                UWisconsin                                          primer
## 10932                UWisconsin                                        purchase
## 10933                UWisconsin                                       stripping
## 10934                UWisconsin                                        uwsp.edu
## 10935                UWisconsin                                          vendor
## 10936           Montgomery_Coll                                           alert
## 10937           Montgomery_Coll                                            bank
## 10938           Montgomery_Coll                                            barr
## 10939           Montgomery_Coll                                          bottom
## 10940           Montgomery_Coll                                        capacity
## 10941           Montgomery_Coll                                 characteristics
## 10942           Montgomery_Coll                                      collecting
## 10943           Montgomery_Coll                                        consumer
## 10944           Montgomery_Coll                                             crn
## 10945           Montgomery_Coll                                            diez
## 10946           Montgomery_Coll                                        explorer
## 10947           Montgomery_Coll                                         firefox
## 10948           Montgomery_Coll                                              id
## 10949           Montgomery_Coll                                            lies
## 10950           Montgomery_Coll                                              ml
## 10951           Montgomery_Coll                                         morning
## 10952           Montgomery_Coll                                       obtaining
## 10953           Montgomery_Coll                                       openintro
## 10954           Montgomery_Coll                                        register
## 10955           Montgomery_Coll                                            rely
## 10956           Montgomery_Coll                                         stanton
## 10957           Montgomery_Coll                                           upper
## 10958           Montgomery_Coll                                          week’s
## 10959           Montgomery_Coll                                  www.kaggle.com
## 10960                  UToronto                                         algebra
## 10961               NYU_IntroDS                                        cheating
## 10962               NYU_IntroDS                                     fundamental
## 10963                     Brown                                           basis
## 10964                     Brown                                        cleaning
## 10965                     Brown                                           cross
## 10966                     Brown                                        evaluate
## 10967                     Brown                                     fundamental
## 10968                     Brown                                  interpretation
## 10969                     Brown                                           intro
## 10970                     Brown                                          pandas
## 10971                     Brown                                     recommended
## 10972                     Brown                                         testing
## 10973                   UIU_207                                      difference
## 10974                   UIU_207                                         friends
## 10975                   UIU_207                                            gain
## 10976                   UIU_207                                         minutes
## 10977                   UIU_207                                       notebooks
## 10978                   UIU_207                                   participating
## 10979                UCBerkeley                                         context
## 10980                UCBerkeley                                        critical
## 10981                UCBerkeley                                              ds
## 10982                UCBerkeley                                    introductory
## 10983                UCBerkeley                                          tables
## 10984                UCBerkeley                                          values
## 10985                      CUNY                                       component
## 10986                      CUNY                                        includes
## 10987                      CUNY                                        overview
## 10988                      CUNY                                      technology
## 10989                   Harvard                                         concept
## 10990                   Harvard                                       extension
## 10991          William_and_Mary                                   collaboration
## 10992    UWisc_Madison_Modeling                                         project
## 10993              Georgia_Tech                                       variables
## 10994    UWisc_Madison_Modeling                                     statistical
## 10995            UniSys_Georgia                                  interpretation
## 10996            UniSys_Georgia                                         prepare
## 10997            UniSys_Georgia                                        sections
## 10998            UniSys_Georgia                                       textbooks
## 10999                       LSU                                         complex
## 11000                       LSU                                            hour
## 11001                       LSU                                             pre
## 11002                       LSU                                         respect
## 11003               NYU_IntroDS                                         explore
## 11004               NYU_IntroDS                                           write
## 11005                   Cornell                                          result
## 11006                     UUtah                                        provided
## 11007                    UMaine                                        discrete
## 11008                    UMaine                                          series
## 11009                   Harvard                                       anonymous
## 11010                   Harvard                                      approached
## 11011                   Harvard                                           array
## 11012                   Harvard                                           bruce
## 11013                   Harvard                                     bruce_huang
## 11014                   Harvard                                         clement
## 11015                   Harvard                                      conference
## 11016                   Harvard                                   configuration
## 11017                   Harvard                                   consideration
## 11018                   Harvard                                     constructor
## 11019                   Harvard                                          cursor
## 11020                   Harvard                                     emphasizing
## 11021                   Harvard                                   encapsulation
## 11022                   Harvard                                 fas.harvard.edu
## 11023                   Harvard                                         focuses
## 11024                   Harvard                                         fulfill
## 11025                   Harvard                                            head
## 11026                   Harvard                                           huang
## 11027                   Harvard                                        informal
## 11028                   Harvard                                     inheritance
## 11029                   Harvard                                        kimberly
## 11030                   Harvard                                           lucas
## 11031                   Harvard                                        master's
## 11032                   Harvard                                            moon
## 11033                   Harvard                                              oo
## 11034                   Harvard                                     overwhelmed
## 11035                   Harvard                                            ph.d
## 11036                   Harvard                                        preclass
## 11037                   Harvard                                    restrictions
## 11038                   Harvard                                            root
## 11039                   Harvard                                   subdiscipline
## 11040                   Harvard                                            ta's
## 11041                   Harvard                                  transportation
## 11042                   Harvard                                            typo
## 11043                   Harvard                    usingsources.fas.harvard.edu
## 11044                   Harvard                                            wifi
## 11045                   Harvard                                       workbench
## 11046                     UUtah                                             ada
## 11047                     UUtah                                         english
## 11048                     UUtah                                        pandemic
## 11049 UWisc_Madison_Programming                                        sciences
## 11050    UWisc_Madison_Modeling                                         sources
## 11051                       LSU                                             15z
## 11052                       LSU                                             1pm
## 11053                       LSU                                           1s0x0
## 11054                       LSU                                             20a
## 11055                       LSU                                            20be
## 11056                       LSU                                           20can
## 11057                       LSU                                          20code
## 11058                       LSU                                            20is
## 11059                       LSU                                           20pro
## 11060                       LSU                                   20programming
## 11061                       LSU                                    3d30.4094801
## 11062                       LSU                                             3m4
## 11063                       LSU                                              4d
## 11064                       LSU                                             4m5
## 11065                       LSU                                             8m2
## 11066                       LSU                           academicintegrity.php
## 11067                       LSU                                      addreessed
## 11068                       LSU                                        advocacy
## 11069                       LSU                                           andor
## 11070                       LSU                                     apologizing
## 11071                       LSU                                         attacks
## 11072                       LSU                                    biodiversity
## 11073                       LSU                                            biol
## 11074                       LSU                                        biol4800
## 11075                       LSU                                      biological
## 11076                       LSU                                       biologist
## 11077                       LSU                                         burdles
## 11078                       LSU                                        changing
## 11079                       LSU                                         charges
## 11080                       LSU                                       citations
## 11081                       LSU                                         citizen
## 11082                       LSU                                         climate
## 11083                       LSU                                           clone
## 11084                       LSU                                         combine
## 11085                       LSU                                         command
## 11086                       LSU                                     contributes
## 11087                       LSU                                      criticisms
## 11088                       LSU                                        daijiang
## 11089                       LSU                                        december
## 11090                       LSU                                   demonstrating
## 11091                       LSU                                      derogatory
## 11092                       LSU                                       differing
## 11093                       LSU                                      difficulty
## 11094                       LSU                                           dli30
## 11095                       LSU                                      dlilab.com
## 11096                       LSU                                         empathy
## 11097                       LSU                                   establishment
## 11098                       LSU                                        explicit
## 11099                       LSU                                       feedbacks
## 11100                       LSU                                         figures
## 11101                       LSU                                         fueling
## 11102                       LSU                                   functionality
## 11103                       LSU                                        googling
## 11104                       LSU                                      gracefully
## 11105                       LSU                                      graduation
## 11106                       LSU                                        gramming
## 11107                       LSU                                         graphic
## 11108                       LSU                                              gs
## 11109                       LSU                                         imagery
## 11110                       LSU                                   independently
## 11111                       LSU                                       insulting
## 11112                       LSU                                        johnston
## 11113                       LSU                                        kindness
## 11114                       LSU                                        literate
## 11115                       LSU                            literate_programming
## 11116                       LSU                                      literature
## 11117                       LSU                                       louisiana
## 11118                       LSU                                             lsb
## 11119                       LSU                                          lsb125
## 11120                       LSU                                           lsu's
## 11121                       LSU                                           macos
## 11122                       LSU                               mailto:disability
## 11123                       LSU                                    mailto:dli30
## 11124                       LSU                                        makrdown
## 11125                       LSU                                     measurement
## 11126                       LSU                                          moodle
## 11127                       LSU                                      ogenerated
## 11128                       LSU                                        overcome
## 11129                       LSU                                       political
## 11130                       LSU                                       profesoor
## 11131                       LSU                                     publishable
## 11132                       LSU                                       reproduce
## 11133                       LSU                                      requisties
## 11134                       LSU                                       rmarkdown
## 11135                       LSU                                      sexualized
## 11136                       LSU                                       telephone
## 11137                       LSU                                    transferable
## 11138                       LSU                                        trolling
## 11139                       LSU                                      unsolvable
## 11140                       LSU                                          victim
## 11141                       LSU                                      viewpoints
## 11142                       LSU                                       violating
## 11143                       LSU                                         volumes
## 11144                       LSU                                  www.google.com
## 11145                UCSanDiego                                            labs
## 11146                       UMD                                            week
## 11147                   UIU_107                                        detailed
## 11148                   UIU_107                                      difference
## 11149                   UIU_107                                            earn
## 11150                   UIU_107                                         friends
## 11151                   UIU_107                                          lowest
## 11152                   UIU_107                                         minutes
## 11153                   UIU_107                                   opportunities
## 11154                   UIU_107                                     surrounding
## 11155              Georgia_Tech                                       answering
## 11156              Georgia_Tech                                     comfortable
## 11157              Georgia_Tech                                       conducted
## 11158              Georgia_Tech                                        continue
## 11159              Georgia_Tech                                             dot
## 11160              Georgia_Tech                                        friedman
## 11161              Georgia_Tech                                          neural
## 11162              Georgia_Tech                                          o'neil
## 11163              Georgia_Tech                                  recommendation
## 11164              Georgia_Tech                                       thursdays
## 11165              Georgia_Tech                                        tuesdays
## 11166              Georgia_Tech                                            walk
## 11167                     UUtah                                         support
## 11168                    Drexel                                      discussion
## 11169               UWashington                                       submitted
## 11170                     UUtah                                           covid
## 11171                     UUtah                                        external
## 11172                     UUtah                                        o'reilly
## 11173                   UZurich                                        choosing
## 11174                   UZurich                                          global
## 11175                   UZurich                                  implementation
## 11176                   UZurich                                           local
## 11177                   UZurich                                    multivariate
## 11178                   UZurich                                          scikit
## 11179                   UZurich                                    unsupervised
## 11180                   Rutgers                                            arts
## 11181                   Rutgers                                       copyright
## 11182                   Rutgers                                        covering
## 11183                   Rutgers                                       efficient
## 11184                   Rutgers                                     individuals
## 11185                   Rutgers                                      inferences
## 11186                   Rutgers                                             map
## 11187                   Rutgers                                           minor
## 11188                   Rutgers                                   presentations
## 11189                   Rutgers                                       processes
## 11190                   Rutgers                                          reason
## 11191                   Rutgers                                       reasoning
## 11192                   Rutgers                                          search
## 11193                   Rutgers                                           sites
## 11194                   Rutgers                                           skill
## 11195                   Rutgers                                     suggestions
## 11196                       ASU                                          change
## 11197           Montgomery_Coll                                     demonstrate
## 11198           Montgomery_Coll                                      procedures
## 11199           Montgomery_Coll                                       professor
## 11200                    UMaine                                       solutions
## 11201                  UVA_Stat                                       assistant
## 11202                  UVA_Stat                                             mac
## 11203                  UVA_Stat                                         special
## 11204                   UVA_SDS                                          system
## 11205                UWisconsin                                          hadoop
## 11206                UWisconsin                                           reply
## 11207                UWisconsin                                          stored
## 11208           Montgomery_Coll                                       exercises
## 11209                   UIU_207                                         explore
## 11210                   UIU_207                                     submissions
## 11211                   UIU_207                                          credit
## 11212                UCSanDiego                                           space
## 11213                       MIT                                          degree
## 11214                       MIT                                        discrete
## 11215                       MIT                                          google
## 11216                       MIT                                             i.e
## 11217                       MIT                                         involve
## 11218                       MIT                                           minor
## 11219                       MIT                                          option
## 11220                       MIT                                         portion
## 11221                       MIT                                           terms
## 11222                       MIT                                           worth
## 11223                     UUtah                                       emergency
## 11224                       ASU                                          events
## 11225                Boston_Uni                                        cleaning
## 11226              USouthampton                                   accessibility
## 11227              USouthampton                                          design
## 11228              USouthampton                                         privacy
## 11229              USouthampton                                        provided
## 11230              USouthampton                                            sets
## 11231              USouthampton                                           study
## 11232              USouthampton                                       technical
## 11233                   Rutgers                                      department
## 11234                     UUtah                                          status
## 11235                   Cornell                                       completed
## 11236                   UVA_SDS                                         collect
## 11237                   UVA_SDS                                             lot
## 11238                   UVA_SDS                                          visual
## 11239                   UZurich                                       functions
## 11240                   UZurich                                           press
## 11241                   UZurich                                          theory
## 11242                   UZurich                                          vector
## 11243          Washington_State                                         process
## 11244                UCBerkeley                                            real
## 11245                       LSU                                        services
## 11246          William_and_Mary                                         running
## 11247          William_and_Mary                                           video
## 11248 UWisc_Madison_Programming                                     instruction
## 11249 UWisc_Madison_Programming                                   instructional
## 11250                       ASU                               academicintegrity
## 11251                       ASU                                         addenda
## 11252                       ASU                                         aliases
## 11253                       ASU                                     allegations
## 11254                       ASU                                         appears
## 11255                       ASU                                         arizona
## 11256                       ASU                                          axioms
## 11257                       ASU                                        believes
## 11258                       ASU                                      borderline
## 11259                       ASU                                            card
## 11260                       ASU                                         cengage
## 11261                       ASU                                    clas.asu.edu
## 11262                       ASU                                  confidentially
## 11263                       ASU                                        constant
## 11264                       ASU                                      continuity
## 11265                       ASU                                     contractors
## 11266                       ASU                                      coordinate
## 11267                       ASU                                          dean’s
## 11268                       ASU                                          denied
## 11269                       ASU                                      determines
## 11270                       ASU                               differentiability
## 11271                       ASU                                     directional
## 11272                       ASU                                disqualification
## 11273                       ASU                                      eikenberry
## 11274                       ASU                                    eoss.asu.edu
## 11275                       ASU                                        equation
## 11276                       ASU                                    establishing
## 11277                       ASU                                       excessive
## 11278                       ASU                                        excluded
## 11279                       ASU                                     exponential
## 11280                       ASU                                       expressly
## 11281                       ASU                                            food
## 11282                       ASU                                         formula
## 11283                       ASU                                           games
## 11284                       ASU                                          guests
## 11285                       ASU                                       guideline
## 11286                       ASU                                            heat
## 11287                       ASU                                         imposed
## 11288                       ASU                                      index.html
## 11289                       ASU                                      initiating
## 11290                       ASU                                    laboratories
## 11291                       ASU                                       lognormal
## 11292                       ASU                                        mandated
## 11293                       ASU                                           marko
## 11294                       ASU                                           masks
## 11295                       ASU                                 math.la.asu.edu
## 11296                       ASU                                       mathtools
## 11297                       ASU                                        matthews
## 11298                       ASU                                        morgan’s
## 11299                       ASU                                        nbgrader
## 11300                       ASU                                       newspaper
## 11301                       ASU                                         noisily
## 11302                       ASU                                       obligated
## 11303                       ASU                                       penalties
## 11304                       ASU                                    permutations
## 11305                       ASU                                          player
## 11306                       ASU                                         poisson
## 11307                       ASU                                      privileges
## 11308                       ASU                                       prohibits
## 11309                       ASU                                 provost.asu.edu
## 11310                       ASU                                             psh
## 11311                       ASU                                       qualified
## 11312                       ASU                                       raphson’s
## 11313                       ASU                                         records
## 11314                       ASU                                         refusal
## 11315                       ASU                                        reporter
## 11316                       ASU                                          reside
## 11317                       ASU                                            ring
## 11318                       ASU                                         ringing
## 11319                       ASU                                            ross
## 11320                       ASU                                          roster
## 11321                       ASU                                        seikenbe
## 11322                       ASU                                        sexually
## 11323                       ASU                sexualviolenceprevention.asu.edu
## 11324                       ASU                                         sheldon
## 11325                       ASU                                         steffen
## 11326                       ASU                              steffen.eikenberry
## 11327                       ASU                                         stewart
## 11328                       ASU                                         studios
## 11329                       ASU                                         tangent
## 11330                       ASU                                       tardiness
## 11331                       ASU                                           tempe
## 11332                       ASU                                       tolerated
## 11333                       ASU                                    transactions
## 11334                       ASU                                 transcendentals
## 11335                       ASU                                             tty
## 11336                       ASU                                uncorrelatedness
## 11337                       ASU                                            urns
## 11338                       ASU                                        vertical
## 11339                       ASU                                         violent
## 11340                       ASU                                         wearing
## 11341                       ASU                                       weighting
## 11342                       ASU                                        workshop
## 11343                       ASU                                            wxlr
## 11344                       ASU                                              xe
## 11345                   UIU_207                                          python
## 11346                  NYU_DS4E                                              ai
## 11347                  NYU_DS4E                                         broader
## 11348                  NYU_DS4E                                       causation
## 11349                  NYU_DS4E                                        controls
## 11350                  NYU_DS4E                                           don’t
## 11351                  NYU_DS4E                                       empirical
## 11352                  NYU_DS4E                                      histograms
## 11353                  NYU_DS4E                                      manipulate
## 11354                  NYU_DS4E                                           moses
## 11355                  NYU_DS4E                                         nyu.edu
## 11356                  NYU_DS4E                                        powerful
## 11357               NYU_IntroDS                                      accumulate
## 11358               NYU_IntroDS                                      anticipate
## 11359               NYU_IntroDS                                          assure
## 11360               NYU_IntroDS                                     calculating
## 11361               NYU_IntroDS                                        clusters
## 11362               NYU_IntroDS                                            cons
## 11363               NYU_IntroDS                                    contemporary
## 11364               NYU_IntroDS                                      correspond
## 11365               NYU_IntroDS                                      experiment
## 11366               NYU_IntroDS                                         fawcett
## 11367               NYU_IntroDS                                         fitting
## 11368               NYU_IntroDS                                     incorporate
## 11369               NYU_IntroDS                                   incorporating
## 11370               NYU_IntroDS                                        mosescsd
## 11371               NYU_IntroDS                                         nyu.edu
## 11372               NYU_IntroDS                                        outliers
## 11373               NYU_IntroDS                                         pattern
## 11374               NYU_IntroDS                                      programmed
## 11375               NYU_IntroDS                                          proper
## 11376               NYU_IntroDS                                            pros
## 11377               NYU_IntroDS                                          repeat
## 11378               NYU_IntroDS                                            rich
## 11379               NYU_IntroDS                                 transformations
## 11380                       UMD                                        research
## 11381              Georgia_Tech                                        lectures
## 11382                   Cornell                                         request
## 11383    UWisc_Madison_Modeling                                            aims
## 11384    UWisc_Madison_Modeling                                     calculation
## 11385    UWisc_Madison_Modeling                                      challenges
## 11386    UWisc_Madison_Modeling                                         concept
## 11387    UWisc_Madison_Modeling                                      hypothesis
## 11388    UWisc_Madison_Modeling                                        intended
## 11389    UWisc_Madison_Modeling                                       interpret
## 11390    UWisc_Madison_Modeling                                         minutes
## 11391    UWisc_Madison_Modeling                                     predictions
## 11392    UWisc_Madison_Modeling                                       transform
## 11393    UWisc_Madison_Modeling                                       typically
## 11394    UWisc_Madison_Modeling                                            wide
## 11395                   UZurich                                         methods
## 11396          Washington_State                                          linear
## 11397                    UMaine                                            copy
## 11398                    UMaine                                       homeworks
## 11399                    Drexel                                             map
## 11400                   UIU_107                                          social
## 11401                   UIU_107                                     submissions
## 11402                       MIT                                       exercises
## 11403          Washington_State                                       cambridge
## 11404          Washington_State                                             dot
## 11405          Washington_State                                       neighbors
## 11406          Washington_State                                       principal
## 11407          Washington_State                                            user
## 11408               NYU_IntroDS                                          linear
## 11409                     Brown                                         discuss
## 11410                     Brown                                          linear
## 11411          William_and_Mary                                       determine
## 11412          William_and_Mary                                         forests
## 11413          William_and_Mary                                           lasso
## 11414          William_and_Mary                                             net
## 11415          William_and_Mary                                         offices
## 11416          William_and_Mary                                  regularization
## 11417          William_and_Mary                                        remotely
## 11418          William_and_Mary                                     substantial
## 11419                       MIT                                      additional
## 11420 UWisc_Madison_Programming                                           prior
## 11421                    Drexel                                       confusion
## 11422                    Drexel                                           grant
## 11423                   Harvard                                            test
## 11424                 UKentucky                                      plagiarism
## 11425                  NYU_DS4E                                         finally
## 11426                  NYU_DS4E                                        generate
## 11427                  NYU_DS4E                                        optional
## 11428                       UMD                                           audit
## 11429                       UMD                                       authentic
## 11430                       UMD                                           award
## 11431                       UMD                                      capricious
## 11432                       UMD                                             gpa
## 11433                       UMD                                    intellectual
## 11434                       UMD                                      navigation
## 11435                       UMD                                         pending
## 11436                       UMD                                        property
## 11437                       UMD                                         rubrics
## 11438                       UMD                                    satisfactory
## 11439                       UMD                                     transcripts
## 11440                       UMD                                          umgc's
## 11441                       UMD                                        umgc.edu
## 11442                       UMD                                  unsatisfactory
## 11443                       UMD                                        withdrew
## 11444                 Princeton                                      regression
## 11445                 Princeton                                           model
## 11446                  UToronto                                     fundamental
## 11447                  UToronto                                  responsibility
## 11448          Washington_State                                            book
## 11449                  NYU_DS4E                                       functions
## 11450               NYU_IntroDS                                         credits
## 11451               NYU_IntroDS                                          result
## 11452               NYU_IntroDS                                      validation
## 11453                     Brown                                         aspects
## 11454                     Brown                                        features
## 11455                     Brown                                        findings
## 11456                     Brown                                          vector
## 11457                  UVA_Stat                                           found
## 11458                  UVA_Stat                                        modeling
## 11459                  UVA_Stat                                           times
## 11460 UWisc_Madison_Programming                                    quantitative
## 11461                      CUNY                                        designed
## 11462                      CUNY                                           short
## 11463                UCSanDiego                                        notebook
## 11464          William_and_Mary                                        decision
## 11465          William_and_Mary                                          monday
## 11466              Georgia_Tech                                         covered
## 11467                  NYU_DS4E                                            labs
## 11468                 UKentucky                                      conducting
## 11469                 UKentucky                                      facilitate
## 11470                 UKentucky                                            html
## 11471                 UKentucky                                   organizations
## 11472                 UKentucky                                responsibilities
## 11473                 UKentucky                                        returned
## 11474                 UKentucky                                     substantive
## 11475                 UKentucky                                    verification
## 11476                 UKentucky                                        weekends
## 11477                UWisconsin                                      relational
## 11478              USouthampton                                         methods
## 11479               NYU_IntroDS                                         meeting
## 11480               NYU_IntroDS                                           weeks
## 11481                 Princeton                                        adjusted
## 11482                 Princeton                                        friedman
## 11483                 Princeton                                       principal
## 11484                 Princeton                                      properties
## 11485                 Princeton                                      supervised
## 11486                 Princeton                                    unsupervised
## 11487            UniSys_Georgia                                         aspects
## 11488            UniSys_Georgia                                         central
## 11489            UniSys_Georgia                                      collection
## 11490            UniSys_Georgia                                       decisions
## 11491            UniSys_Georgia                                       functions
## 11492            UniSys_Georgia                                     inferential
## 11493            UniSys_Georgia                                            john
## 11494                       ASU                                          python
## 11495    UWisc_Madison_Modeling                                     environment
## 11496    UWisc_Madison_Modeling                                             lab
## 11497                Boston_Uni                                            11am
## 11498                Boston_Uni                                          adhere
## 11499                Boston_Uni                                          adjust
## 11500                Boston_Uni                                        arriving
## 11501                Boston_Uni                                          blocks
## 11502                Boston_Uni                                            busy
## 11503                Boston_Uni                                              ca
## 11504                Boston_Uni                                      collecting
## 11505                Boston_Uni                                    connectivity
## 11506                Boston_Uni                                      creativity
## 11507                Boston_Uni                                           dealt
## 11508                Boston_Uni                                              e1
## 11509                Boston_Uni                                              e2
## 11510                Boston_Uni                                              e3
## 11511                Boston_Uni                                     efficiently
## 11512                Boston_Uni                                            fast
## 11513                Boston_Uni                                          fellow
## 11514                Boston_Uni                                         fellows
## 11515                Boston_Uni                                       forbidden
## 11516                Boston_Uni                                            grus
## 11517                Boston_Uni                                           heavy
## 11518                Boston_Uni                                          highly
## 11519                Boston_Uni                                             hom
## 11520                Boston_Uni                                 implementations
## 11521                Boston_Uni                                     incompletes
## 11522                Boston_Uni                                            joel
## 11523                Boston_Uni                                        leskovec
## 11524                Boston_Uni                                             lin
## 11525                Boston_Uni                                          orally
## 11526                Boston_Uni                                     permissible
## 11527                Boston_Uni                                           plans
## 11528                Boston_Uni                                            prof
## 11529                Boston_Uni                                      respective
## 11530                Boston_Uni                                         scratch
## 11531                Boston_Uni                                       september
## 11532                Boston_Uni                                          serves
## 11533                Boston_Uni                                    supplemental
## 11534                Boston_Uni                                             svd
## 11535                Boston_Uni                                             svm
## 11536                Boston_Uni                                             wed
## 11537                 UKentucky                                       exercises
## 11538                 UKentucky                                      technology
## 11539                      CUNY                                   participation
## 11540                      CUNY                                         written
## 11541                UCBerkeley                                   documentation
## 11542                UCBerkeley                                          output
## 11543                UCBerkeley                                    perspectives
## 11544                UCBerkeley                                         society
## 11545                UCBerkeley                                     surrounding
## 11546                      CUNY                                        absences
## 11547                      CUNY                                        anaconda
## 11548                      CUNY                                       dependent
## 11549                      CUNY                                     distributed
## 11550                      CUNY                                         examine
## 11551                      CUNY                                     experiences
## 11552                      CUNY                                         factors
## 11553                      CUNY                                          fields
## 11554                      CUNY                                       graphical
## 11555                      CUNY                                          handle
## 11556                      CUNY                                           human
## 11557                      CUNY                                      identities
## 11558                      CUNY                                        informed
## 11559                      CUNY                                      introduces
## 11560                      CUNY                                      matplotlib
## 11561                      CUNY                                         modules
## 11562                      CUNY                                     preliminary
## 11563                      CUNY                                        prepared
## 11564                      CUNY                                      structures
## 11565                UCSanDiego                                           score
## 11566                   UIU_207                                            00pm
## 11567                   UIU_207                                         achieve
## 11568                   UIU_207                                           added
## 11569                   UIU_207                                        analytic
## 11570                   UIU_207                                       automatic
## 11571                   UIU_207                                        handbook
## 11572                   UIU_207                                   instructional
## 11573                   UIU_207                                            lead
## 11574                   UIU_207                                           linux
## 11575                   UIU_207                                              os
## 11576                   UIU_207                                      submitting
## 11577                   UIU_207                                       supported
## 11578                   UIU_207                                         talking
## 11579          William_and_Mary                                   communication
## 11580                       MIT                                           final
## 11581                       UMD                                       resources
## 11582               UWashington                                  classification
## 11583               UWashington                                      encouraged
## 11584               UWashington                                             web
## 11585                   Harvard                                     requirement
## 11586                   Harvard                                            seek
## 11587                       LSU                                     appointment
## 11588                       LSU                                        generate
## 11589                       LSU                                          reason
## 11590                    UMaine                                         process
## 11591                  UToronto                                        lectures
## 11592                  UToronto                                        projects
## 11593                   Cornell                                            late
## 11594                       UMD                                          relate
## 11595                 Princeton                                        document
## 11596                 Princeton                                          theory
## 11597           Montgomery_Coll                                        policies
## 11598           Montgomery_Coll                                         privacy
## 11599          Washington_State                                          campus
## 11600            UniSys_Georgia                                       including
## 11601           Montgomery_Coll                                         respond
## 11602                   UIU_207                                        includes
## 11603                   Cornell                                     implemented
## 11604                   Cornell                                              ix
## 11605                   Cornell                                        military
## 11606                   Cornell                                      observance
## 11607                   Cornell                                    reproducible
## 11608                   Cornell                                        strength
## 11609                   Cornell                                           tasks
## 11610               NYU_IntroDS                                      regression
## 11611                   UIU_107                                          amount
## 11612                   UIU_107                                       automatic
## 11613                   UIU_107                                          called
## 11614                   UIU_107                                           click
## 11615                   UIU_107                                      conceptual
## 11616                   UIU_107                                           linux
## 11617                   UIU_107                                              os
## 11618                   UIU_107                                       reasoning
## 11619                   UIU_107                                          recent
## 11620                   UIU_107                                         reflect
## 11621                   UIU_107                                       supported
## 11622                   UIU_107                                         talking
## 11623                    UMaine                                            date
## 11624                    UMaine                                           covid
## 11625                    UMaine                                     distributed
## 11626                    UMaine                                     examination
## 11627                    UMaine                                        holidays
## 11628                    UMaine                                       intervals
## 11629                    UMaine                                          manual
## 11630                    UMaine                                       reporting
## 11631                    UMaine                                       student’s
## 11632                    UMaine                                      violations
## 11633                   Rutgers                                           goals
## 11634                   Rutgers                                            list
## 11635                   Harvard                                       integrity
## 11636                   Harvard                                          source
## 11637              USouthampton                                           build
## 11638              USouthampton                                            site
## 11639              USouthampton                                          taking
## 11640                   UIU_207                                         section
## 11641                  UVA_Stat                                           ahead
## 11642                  UVA_Stat                                     immediately
## 11643                  UVA_Stat                                    individually
## 11644                  UVA_Stat                                        mistakes
## 11645                  UVA_Stat                                       regularly
## 11646                   Cornell                                     application
## 11647                   Cornell                                          letter
## 11648                Boston_Uni                                       functions
## 11649                       UMD                                      completion
## 11650                  UToronto                                             4th
## 11651                  UToronto                                        acquired
## 11652                  UToronto                                          advise
## 11653                  UToronto                                           brain
## 11654                  UToronto                                   complications
## 11655                  UToronto                                  decompositions
## 11656                  UToronto                                      discipline
## 11657                  UToronto                                            fine
## 11658                  UToronto                                        injuries
## 11659                  UToronto                                           jason
## 11660                  UToronto                                           naïve
## 11661                  UToronto                                       operation
## 11662                  UToronto                                         other's
## 11663                  UToronto                                       pregnancy
## 11664                  UToronto                                        register
## 11665                  UToronto                                          severe
## 11666                  UToronto                                       suspected
## 11667                  UToronto                                             svd
## 11668                  UToronto                                       tutorials
## 11669                  UToronto                                          verify
## 11670                  UToronto                                          vision
## 11671                     UUtah                                            math
## 11672                     UUtah                                         project
## 11673                   UZurich                                         finding
## 11674                UWisconsin                                     recommended
## 11675                UCBerkeley                                   computational
## 11676                UCBerkeley                                          social
## 11677                   Rutgers                                         connect
## 11678                   Rutgers                                       effective
## 11679                   Rutgers                                         examine
## 11680                   Rutgers                                           login
## 11681                   Rutgers                                          manner
## 11682                   Rutgers                                            news
## 11683                   Rutgers                                        patterns
## 11684                   Rutgers                                           quick
## 11685                   Rutgers                                          rights
## 11686                   Rutgers                                       visualize
## 11687                       MIT                                          attend
## 11688                       MIT                                      attendance
## 11689                   UIU_107                                        includes
## 11690                   UIU_107                                          letter
## 11691                UCSanDiego                                   accomodations
## 11692                UCSanDiego                                      enrollment
## 11693                UCSanDiego                                           ipynb
## 11694                  UToronto                                    disabilities
## 11695                       ASU                                    arrangements
## 11696                       ASU                                          gender
## 11697                       ASU                                          inform
## 11698                       ASU                                          missed
## 11699                       ASU                                       religious
## 11700               NYU_IntroDS                                          issues
## 11701                     Brown                                          issues
## 11702                   UIU_107                                      understand
## 11703              Georgia_Tech                                      convenient
## 11704              Georgia_Tech                                       davenport
## 11705              Georgia_Tech                                       extremely
## 11706              Georgia_Tech                                          filter
## 11707              Georgia_Tech                                        focusing
## 11708              Georgia_Tech                                     formulation
## 11709              Georgia_Tech                                      generative
## 11710              Georgia_Tech                                          master
## 11711              Georgia_Tech                                          newton
## 11712              Georgia_Tech                                           noise
## 11713              Georgia_Tech                                         notions
## 11714              Georgia_Tech                                   reinforcement
## 11715              Georgia_Tech                                        remotely
## 11716              Georgia_Tech                                            risk
## 11717              Georgia_Tech                                          signal
## 11718              Georgia_Tech                                      stochastic
## 11719              Georgia_Tech                                           story
## 11720              Georgia_Tech                                           theme
## 11721              Georgia_Tech                                         vectors
## 11722           Montgomery_Coll                                       resources
## 11723 UWisc_Madison_Programming                                             1st
## 11724 UWisc_Madison_Programming                                      applicable
## 11725 UWisc_Madison_Programming                                       deduction
## 11726 UWisc_Madison_Programming                                        wisc.edu
## 11727                       MIT                                             day
## 11728                   Cornell                                            labs
## 11729                     UUtah                                          mental
## 11730                       MIT                                          assign
## 11731                       MIT                                      confidence
## 11732                       MIT                                        creative
## 11733                       MIT                                           excel
## 11734                       MIT                                          global
## 11735                       MIT                                            info
## 11736                       MIT                                       intervals
## 11737                       MIT                                            isbn
## 11738                       MIT                                         license
## 11739                       MIT                                           offer
## 11740                       MIT                                         percent
## 11741                       MIT                                       remaining
## 11742                       MIT                                           track
## 11743                   Harvard                                      processing
## 11744                   Harvard                                            zoom
## 11745                   UZurich                                       confusion
## 11746                   UZurich                                        matrices
## 11747                   UZurich                                           multi
## 11748                   UZurich                                             roc
## 11749                   UZurich                                        springer
## 11750                   UZurich                                           tasks
## 11751                    Drexel                                           blogs
## 11752                    Drexel                                          bubble
## 11753                    Drexel                                        equality
## 11754                    Drexel                                          forbes
## 11755                    Drexel                                  www.forbes.com
## 11756                    Drexel                                 www.nytimes.com
## 11757                    Drexel                                   www.wired.com
## 11758 UWisc_Madison_Programming                                           exams
## 11759            UniSys_Georgia                                           apply
## 11760            UniSys_Georgia                                          issues
## 11761                   UVA_SDS                                              ds
## 11762                       LSU                                         current
## 11763                       LSU                                            hall
## 11764    UWisc_Madison_Modeling                                     acquisition
## 11765    UWisc_Madison_Modeling                                     collaborate
## 11766    UWisc_Madison_Modeling                                      contribute
## 11767    UWisc_Madison_Modeling                                        creation
## 11768    UWisc_Madison_Modeling                                        generate
## 11769    UWisc_Madison_Modeling                                          google
## 11770    UWisc_Madison_Modeling                                         involve
## 11771    UWisc_Madison_Modeling                                           meant
## 11772    UWisc_Madison_Modeling                                          sample
## 11773                 Princeton                                         details
## 11774                 Princeton                                        multiple
## 11775           Montgomery_Coll                                        projects
## 11776                UCSanDiego                                        question
## 11777 UWisc_Madison_Programming                                             mwf
## 11778                  UVA_Stat                                             lab
## 11779                  UVA_Stat                                           write
## 11780                 UKentucky                                         quality
## 11781                      CUNY                                          format
## 11782                  UToronto                                          action
## 11783                  UToronto                                           range
## 11784                  NYU_DS4E                                        thinking
## 11785              Georgia_Tech                                        networks
## 11786              Georgia_Tech                                         solving
## 11787                  NYU_DS4E                                       inference
## 11788          Washington_State                                           bayes
## 11789           Montgomery_Coll                                          center
## 11790                    Drexel                                      incomplete
## 11791                   UIU_107                                        semester
## 11792               NYU_IntroDS                                           bayes
## 11793               NYU_IntroDS                                        logistic
## 11794               NYU_IntroDS                                          values
## 11795                     Brown                                         context
## 11796                     Brown                                  dimensionality
## 11797                     Brown                                     effectively
## 11798                     Brown                                    expectations
## 11799                     Brown                                            hard
## 11800                     Brown                                           meets
## 11801                     Brown                                       reduction
## 11802                     Brown                                           title
## 11803                     Brown                                        training
## 11804                     Brown                                           trees
## 11805                   UZurich                                         algebra
## 11806                   UZurich                                      algorithms
## 11807                   UVA_SDS                                         advance
## 11808                   UVA_SDS                                      categories
## 11809                   UVA_SDS                                          define
## 11810                   UVA_SDS                                        director
## 11811                   UVA_SDS                                           essay
## 11812                   UVA_SDS                                       extremely
## 11813                   UVA_SDS                                           leave
## 11814                   UVA_SDS                                          rubric
## 11815                 Princeton                                     foundations
## 11816    UWisc_Madison_Modeling                                     probability
## 11817                 UKentucky                                       knowledge
## 11818                 UKentucky                                        policies
## 11819 UWisc_Madison_Programming                                          lowest
## 11820              USouthampton                                         include
## 11821            UniSys_Georgia                                     conclusions
## 11822            UniSys_Georgia                                       detection
## 11823            UniSys_Georgia                                          driven
## 11824            UniSys_Georgia                                     effectively
## 11825            UniSys_Georgia                                           field
## 11826            UniSys_Georgia                                          graphs
## 11827            UniSys_Georgia                                    manipulation
## 11828            UniSys_Georgia                                          mining
## 11829            UniSys_Georgia                                    quantitative
## 11830            UniSys_Georgia                                        sampling
## 11831            UniSys_Georgia                                          tables
## 11832 UWisc_Madison_Programming                                            quiz
## 11833                  NYU_DS4E                                        insights
## 11834                  NYU_DS4E                                         package
## 11835                  NYU_DS4E                                      scientific
## 11836                       MIT                                        lectures
## 11837               UWashington                                       completed
## 11838               UWashington                                     environment
## 11839               UWashington                                             lab
## 11840               UWashington                                        practice
## 11841               UWashington                                         receive
## 11842                UWisconsin                                        calendar
## 11843                       UMD                                         courses
## 11844          Washington_State                                         authors
## 11845          Washington_State                                           carry
## 11846          Washington_State                                         forests
## 11847          Washington_State                                           plots
## 11848          Washington_State                                           teams
## 11849                UWisconsin                                            word
## 11850                       ASU                                         edition
## 11851                   Cornell                                      challenges
## 11852                   Cornell                                          lowest
## 11853                   Cornell                                      successful
## 11854          Washington_State                                       integrity
## 11855                   UIU_207                                          answer
## 11856                   UIU_207                                       inference
## 11857                   UIU_207                                         sharing
## 11858                UCBerkeley                                       automatic
## 11859                UCBerkeley                                          called
## 11860                UCBerkeley                                          charts
## 11861                UCBerkeley                                         correct
## 11862                UCBerkeley                                        creation
## 11863                UCBerkeley                                   instructional
## 11864                UCBerkeley                                     interactive
## 11865                UCBerkeley                                        machines
## 11866                UCBerkeley                                           numpy
## 11867                UCBerkeley                                      repository
## 11868                UCBerkeley                                          series
## 11869                UCBerkeley                                         similar
## 11870                UCBerkeley                                          videos
## 11871                UWisconsin                                         medical
## 11872                UWisconsin                                          server
## 11873                       UMD                                       wrangling
## 11874                   Harvard                                        policies
## 11875                   Rutgers                                         covered
## 11876                   Rutgers                                            home
## 11877              USouthampton                                        advanced
## 11878              USouthampton                                      coursework
## 11879                   UIU_207                                         applies
## 11880                   UIU_207                                        continue
## 11881                   UIU_207                                       discovery
## 11882                   UIU_207                                      dishonesty
## 11883                   UIU_207                                          else's
## 11884                   UIU_207                                         equally
## 11885                   UIU_207                                          errors
## 11886                   UIU_207                                       exception
## 11887                   UIU_207                                          fields
## 11888                   UIU_207                                           happy
## 11889                   UIU_207                                              ii
## 11890                   UIU_207                                        incident
## 11891                   UIU_207                                        industry
## 11892                   UIU_207                                         install
## 11893                   UIU_207                                             mwf
## 11894                   UIU_207                                           quick
## 11895                   UIU_207                                       sanctions
## 11896                   UIU_207                                        settings
## 11897                   UIU_207                                      thresholds
## 11898                   UIU_207                                         updated
## 11899           Montgomery_Coll                                            call
## 11900           Montgomery_Coll                                       emergency
## 11901           Montgomery_Coll                                            hand
## 11902           Montgomery_Coll                                   participating
## 11903           Montgomery_Coll                                            view
## 11904                     Brown                                         machine
## 11905                     Brown                                          models
## 11906                     Brown                                            real
## 11907                       UMD                                      assessment
## 11908                       UMD                                         current
## 11909                UCBerkeley                                       computing
## 11910                UCBerkeley                                       solutions
## 11911                Boston_Uni                                          graphs
## 11912                Boston_Uni                                         limited
## 11913                Boston_Uni                                          mining
## 11914                UWisconsin                                       scientist
## 11915                   Harvard                                      acceptable
## 11916                   Harvard                                        citation
## 11917                   Harvard                                           excel
## 11918                   Harvard                                       filtering
## 11919                   Harvard                                           forum
## 11920                   Harvard                                       platforms
## 11921                   Harvard                                         updated
## 11922                   Rutgers                                          weekly
## 11923                   UIU_107                                          answer
## 11924                   UIU_107                                          design
## 11925                   UIU_107                                         sharing
## 11926           Montgomery_Coll                                            117a
## 11927           Montgomery_Coll                                          accept
## 11928           Montgomery_Coll                           access.blackboard.com
## 11929           Montgomery_Coll                                  administrative
## 11930           Montgomery_Coll                                          agreed
## 11931           Montgomery_Coll                             archive.ics.uci.edu
## 11932           Montgomery_Coll                                            aspx
## 11933           Montgomery_Coll                                        assemble
## 11934           Montgomery_Coll                                        auditing
## 11935           Montgomery_Coll                                    blackboard’s
## 11936           Montgomery_Coll                                 breakdowncourse
## 11937           Montgomery_Coll                                        bringing
## 11938           Montgomery_Coll                                            bsad
## 11939           Montgomery_Coll                                       cancelled
## 11940           Montgomery_Coll                                           cb122
## 11941           Montgomery_Coll                                      centinkaya
## 11942           Montgomery_Coll                                     collegewide
## 11943           Montgomery_Coll                                       college’s
## 11944           Montgomery_Coll                                        conducts
## 11945           Montgomery_Coll                                         consent
## 11946           Montgomery_Coll                                          corner
## 11947           Montgomery_Coll                                  correspondence
## 11948           Montgomery_Coll                                    customizable
## 11949           Montgomery_Coll                              data.worldbank.org
## 11950           Montgomery_Coll                                         delayed
## 11951           Montgomery_Coll                                          delays
## 11952           Montgomery_Coll                                      dependents
## 11953           Montgomery_Coll                                        doctor’s
## 11954           Montgomery_Coll                                        downtime
## 11955           Montgomery_Coll                                             dss
## 11956           Montgomery_Coll                                      evacuation
## 11957           Montgomery_Coll                                     evacuations
## 11958           Montgomery_Coll                                         funeral
## 11959           Montgomery_Coll                                      government
## 11960           Montgomery_Coll                                            icon
## 11961           Montgomery_Coll                                          irvine
## 11962           Montgomery_Coll                                            jeff
## 11963           Montgomery_Coll                                          larger
## 11964           Montgomery_Coll                                            leek
## 11965           Montgomery_Coll                                     maintenance
## 11966           Montgomery_Coll                                      mcsyllabus
## 11967           Montgomery_Coll                                            mymc
## 11968           Montgomery_Coll                                        openings
## 11969           Montgomery_Coll                                       personnel
## 11970           Montgomery_Coll                                         pertain
## 11971           Montgomery_Coll                                     photographs
## 11972           Montgomery_Coll                                          plain2
## 11973           Montgomery_Coll                                     proficiency
## 11974           Montgomery_Coll                                          refund
## 11975           Montgomery_Coll                                  representative
## 11976           Montgomery_Coll                                         retakes
## 11977           Montgomery_Coll                                           sa172
## 11978           Montgomery_Coll                                              ss
## 11979           Montgomery_Coll                                           st233
## 11980           Montgomery_Coll                                        supplies
## 11981           Montgomery_Coll                                          ticket
## 11982           Montgomery_Coll                                         tobacco
## 11983           Montgomery_Coll                                              tp
## 11984           Montgomery_Coll                                        utilized
## 11985           Montgomery_Coll                                       voluntary
## 11986           Montgomery_Coll                                    www.data.gov
## 11987                       MIT                                         covered
## 11988                       MIT                                          taking
## 11989                   Cornell                                          canvas
## 11990                   Cornell                                        requests
## 11991                 Princeton                                            50pm
## 11992                 Princeton                                       financial
## 11993                 Princeton                                     project.org
## 11994                       LSU                                           clean
## 11995                       LSU                                     experiences
## 11996                       LSU                                         private
## 11997                       LSU                                           spend
## 11998          Washington_State                                        modeling
## 11999          William_and_Mary                                   convolutional
## 12000          William_and_Mary                                            csci
## 12001          William_and_Mary                                         desktop
## 12002          William_and_Mary                                         elastic
## 12003          William_and_Mary                                            fold
## 12004          William_and_Mary                                        ordinary
## 12005          William_and_Mary                                      perceptron
## 12006          William_and_Mary                                             pwd
## 12007                     Brown                                  classification
## 12008                     Brown                                         sources
## 12009                      CUNY                                        accurate
## 12010                      CUNY                                          assume
## 12011                      CUNY                                          biases
## 12012                      CUNY                                   comprehension
## 12013                      CUNY                                        counting
## 12014                      CUNY                                         digital
## 12015                      CUNY                                          enable
## 12016                      CUNY                                         excused
## 12017                      CUNY                                       expressed
## 12018                      CUNY                                      expression
## 12019                      CUNY                                            move
## 12020                      CUNY                                         promote
## 12021                      CUNY                                       reinforce
## 12022                      CUNY                                 representations
## 12023                      CUNY                                       sexuality
## 12024                      CUNY                                        studying
## 12025                      CUNY                                        suitable
## 12026                  UVA_Stat                                            00pm
## 12027                  UVA_Stat                                        assessed
## 12028                  UVA_Stat                                     collaborate
## 12029                  UVA_Stat                                         consult
## 12030                  UVA_Stat                                      contribute
## 12031                  UVA_Stat                                         helpful
## 12032                  UVA_Stat                                            join
## 12033                  UVA_Stat                                           pages
## 12034                  UVA_Stat                                        platform
## 12035                  UVA_Stat                                       situation
## 12036                  UVA_Stat                                            stat
## 12037                  UToronto                                     foundations
## 12038                    Drexel                                           jason
## 12039                    Drexel                                         journal
## 12040                  NYU_DS4E                                             key
## 12041                  NYU_DS4E                                         testing
## 12042                   UZurich                                      definition
## 12043                   UZurich                                        exercise
## 12044                   UZurich                                      prediction
## 12045                   UIU_107                                         applies
## 12046                   UIU_107                                           bonus
## 12047                   UIU_107                                   comprehensive
## 12048                   UIU_107                                        continue
## 12049                   UIU_107                                      dishonesty
## 12050                   UIU_107                                          else's
## 12051                   UIU_107                                       exception
## 12052                   UIU_107                                         fridays
## 12053                   UIU_107                                        incident
## 12054                   UIU_107                                         install
## 12055                   UIU_107                                       sanctions
## 12056                   UIU_107                                          single
## 12057                   UIU_107                                             tas
## 12058                   Cornell                                        practice
## 12059                   Cornell                                        services
## 12060                    UMaine                                           trees
## 12061           Montgomery_Coll                                   participation
## 12062            UniSys_Georgia                                         sources
## 12063                     UUtah                                             cis
## 12064                     UUtah                                           union
## 12065                 Princeton                                      algorithms
## 12066                       ASU                                    mathematical
## 12067                       LSU                                          github
## 12068          William_and_Mary                                       structure
## 12069                  UVA_Stat                                        addition
## 12070                  UVA_Stat                                         meeting
## 12071                 UKentucky                                        customer
## 12072                 UKentucky                                           delay
## 12073                 UKentucky                                           posed
## 12074                 UKentucky                                  studentaffairs
## 12075                 UKentucky                                   technological
## 12076                 UKentucky                                      thoughtful
## 12077                 UKentucky                                        valuable
## 12078                 UKentucky                                        weekdays
## 12079                      CUNY                                         jupyter
## 12080                    Drexel                                          search
## 12081                    Drexel                                           sites
## 12082                    UMaine                                          binary
## 12083                    UMaine                                           chain
## 12084                    UMaine                                         density
## 12085                    UMaine                                      disruptive
## 12086                    UMaine                                     independent
## 12087                    UMaine                                        uploaded
## 12088              Georgia_Tech                                        programs
## 12089              Georgia_Tech                                       scheduled
## 12090                     UUtah                                         medical
## 12091                  UToronto                                           start
## 12092          William_and_Mary                                             e.g
## 12093                       ASU                                        absences
## 12094                       ASU                                        activity
## 12095                       ASU                                          covers
## 12096                       ASU                                            dean
## 12097                       ASU                                      dishonesty
## 12098                       ASU                                         failure
## 12099                       ASU                                          return
## 12100 UWisc_Madison_Programming                                         allowed
## 12101 UWisc_Madison_Programming                                        cheating
## 12102                     UUtah                                      assessment
## 12103    UWisc_Madison_Modeling                                          random
## 12104    UWisc_Madison_Modeling                                           short
## 12105                    Drexel                                       analytics
## 12106                    Drexel                                        calculus
## 12107          Washington_State                                       emergency
## 12108          Washington_State                                         product
## 12109          Washington_State                                       selection
## 12110              Georgia_Tech                                          campus
## 12111                   UIU_107                                        computer
## 12112                   UZurich                                        examples
## 12113                   Rutgers                                       admission
## 12114                   Rutgers                                      complaints
## 12115                   Rutgers                                        concrete
## 12116                   Rutgers                                    consequences
## 12117                   Rutgers                                        director
## 12118                   Rutgers                                       extremely
## 12119                   Rutgers                                          formal
## 12120                   Rutgers                                     institution
## 12121                   Rutgers                                    intermediate
## 12122                   Rutgers                                           issue
## 12123                   Rutgers                                          master
## 12124                   Rutgers                                      meaningful
## 12125                   Rutgers                                    prerequisite
## 12126                   Rutgers                                         profile
## 12127                   Rutgers                                    relationship
## 12128                   Rutgers                                     traditional
## 12129                   Rutgers                                         typical
## 12130                 UKentucky                                        response
## 12131               UWashington                                       component
## 12132               UWashington                                      determined
## 12133               UWashington                                     probability
## 12134                  NYU_DS4E                                      hypothesis
## 12135                  NYU_DS4E                                       interpret
## 12136               NYU_IntroDS                                         complex
## 12137               NYU_IntroDS                                            term
## 12138               NYU_IntroDS                                       typically
## 12139                     Brown                                       implement
## 12140                     Brown                                         initial
## 12141                     Brown                                       interpret
## 12142                     Brown                                     surrounding
## 12143                     Brown                                            wide
## 12144                UWisconsin                                         perform
## 12145                UCSanDiego                                         regrade
## 12146    UWisc_Madison_Modeling                                     assessments
## 12147    UWisc_Madison_Modeling                                      confidence
## 12148    UWisc_Madison_Modeling                                         examine
## 12149    UWisc_Madison_Modeling                                        graphics
## 12150    UWisc_Madison_Modeling                                       intervals
## 12151    UWisc_Madison_Modeling                                      introduces
## 12152    UWisc_Madison_Modeling                                             low
## 12153    UWisc_Madison_Modeling                                            news
## 12154    UWisc_Madison_Modeling                                        settings
## 12155    UWisc_Madison_Modeling                                          single
## 12156    UWisc_Madison_Modeling                                           spend
## 12157    UWisc_Madison_Modeling                                    successfully
## 12158    UWisc_Madison_Modeling                                       summarize
## 12159    UWisc_Madison_Modeling                                       visualize
## 12160    UWisc_Madison_Modeling                                        weighted
## 12161                     UUtah                                          center
## 12162                       UMD                                             pts
## 12163                    UMaine                                        decision
## 12164                    UMaine                                       statement
## 12165                  NYU_DS4E                                              4p
## 12166                  NYU_DS4E                                 congratulations
## 12167                  NYU_DS4E                                        facebook
## 12168                  NYU_DS4E                                            ings
## 12169                  NYU_DS4E                                          mill’s
## 12170                  NYU_DS4E                                             ols
## 12171                  NYU_DS4E                                      principled
## 12172                  NYU_DS4E                                           we’ll
## 12173                  NYU_DS4E                                           we’ve
## 12174                  NYU_DS4E                                          widely
## 12175                  NYU_DS4E                                          you’ve
## 12176               NYU_IntroDS                                   abnormalities
## 12177               NYU_IntroDS                                       avoidance
## 12178               NYU_IntroDS                                          biased
## 12179               NYU_IntroDS                                      bookstores
## 12180               NYU_IntroDS                                           catch
## 12181               NYU_IntroDS                                        cohesive
## 12182               NYU_IntroDS                                      disclosure
## 12183               NYU_IntroDS                                        evidence
## 12184               NYU_IntroDS                                     federalists
## 12185               NYU_IntroDS                                       finalized
## 12186               NYU_IntroDS                                           fixed
## 12187               NYU_IntroDS                                      geographic
## 12188               NYU_IntroDS                                             idf
## 12189               NYU_IntroDS                                        initials
## 12190               NYU_IntroDS                                            jazz
## 12191               NYU_IntroDS                                         leakage
## 12192               NYU_IntroDS                                            lift
## 12193               NYU_IntroDS                                       musicians
## 12194               NYU_IntroDS                                      occurrence
## 12195               NYU_IntroDS                                        puzzling
## 12196               NYU_IntroDS                                       redundant
## 12197               NYU_IntroDS                                    representing
## 12198               NYU_IntroDS                                         sampled
## 12199               NYU_IntroDS                                       specifics
## 12200               NYU_IntroDS                                           stand
## 12201               NYU_IntroDS                                              ua
## 12202               NYU_IntroDS                                           wrote
## 12203               NYU_IntroDS                                 www.nyu.edu.csd
## 12204                   Cornell                                             1st
## 12205                   Cornell                                            daca
## 12206                   Cornell                                          freely
## 12207                   Cornell                                       incorrect
## 12208                   Cornell                                      introduced
## 12209                   Cornell                                    periodically
## 12210                   Cornell                                    significance
## 12211                       MIT                                        material
## 12212            UniSys_Georgia                                        accuracy
## 12213            UniSys_Georgia                                          chance
## 12214            UniSys_Georgia                                      completing
## 12215            UniSys_Georgia                                     correlation
## 12216            UniSys_Georgia                                     descriptive
## 12217            UniSys_Georgia                                     expressions
## 12218            UniSys_Georgia                                      hypothesis
## 12219            UniSys_Georgia                                      importance
## 12220            UniSys_Georgia                                        intended
## 12221            UniSys_Georgia                                           media
## 12222            UniSys_Georgia                                      prediction
## 12223            UniSys_Georgia                                         squares
## 12224            UniSys_Georgia                                       transform
## 12225                   UVA_SDS                                          canvas
## 12226                   UVA_SDS                                            hall
## 12227                       UMD                                         support
## 12228                   UIU_207                                        building
## 12229                   UIU_207                                      components
## 12230                   UIU_207                                           ideas
## 12231                UCSanDiego                                            50pm
## 12232                       MIT                                          choice
## 12233                       MIT                                         commons
## 12234                       MIT                                        computed
## 12235                       MIT                                       correctly
## 12236                       MIT                                          detail
## 12237                       MIT                                          double
## 12238                       MIT                                           grant
## 12239                       MIT                                        learners
## 12240                       MIT                                       mandatory
## 12241                       MIT                                            menu
## 12242                       MIT                                        parallel
## 12243                       MIT                                      stochastic
## 12244                       MIT                                        uploaded
## 12245                       UMD                                         average
## 12246                       UMD                                          global
## 12247                       UMD                                       microsoft
## 12248                UWisconsin                                      discussion
## 12249                   Harvard                                      management
## 12250                   Harvard                                         request
## 12251                   Rutgers                                            core
## 12252                   Rutgers                                            life
## 12253                   Rutgers                                        sciences
## 12254                       LSU                                            text
## 12255              USouthampton                                  interpretation
## 12256              USouthampton                                       introduce
## 12257              USouthampton                                      processing
## 12258                UCSanDiego                                          submit
## 12259                   Cornell                                        directly
## 12260                   Cornell                                      submitting
## 12261                Boston_Uni                                          expect
## 12262                UCBerkeley                                        designed
## 12263                 Princeton                                          hastie
## 12264                 Princeton                                          matrix
## 12265                 Princeton                                      tibshirani
## 12266                       UMD                                      guidelines
## 12267               UWashington                                           based
## 12268                    Drexel                                       interface
## 12269                    Drexel                                    personalized
## 12270                    Drexel                                    storytelling
## 12271                   UIU_107                                           ideas
## 12272                   UIU_107                                         perform
## 12273                       MIT                                        feedback
## 12274                       MIT                                            feel
## 12275                       MIT                                           major
## 12276                       MIT                                         solving
## 12277                    Drexel                                           watch
## 12278           Montgomery_Coll                                     information
## 12279               NYU_IntroDS                                        identify
## 12280               NYU_IntroDS                                          social
## 12281                  NYU_DS4E                                      regression
## 12282                     Brown                                          review
## 12283              Georgia_Tech                                   approximation
## 12284              Georgia_Tech                                       attending
## 12285              Georgia_Tech                                             ben
## 12286              Georgia_Tech                                            boyd
## 12287              Georgia_Tech                                        capacity
## 12288              Georgia_Tech                                            cone
## 12289              Georgia_Tech                                  decompositions
## 12290              Georgia_Tech                                     destruction
## 12291              Georgia_Tech                                      distancing
## 12292              Georgia_Tech                                      eigenvalue
## 12293              Georgia_Tech                                     eigenvalues
## 12294              Georgia_Tech                                    eigenvectors
## 12295              Georgia_Tech                                      elementary
## 12296              Georgia_Tech                                       equations
## 12297              Georgia_Tech                                        estimate
## 12298              Georgia_Tech                                          fooled
## 12299              Georgia_Tech                                            game
## 12300              Georgia_Tech                                       gradients
## 12301              Georgia_Tech                                           heavy
## 12302              Georgia_Tech                                             hom
## 12303              Georgia_Tech                                          hybrid
## 12304              Georgia_Tech                                        lagrange
## 12305              Georgia_Tech                                      leveraging
## 12306              Georgia_Tech                                             lin
## 12307              Georgia_Tech                                           lives
## 12308              Georgia_Tech                                        modality
## 12309              Georgia_Tech                                        newton's
## 12310              Georgia_Tech                                          notion
## 12311              Georgia_Tech                                          posing
## 12312              Georgia_Tech                                           quasi
## 12313              Georgia_Tech                                        reserved
## 12314              Georgia_Tech                                       september
## 12315              Georgia_Tech                                        tracking
## 12316              Georgia_Tech                                   uncomfortable
## 12317              Georgia_Tech                                         weapons
## 12318              Georgia_Tech                                          wright
## 12319                   Cornell                                          github
## 12320                       UMD                                     discussions
## 12321                UCBerkeley                                        software
## 12322                     UUtah                                      frameworks
## 12323                     UUtah                                         pronoun
## 12324                   UZurich                                         contour
## 12325                   UZurich                                   decomposition
## 12326                   UZurich                                      derivative
## 12327                   UZurich                                         forward
## 12328                   UZurich                                           layer
## 12329                   UZurich                                             mit
## 12330                   UZurich                                         pattern
## 12331                   UZurich                                       precision
## 12332                   UZurich                                       principle
## 12333                   UZurich                                        singular
## 12334                UCBerkeley                                        anaconda
## 12335                UCBerkeley                                     correctness
## 12336                UCBerkeley                                         created
## 12337                UCBerkeley                                        creative
## 12338                UCBerkeley                                       depending
## 12339                UCBerkeley                                         license
## 12340                UCBerkeley                                            maps
## 12341                UCBerkeley                                        prepared
## 12342                UCBerkeley                                         private
## 12343                UCBerkeley                                        purposes
## 12344                UCBerkeley                                          server
## 12345                UWisconsin                                              ds
## 12346                Boston_Uni                                    optimization
## 12347                  NYU_DS4E                                         surveys
## 12348           Montgomery_Coll                                       exploring
## 12349           Montgomery_Coll                                       supported
## 12350           Montgomery_Coll                                         writing
## 12351           Montgomery_Coll                                         student
## 12352                   Cornell                                       exercises
## 12353                   Cornell                                     opportunity
## 12354              USouthampton                                        concepts
## 12355                 Princeton                                     statistical
## 12356                UWisconsin                                         chapter
## 12357                UWisconsin                                         purpose
## 12358                Boston_Uni                                          bu.edu
## 12359                Boston_Uni                                         catered
## 12360                Boston_Uni                                      centrality
## 12361                Boston_Uni                                          claims
## 12362                Boston_Uni                                     combination
## 12363                Boston_Uni                                      compilatio
## 12364                Boston_Uni                                   conversations
## 12365                Boston_Uni                                         cs391e1
## 12366                Boston_Uni                                           cs460
## 12367                Boston_Uni                                           cs506
## 12368                Boston_Uni                                           cs542
## 12369                Boston_Uni                                           cs565
## 12370                Boston_Uni                                        dominate
## 12371                Boston_Uni                                            dora
## 12372                Boston_Uni                                           edori
## 12373                Boston_Uni                                          eighty
## 12374                Boston_Uni                                             ema
## 12375                Boston_Uni                                           entry
## 12376                Boston_Uni                                           erdos
## 12377                Boston_Uni                                        fall2019
## 12378                Boston_Uni                                          faster
## 12379                Boston_Uni                                         flowing
## 12380                Boston_Uni                                        indexing
## 12381                Boston_Uni                                       involving
## 12382                Boston_Uni                                             kcb
## 12383                Boston_Uni                                          listen
## 12384                Boston_Uni                                          m6xn33
## 12385                Boston_Uni                                              ma
## 12386                Boston_Uni                                          mcs288
## 12387                Boston_Uni                                          middle
## 12388                Boston_Uni                                          neatly
## 12389                Boston_Uni                                            node
## 12390                Boston_Uni                                        november
## 12391                Boston_Uni                                        pagerank
## 12392                Boston_Uni                                    participants
## 12393                Boston_Uni                                         planned
## 12394                Boston_Uni                                         precise
## 12395                Boston_Uni                                      preferable
## 12396                Boston_Uni                                          proofs
## 12397                Boston_Uni                                      pseudocode
## 12398                Boston_Uni                                          regard
## 12399                Boston_Uni                                     regressions
## 12400                Boston_Uni                                       reviewing
## 12401                Boston_Uni                                           route
## 12402                Boston_Uni                                         scanned
## 12403                Boston_Uni                                         schemes
## 12404                Boston_Uni                                             shy
## 12405                Boston_Uni                                         skipped
## 12406                Boston_Uni                                             tba
## 12407                Boston_Uni                                          travel
## 12408                Boston_Uni                                            tues
## 12409                Boston_Uni                                         typeset
## 12410                Boston_Uni                                      unfamiliar
## 12411                Boston_Uni                                      whatsoever
## 12412                Boston_Uni                              www.gradescope.com
## 12413                Boston_Uni                                             xin
## 12414                Boston_Uni                                            yida
## 12415                Boston_Uni                                            yxin
## 12416                  NYU_DS4E                                          python
## 12417                       MIT                                   understanding
## 12418                  UVA_Stat                                           check
## 12419                 Princeton                                    applications
## 12420                   Harvard                                        recorded
## 12421                    UMaine                                      estimation
## 12422                    UMaine                                           event
## 12423                    UMaine                                      hypothesis
## 12424                    UMaine                                         maximum
## 12425                    UMaine                                          papers
## 12426                UWisconsin                                        managing
## 12427                   Cornell                                            code
## 12428                      CUNY                                          coding
## 12429                UCSanDiego                                             run
## 12430                     UUtah                                       libraries
## 12431                   UZurich                                          search
## 12432                   UZurich                                        variance
## 12433                   UVA_SDS                                              ai
## 12434                   UVA_SDS                                        centered
## 12435                   UVA_SDS                                     destruction
## 12436                   UVA_SDS                                        emerging
## 12437                   UVA_SDS                                         excited
## 12438                   UVA_SDS                                  specifications
## 12439                   UVA_SDS                                    virginia.edu
## 12440                   UVA_SDS                                         weapons
## 12441                   UVA_SDS                                          wright
## 12442               NYU_IntroDS                                       statement
## 12443                       LSU                                         ability
## 12444    UWisc_Madison_Modeling                                            home
## 12445    UWisc_Madison_Modeling                                          report
## 12446    UWisc_Madison_Modeling                                        research
## 12447                 Princeton                                             lab
## 12448              Georgia_Tech                                            plan
## 12449              Georgia_Tech                                         systems
## 12450              Georgia_Tech                                          vector
## 12451                  UVA_Stat                                    appointments
## 12452                  UVA_Stat                                          comply
## 12453                  UVA_Stat                                          counts
## 12454                  UVA_Stat                                       encounter
## 12455                  UVA_Stat                                       evaluated
## 12456                  UVA_Stat                                            mail
## 12457                  UVA_Stat                                          manner
## 12458                  UVA_Stat                                           occur
## 12459                  UVA_Stat                                           quick
## 12460                  UVA_Stat                                       welcoming
## 12461                 UKentucky                                          spring
## 12462                   UIU_207                                            50pm
## 12463                   UIU_207                                          affect
## 12464                   UIU_207                                         attempt
## 12465                   UIU_207                                         benefit
## 12466                   UIU_207                                 collaboratively
## 12467                   UIU_207                                        computed
## 12468                   UIU_207                                          copied
## 12469                   UIU_207                                          friend
## 12470                   UIU_207                                             git
## 12471                   UIU_207                                     interacting
## 12472                   UIU_207                                    personalized
## 12473                   UIU_207                                      piazza.com
## 12474                   UIU_207                                      protecting
## 12475                   UIU_207                                         reports
## 12476                   UIU_207                                    repositories
## 12477                   UIU_207                                          rundel
## 12478                   UIU_207                                           typed
## 12479                   UIU_207                                       workflows
## 12480                   Harvard                                            late
## 12481                      CUNY                                   computational
## 12482                UWisconsin                                          submit
## 12483          Washington_State                                            apis
## 12484          Washington_State                                   decomposition
## 12485          Washington_State                                          engine
## 12486          Washington_State                                         filters
## 12487          Washington_State                                     integration
## 12488          Washington_State                                        singular
## 12489                   Harvard                                       admission
## 12490               UWashington                                          attend
## 12491               UWashington                                           goals
## 12492               UWashington                                       inference
## 12493               UWashington                                       knowledge
## 12494               UWashington                                         missing
## 12495               UWashington                                        policies
## 12496               UWashington                                           study
## 12497                  UToronto                                      continuous
## 12498                  UToronto                                          matrix
## 12499                  UToronto                                    optimization
## 12500                       LSU                                         alleged
## 12501                       LSU                                      discussing
## 12502                       LSU                                          manage
## 12503                       LSU                                         reports
## 12504                       LSU                                    repositories
## 12505                       LSU                                    reproducible
## 12506                       LSU                                         rstudio
## 12507                       LSU                                      suspension
## 12508                Boston_Uni                                             lab
## 12509                Boston_Uni                                        material
## 12510                   UVA_SDS                                           honor
## 12511    UWisc_Madison_Modeling                                        textbook
## 12512              USouthampton                                   visualization
## 12513          William_and_Mary                                         virtual
## 12514          Washington_State                                         explain
## 12515                  UToronto                                        1,2,6,11
## 12516                  UToronto                                             3,4
## 12517                  UToronto                                           3.2.1
## 12518                  UToronto                                             7,9
## 12519                  UToronto                                         ableism
## 12520                  UToronto                          accessibility.services
## 12521                  UToronto                                       achieving
## 12522                  UToronto                                      addictions
## 12523                  UToronto                                            anti
## 12524                  UToronto                                     approaching
## 12525                  UToronto                                          avenue
## 12526                  UToronto                                        barriers
## 12527                  UToronto                                       blindness
## 12528                  UToronto                                        breaches
## 12529                  UToronto                                       convexity
## 12530                  UToronto                                        deafness
## 12531                  UToronto                                    department's
## 12532                  UToronto                                  discriminatory
## 12533                  UToronto                                       disorders
## 12534                  UToronto                                     engadvising
## 12535                  UToronto                                       fractures
## 12536                  UToronto                                      functional
## 12537                  UToronto                                       gaussians
## 12538                  UToronto                                        geometry
## 12539                  UToronto                                       good2talk
## 12540                  UToronto                                        helpline
## 12541                  UToronto                                      homophobia
## 12542                  UToronto                                             hwc
## 12543                  UToronto                                     impairments
## 12544                  UToronto                                     inclusivity
## 12545                  UToronto                                           incur
## 12546                  UToronto                                      infections
## 12547                  UToronto                                    islamophobia
## 12548                  UToronto                                   jason.riordon
## 12549                  UToronto                                         lec0101
## 12550                  UToronto                                         lec0201
## 12551                  UToronto                                        mobility
## 12552                  UToronto                                           motor
## 12553                  UToronto                                         pra0101
## 12554                  UToronto                                         pra0102
## 12555                  UToronto                                         quercus
## 12556                  UToronto                                          racism
## 12557                  UToronto                                      recommends
## 12558                  UToronto                                        recovery
## 12559                  UToronto                                         riordon
## 12560                  UToronto                                            safe
## 12561                  UToronto                                        semitism
## 12562                  UToronto                                          sexism
## 12563                  UToronto                                         spadina
## 12564                  UToronto                                         sprains
## 12565                  UToronto                         studentlife.utoronto.ca
## 12566                  UToronto                                           suite
## 12567                  UToronto                                     transphobia
## 12568                  UToronto               undergrad.engineering.utoronto.ca
## 12569                  UToronto                                         uoft.me
## 12570                  UToronto                                         witness
## 12571                   UIU_207                                          laptop
## 12572                   UIU_207                                          monday
## 12573                   UIU_207                                         tuesday
## 12574           Montgomery_Coll                                        business
## 12575           Montgomery_Coll                                    requirements
## 12576                   UIU_107                                         attempt
## 12577                   UIU_107                                             cas
## 12578                   UIU_107                                 collaboratively
## 12579                   UIU_107                                          copied
## 12580                   UIU_107                                       dedicated
## 12581                   UIU_107                                          friend
## 12582                   UIU_107                                             git
## 12583                   UIU_107                                         mondays
## 12584                   UIU_107                                         offered
## 12585                   UIU_107                                      protecting
## 12586                   UIU_107                                      registered
## 12587                   UIU_107                                       semesters
## 12588                   UIU_107                                           typed
## 12589                   UIU_107                                         webpage
## 12590                UCSanDiego                                      babypandas
## 12591                UCSanDiego                                    confirmation
## 12592                UCSanDiego                                         perfect
## 12593                UCSanDiego                                         podcast
## 12594                UCSanDiego                                          webreg
## 12595                   UVA_SDS                                          future
## 12596          Washington_State                                           skill
## 12597                       ASU                                       algorithm
## 12598                       ASU                                    distribution
## 12599                   Harvard                                           rules
## 12600                   Cornell                                           exams
## 12601                   Cornell                                            feel
## 12602                  NYU_DS4E                                     appointment
## 12603                  NYU_DS4E                                             fun
## 12604               NYU_IntroDS                                            arts
## 12605               NYU_IntroDS                                      discretion
## 12606               NYU_IntroDS                                             i.e
## 12607               NYU_IntroDS                                         laptops
## 12608               NYU_IntroDS                                     theoretical
## 12609                     Brown                                     acquisition
## 12610                     Brown                                            bias
## 12611                     Brown                                        criteria
## 12612                     Brown                                       developed
## 12613                     Brown                                        ensemble
## 12614                     Brown                                        handbook
## 12615                     Brown                                            lead
## 12616                     Brown                                        machines
## 12617                     Brown                                            meet
## 12618                     Brown                                           numpy
## 12619                     Brown                                        variance
## 12620 UWisc_Madison_Programming                                          1stlen
## 12621 UWisc_Madison_Programming                                       grievance
## 12622 UWisc_Madison_Programming                                          lec004
## 12623 UWisc_Madison_Programming                                          shared
## 12624              USouthampton                                       analytics
## 12625              USouthampton                                      principles
## 12626                       MIT                                     programming
## 12627                   Harvard                                   visualization
## 12628                Boston_Uni                                         algebra
## 12629                Boston_Uni                                          basics
## 12630                Boston_Uni                                        solution
## 12631                 UKentucky                                        holidays
## 12632                 UKentucky                                         regular
## 12633                UCBerkeley                                      components
## 12634            UniSys_Georgia                                     acknowledge
## 12635            UniSys_Georgia                                          charts
## 12636            UniSys_Georgia                                            draw
## 12637            UniSys_Georgia                                        optional
## 12638            UniSys_Georgia                                       potential
## 12639            UniSys_Georgia                                      predictive
## 12640            UniSys_Georgia                                   relationships
## 12641            UniSys_Georgia                                        security
## 12642            UniSys_Georgia                                           texts
## 12643                 Princeton                                     calculators
## 12644                 Princeton                                       precision
## 12645                UCSanDiego                                          hidden
## 12646                   UIU_107                                          laptop
## 12647                UCSanDiego                                       homeworks
## 12648                     UUtah                                   contributions
## 12649                     UUtah                                            team
## 12650                      CUNY                                      addressing
## 12651                      CUNY                                         arising
## 12652                      CUNY                                          backup
## 12653                      CUNY                                          begins
## 12654                      CUNY                                              ca
## 12655                      CUNY                                         careers
## 12656                      CUNY                                              ce
## 12657                      CUNY                                        centered
## 12658                      CUNY                                         centers
## 12659                      CUNY                                       challenge
## 12660                      CUNY                                    competencies
## 12661                      CUNY                                      complexity
## 12662                      CUNY                                      emphasizes
## 12663                      CUNY                                        formulas
## 12664                      CUNY                                     introducing
## 12665                      CUNY                                       katherine
## 12666                      CUNY                                       listening
## 12667                      CUNY                                        opinions
## 12668                      CUNY                                          posing
## 12669                      CUNY                                       satisfies
## 12670                      CUNY                                         shaping
## 12671                      CUNY                                        subjects
## 12672                      CUNY                                         trouble
## 12673                       ASU                                     alternative
## 12674                       ASU                                     definitions
## 12675                       ASU                                        familiar
## 12676                       ASU                                     independent
## 12677                       ASU                                          limits
## 12678                       MIT                                        programs
## 12679                UCSanDiego                                       integrity
## 12680                UCSanDiego                                      submission
## 12681                     Brown                                        overview
## 12682                   UIU_107                                         project
## 12683 UWisc_Madison_Programming                                         regular
## 12684                UCBerkeley                                     foundations
## 12685                     Brown                                         midterm
## 12686                   UIU_107                                            labs
## 12687            UniSys_Georgia                                      technology
## 12688          William_and_Mary                                  classification
## 12689    UWisc_Madison_Modeling                                   approximately
## 12690    UWisc_Madison_Modeling                                          assume
## 12691    UWisc_Madison_Modeling                                           carry
## 12692    UWisc_Madison_Modeling                                      convenient
## 12693    UWisc_Madison_Modeling                                      generation
## 12694    UWisc_Madison_Modeling                                      hypotheses
## 12695    UWisc_Madison_Modeling                                           noise
## 12696    UWisc_Madison_Modeling                                        possibly
## 12697    UWisc_Madison_Modeling                                     project.org
## 12698    UWisc_Madison_Modeling                                         rstudio
## 12699    UWisc_Madison_Modeling                                        sequence
## 12700    UWisc_Madison_Modeling                                          signal
## 12701    UWisc_Madison_Modeling                                          studio
## 12702    UWisc_Madison_Modeling                                       uploading
## 12703    UWisc_Madison_Modeling                                         viewing
## 12704              Georgia_Tech                                     foundations
## 12705                   Rutgers                                        computer
## 12706                   UZurich                                        networks
## 12707            UniSys_Georgia                                           basic
## 12708                UCSanDiego                                        syllabus
## 12709                  UVA_Stat                                          person
## 12710                    Drexel                                          google
## 12711                   Cornell                                        patterns
## 12712                    UMaine                                       estimator
## 12713                    UMaine                                       histogram
## 12714                    UMaine                                            mass
## 12715                    UMaine                                              rv
## 12716                    UMaine                                           walks
## 12717                 Princeton                                       professor
## 12718                Boston_Uni                                            held
## 12719                Boston_Uni                                         helpful
## 12720                UWisconsin                                          demand
## 12721                UWisconsin                                           fargo
## 12722                UWisconsin                                           naked
## 12723                UWisconsin                                   normalization
## 12724                UWisconsin                                              ou
## 12725                UWisconsin                                            sams
## 12726                  UToronto                                     engineering
## 12727                  UToronto                                         faculty
## 12728               NYU_IntroDS                                        programs
## 12729                       MIT                                        computer
## 12730                      CUNY                                      collection
## 12731                      CUNY                                         credits
## 12732                UCSanDiego                                        deadline
## 12733                   UIU_207                                      understand
## 12734                      CUNY                                       solutions
## 12735                   Harvard                                              ed
## 12736                   Harvard                                         session
## 12737                   Rutgers                                      actionable
## 12738                   Rutgers                                       anonymity
## 12739                   Rutgers                                         centers
## 12740                   Rutgers                                         compete
## 12741                   Rutgers                                        contacts
## 12742                   Rutgers                                    contemporary
## 12743                   Rutgers                                      critically
## 12744                   Rutgers                                         degrees
## 12745                   Rutgers                                        division
## 12746                   Rutgers                                      exhaustive
## 12747                   Rutgers                                           false
## 12748                   Rutgers                                          fooled
## 12749                   Rutgers                                        formulas
## 12750                   Rutgers                                       formulate
## 12751                   Rutgers                                          honors
## 12752                   Rutgers                                    increasingly
## 12753                   Rutgers                                   international
## 12754                   Rutgers                                          majors
## 12755                   Rutgers                                     methodology
## 12756                   Rutgers                                           piece
## 12757                   Rutgers                                      preferably
## 12758                   Rutgers                                              qr
## 12759                   Rutgers                                            rely
## 12760                   Rutgers                                        reserved
## 12761           Montgomery_Coll                                          access
## 12762 UWisc_Madison_Programming                                        projects
## 12763              Georgia_Tech                                          attend
## 12764           Montgomery_Coll                                        activity
## 12765           Montgomery_Coll                                           login
## 12766           Montgomery_Coll                                         updated
## 12767           Montgomery_Coll                                            walk
## 12768               UWashington                                            home
## 12769               UWashington                                         program
## 12770               UWashington                                        resource
## 12771              Georgia_Tech                                       algorithm
## 12772              Georgia_Tech                                       numerical
## 12773              Georgia_Tech                                        recorded
## 12774                   UZurich                                           model
## 12775                    UMaine                                      discretion
## 12776                    UMaine                                       religious
## 12777 UWisc_Madison_Programming                                        graduate
## 12778                   UZurich                                       algorithm
## 12779                   UZurich                                        training
## 12780 UWisc_Madison_Programming                                         faculty
## 12781                UWisconsin                                     discussions
## 12782                UCSanDiego                                            pass
## 12783                       MIT                                          backup
## 12784                       MIT                                           carlo
## 12785                       MIT                                         closely
## 12786                       MIT                                         compete
## 12787                       MIT                                      electrical
## 12788                       MIT                                          freely
## 12789                       MIT                                       institute
## 12790                       MIT                                        maximize
## 12791                       MIT                                           monte
## 12792                       MIT                                     necessarily
## 12793                       MIT                                     percentages
## 12794                       MIT                                        position
## 12795                       MIT                                         preview
## 12796                       MIT                                           proud
## 12797                       MIT                                         roughly
## 12798                       MIT                                       satisfied
## 12799                       MIT                                       satisfies
## 12800                       MIT                                      simulation
## 12801                       MIT                                        subjects
## 12802                       MIT                                           walks
## 12803                       MIT                                            wrap
## 12804                UCBerkeley                                          assume
## 12805                UCBerkeley                                         commons
## 12806                UCBerkeley                                      curriculum
## 12807                UCBerkeley                                   demonstration
## 12808                UCBerkeley                                      deployment
## 12809                UCBerkeley                                         execute
## 12810                UCBerkeley                                      explicitly
## 12811                UCBerkeley                                    hierarchical
## 12812                UCBerkeley                                     implemented
## 12813                UCBerkeley                                       interface
## 12814                UCBerkeley                                         offered
## 12815                UCBerkeley                                       offerings
## 12816                UCBerkeley                                         setting
## 12817                   UZurich                                      background
## 12818                   UZurich                                           curve
## 12819                   UZurich                                         descent
## 12820                   UZurich                                       objective
## 12821                   UZurich                                       principal
## 12822                   UZurich                                           ridge
## 12823                   UIU_207                                        cheating
## 12824                UWisconsin                                        practice
## 12825                   UVA_SDS                                            week
## 12826           Montgomery_Coll                                          period
## 12827          William_and_Mary                                          0162tu
## 12828          William_and_Mary                                7cc0kabvzpnfvkyv
## 12829          William_and_Mary                                    conferencing
## 12830          William_and_Mary                               covidtracking.com
## 12831          William_and_Mary                                           davis
## 12832          William_and_Mary                                  getlettergrade
## 12833          William_and_Mary                                            goto
## 12834          William_and_Mary                                         instant
## 12835          William_and_Mary                                  mailto:twdavis
## 12836          William_and_Mary                                            mary
## 12837          William_and_Mary                                        midnight
## 12838          William_and_Mary                                      multilayer
## 12839          William_and_Mary                                        nooks.in
## 12840          William_and_Mary                                   notifications
## 12841          William_and_Mary                                              ti
## 12842          William_and_Mary                                            titi
## 12843          William_and_Mary                                            tsne
## 12844          William_and_Mary                                         twdavis
## 12845          William_and_Mary                                        validity
## 12846          William_and_Mary                                         william
## 12847          William_and_Mary                                              wm
## 12848          William_and_Mary                                    wm.github.io
## 12849          William_and_Mary                                www.anaconda.com
## 12850          William_and_Mary                                      www.wm.edu
## 12851 UWisc_Madison_Programming                                           index
## 12852                   Harvard                                          canvas
## 12853                   UVA_SDS                                          design
## 12854                    Drexel                                     3blue1brown
## 12855                    Drexel                             betterexplained.com
## 12856                    Drexel                                        brownlee
## 12857                    Drexel                                        congress
## 12858                    Drexel                                           demos
## 12859                    Drexel                                         diagram
## 12860                    Drexel                                         essence
## 12861                    Drexel                                        intro2ds
## 12862                    Drexel                      machinelearningmastery.com
## 12863                    Drexel                                     projections
## 12864                    Drexel                                       sanderson
## 12865                    Drexel                                         twitter
## 12866                    Drexel                                            venn
## 12867                    Drexel                                           wired
## 12868                  UToronto                                       student's
## 12869                  UToronto                                      wednesdays
## 12870                   Cornell                                   circumstances
## 12871                   UVA_SDS                                           field
## 12872                       LSU                                           files
## 12873                   Harvard                                            exam
## 12874               UWashington                                            time
## 12875                   Rutgers                                      permission
## 12876                  UToronto                                         machine
## 12877                UCBerkeley                                            form
## 12878                UCBerkeley                                         jupyter
## 12879                UCBerkeley                                        standard
## 12880                       ASU                                      continuous
## 12881                       ASU                                        function
## 12882                       ASU                                      harassment
## 12883                       ASU                                       implement
## 12884                Boston_Uni                                     instructors
## 12885                 UKentucky                                         service
## 12886                   UVA_SDS                                             bit
## 12887                   UVA_SDS                                           human
## 12888              USouthampton                                      conditions
## 12889              USouthampton                                        download
## 12890              USouthampton                                    technologies
## 12891                   UIU_107                                        cheating
## 12892                   UIU_107                                            zoom
## 12893                UCSanDiego                                          answer
## 12894                UCSanDiego                                           check
## 12895                       LSU                                       community
## 12896                     Brown                                           hands
## 12897                  UVA_Stat                                        adhikari
## 12898                  UVA_Stat                                             ani
## 12899                  UVA_Stat                                        answered
## 12900                  UVA_Stat                                          arises
## 12901                  UVA_Stat                                           count
## 12902                  UVA_Stat                                          denero
## 12903                  UVA_Stat                                          enroll
## 12904                  UVA_Stat                                             fix
## 12905                  UVA_Stat                                      invaluable
## 12906                  UVA_Stat                                    occasionally
## 12907                  UVA_Stat                                       requested
## 12908                  UVA_Stat                                          timely
## 12909                  UVA_Stat                                           trust
## 12910                  UVA_Stat                                        weekends
## 12911                  NYU_DS4E                                        analyses
## 12912                  NYU_DS4E                                     assumptions
## 12913                  NYU_DS4E                                         samples
## 12914                  NYU_DS4E                                       sequences
## 12915                  NYU_DS4E                                           sheet
## 12916                  NYU_DS4E                                           takes
## 12917                 UKentucky                                           adobe
## 12918                 UKentucky                                              dl
## 12919                 UKentucky                                       household
## 12920                 UKentucky                                        kentucky
## 12921                 UKentucky                                        locating
## 12922                 UKentucky                                           ombud
## 12923                 UKentucky                                           part2
## 12924                 UKentucky                                           reuse
## 12925                 UKentucky                                         topical
## 12926                UWisconsin                                       databases
## 12927                UWisconsin                                       practices
## 12928                       MIT                                           press
## 12929                       MIT                                            role
## 12930                       MIT                                        sessions
## 12931                 Princeton                                           exams
## 12932                   Cornell                                         perform
## 12933            UniSys_Georgia                                     communicate
## 12934                   UIU_107                                             lab
## 12935          Washington_State                                       effective
## 12936          Washington_State                                           naive
## 12937          William_and_Mary                                      regression
## 12938               NYU_IntroDS                                     disciplines
## 12939               NYU_IntroDS                                         examine
## 12940               NYU_IntroDS                                    multivariate
## 12941               NYU_IntroDS                                           naive
## 12942               NYU_IntroDS                                      structured
## 12943                     Brown                                         applies
## 12944                     Brown                                     categorical
## 12945                     Brown                                           clean
## 12946                     Brown                                       evaluated
## 12947                     Brown                                        handling
## 12948                     Brown                                      matplotlib
## 12949                     Brown                                       parameter
## 12950                     Brown                                        proposal
## 12951                     Brown                                    unsupervised
## 12952                       UMD                                       extension
## 12953                UWisconsin                                             dec
## 12954                UWisconsin                                             sep
## 12955                UWisconsin                                         tableau
## 12956                    Drexel                                      scientists
## 12957                       ASU                                           basis
## 12958                   Cornell                                   announcements
## 12959                   Cornell                                       extension
## 12960            UniSys_Georgia                                         collect
## 12961            UniSys_Georgia                                      confidence
## 12962            UniSys_Georgia                                          errors
## 12963            UniSys_Georgia                                        insights
## 12964            UniSys_Georgia                                    interpreting
## 12965            UniSys_Georgia                                             low
## 12966            UniSys_Georgia                                        patterns
## 12967            UniSys_Georgia                                     simulations
## 12968            UniSys_Georgia                                       visualize
## 12969                       UMD                                        bootcamp
## 12970                       UMD                                             leo
## 12971                       UMD                                        maryland
## 12972                       UMD                                         rounded
## 12973                  NYU_DS4E                                     correlation
## 12974                  NYU_DS4E                                      prediction
## 12975                   UIU_207                                     accelerated
## 12976                   UIU_207                                           april
## 12977                   UIU_207                                     assumptions
## 12978                   UIU_207                                            barr
## 12979                   UIU_207                                         brought
## 12980                   UIU_207                                     calculators
## 12981                   UIU_207                                       cetinkaya
## 12982                   UIU_207                                     chromebooks
## 12983                   UIU_207                                       comprised
## 12984                   UIU_207                                            diez
## 12985                   UIU_207                                          doubts
## 12986                   UIU_207                                    download.php
## 12987                   UIU_207                                           ideal
## 12988                   UIU_207                                           ipads
## 12989                   UIU_207                                         lowered
## 12990                   UIU_207                                       openintro
## 12991                   UIU_207                                          pasted
## 12992                   UIU_207                                          phones
## 12993                   UIU_207                                         tablets
## 12994                   UIU_207                                             thu
## 12995                   UIU_207                                      translated
## 12996                   UIU_207                                     uncertainty
## 12997                   UIU_207                                      vanderplas
## 12998                   UIU_207                                             wed
## 12999                  UToronto                                           intro
## 13000                UWisconsin                                         explain
## 13001                   Cornell                                     flexibility
## 13002                   Cornell                                        involved
## 13003                   Cornell                                           mtwtf
## 13004                   Cornell                                         persons
## 13005                   Cornell                                             sds
## 13006    UWisc_Madison_Modeling                                          canvas
## 13007                   Harvard                                           anova
## 13008                   Harvard                                      attributes
## 13009                   Harvard                                         extract
## 13010                   Harvard                                  transformation
## 13011                   Harvard                                       tutorials
## 13012                   Harvard                                          webcam
## 13013                      CUNY                                     conclusions
## 13014                 UKentucky                                         cluster
## 13015                 UKentucky                                        messages
## 13016                 UKentucky                                        veterans
## 13017                       LSU                                    constructive
## 13018                       LSU                                      increasing
## 13019                       LSU                                        pandemic
## 13020                       LSU                                           plans
## 13021                       LSU                                            pull
## 13022                UCSanDiego                                      discussion
## 13023                   UZurich                                     probability
## 13024               UWashington                                     participate
## 13025               UWashington                                        solution
## 13026               UWashington                                          spring
## 13027               UWashington                                           types
## 13028                       UMD                                      discussion
## 13029                 Princeton                                        extended
## 13030                 Princeton                                       graphical
## 13031                 Princeton                                              li
## 13032                 Princeton                                             pca
## 13033                       UMD                                       responses
## 13034                       UMD                                         success
## 13035                   Harvard                                      discussion
## 13036                       UMD                                    requirements
## 13037                      CUNY                                          python
## 13038                UWisconsin                                          action
## 13039                   UIU_107                                         archive
## 13040                   UIU_107                                    asynchronous
## 13041                   UIU_107                                       breakdown
## 13042                   UIU_107                                         brought
## 13043                   UIU_107                                     chromebooks
## 13044                   UIU_107                                   collaborative
## 13045                   UIU_107                                       comprised
## 13046                   UIU_107                                          doubts
## 13047                   UIU_107                                           ipads
## 13048                   UIU_107                                           lower
## 13049                   UIU_107                                         lowered
## 13050                   UIU_107                                          pasted
## 13051                   UIU_107                                      reflection
## 13052                   UIU_107                                       relevance
## 13053                   UIU_107                                        slightly
## 13054                   UIU_107                                         tablets
## 13055                   UIU_107                                      translated
## 13056                   UIU_107                                            true
## 13057 UWisc_Madison_Programming                                     substantive
## 13058 UWisc_Madison_Programming                                         surveys
## 13059                UCBerkeley                                       materials
## 13060              Georgia_Tech                                       regularly
## 13061                UWisconsin                                            read
## 13062                   Harvard                                         natural
## 13063                Boston_Uni                                        enrolled
## 13064                Boston_Uni                                        gradient
## 13065                Boston_Uni                                          normal
## 13066                Boston_Uni                                       thursdays
## 13067                   UIU_107                                      discussion
## 13068                   UIU_207                                          github
## 13069              Georgia_Tech                                            45am
## 13070              Georgia_Tech                                             abu
## 13071              Georgia_Tech                                    acceleration
## 13072              Georgia_Tech                                     adversarial
## 13073              Georgia_Tech                                          august
## 13074              Georgia_Tech                                            ball
## 13075              Georgia_Tech                                             bau
## 13076              Georgia_Tech                                       bernstein
## 13077              Georgia_Tech                                       bertsekas
## 13078              Georgia_Tech                                         borhani
## 13079              Georgia_Tech                                       calafiore
## 13080              Georgia_Tech                                       conjugate
## 13081              Georgia_Tech                                        cookbook
## 13082              Georgia_Tech                                      correction
## 13083              Georgia_Tech                                         deliver
## 13084              Georgia_Tech                                        domingos
## 13085              Georgia_Tech                                      drunkard's
## 13086              Georgia_Tech                                         duality
## 13087              Georgia_Tech                                         durrett
## 13088              Georgia_Tech                                         dynamic
## 13089              Georgia_Tech                                              el
## 13090              Georgia_Tech                                            flow
## 13091              Georgia_Tech                                          gatech
## 13092              Georgia_Tech                                          ghaoui
## 13093              Georgia_Tech                                            gods
## 13094              Georgia_Tech                                         goliath
## 13095              Georgia_Tech                                            hope
## 13096              Georgia_Tech                                       initially
## 13097              Georgia_Tech                                         integer
## 13098              Georgia_Tech                                   interpolation
## 13099              Georgia_Tech                                          ismail
## 13100              Georgia_Tech                                         johnson
## 13101              Georgia_Tech                                     katsaggelos
## 13102              Georgia_Tech                                             kkt
## 13103              Georgia_Tech                                      luenberger
## 13104              Georgia_Tech                                          magdon
## 13105              Georgia_Tech                                            mdav
## 13106              Georgia_Tech                                        mlodinow
## 13107              Georgia_Tech                                            mode
## 13108              Georgia_Tech                                           modem
## 13109              Georgia_Tech                                         mostafa
## 13110              Georgia_Tech                                      nemirovski
## 13111              Georgia_Tech                                      nesterov's
## 13112              Georgia_Tech                                         nocedal
## 13113              Georgia_Tech                                         pdffrom
## 13114              Georgia_Tech                                       portfolio
## 13115              Georgia_Tech                                       potpourri
## 13116              Georgia_Tech                                         refined
## 13117              Georgia_Tech                                      remarkable
## 13118              Georgia_Tech                                         reserve
## 13119              Georgia_Tech                                        rotating
## 13120              Georgia_Tech                                        schneier
## 13121              Georgia_Tech                                    semidefinite
## 13122              Georgia_Tech                                          silver
## 13123              Georgia_Tech                                         simplex
## 13124              Georgia_Tech                                          smooth
## 13125              Georgia_Tech                                             tal
## 13126              Georgia_Tech                                           taleb
## 13127              Georgia_Tech                                       trefethen
## 13128              Georgia_Tech                                      tsitsiklis
## 13129              Georgia_Tech                                   unconstrained
## 13130              Georgia_Tech                                    vanderberghe
## 13131              Georgia_Tech                                       wasserman
## 13132              Georgia_Tech                                            watt
## 13133                     UUtah                                           dream
## 13134                   UZurich                                        absolute
## 13135                   UZurich                                      boundaries
## 13136                   UZurich                                  discriminative
## 13137                   UZurich                                       expansion
## 13138                   UZurich                                       geometric
## 13139                   UZurich                                         hessian
## 13140                   UZurich                                           hinge
## 13141                   UZurich                                         laplace
## 13142                   UZurich                                      multiclass
## 13143                   UZurich                                      polynomial
## 13144                   UZurich                                         popular
## 13145                   UZurich                                      practicals
## 13146                   UZurich                                       quadratic
## 13147                   UZurich                                             rbf
## 13148                   UZurich                                  reconstruction
## 13149                   UZurich                                            relu
## 13150                   UZurich                                        revision
## 13151                   UZurich                                           scope
## 13152                   UZurich                                            semi
## 13153                   UZurich                                         softmax
## 13154                   UZurich                                     universität
## 13155                   UZurich                                         weights
## 13156           Montgomery_Coll                                            math
## 13157                   UIU_207                                      department
## 13158                   Cornell                                         dropped
## 13159                   Cornell                                      explicitly
## 13160                UCSanDiego                                         section
## 13161                     UUtah                                        wellness
## 13162          William_and_Mary                                         similar
## 13163                       ASU                                          absent
## 13164                       ASU                                         cutoffs
## 13165                       ASU                                     eligibility
## 13166                       ASU                                        harassed
## 13167                       ASU                                    independence
## 13168                       ASU                                           limit
## 13169                       ASU                                            mass
## 13170                       ASU                                          notion
## 13171                       ASU                                          phones
## 13172                       ASU                                      prohibited
## 13173                       ASU                                         pronoun
## 13174                       ASU                                     retaliation
## 13175                       ASU                                              rv
## 13176                       ASU                                      sanctioned
## 13177                       ASU                                      transcript
## 13178                       ASU                                             tth
## 13179                    UMaine                                           joint
## 13180                    UMaine                                    multivariate
## 13181                   Rutgers                                   accessibility
## 13182                   Rutgers                                        calendar
## 13183                UCBerkeley                                         current
## 13184                UCBerkeley                                        evaluate
## 13185                UCBerkeley                                           links
## 13186                UCBerkeley                                          pandas
## 13187                 Princeton                                          models
## 13188                      CUNY                                         methods
## 13189                  UVA_Stat                                       resources
## 13190                       UMD                                        graduate
## 13191           Montgomery_Coll                                       announced
## 13192           Montgomery_Coll                                            menu
## 13193           Montgomery_Coll                                      organizing
## 13194           Montgomery_Coll                                       reinforce
## 13195           Montgomery_Coll                                            task
## 13196                UCSanDiego                                             lab
## 13197                   UVA_SDS                                          alonzi
## 13198                   UVA_SDS                                      articulate
## 13199                   UVA_SDS                                          aspect
## 13200                   UVA_SDS                                        cummings
## 13201                   UVA_SDS                                         discord
## 13202                   UVA_SDS                                         forelle
## 13203                   UVA_SDS                                         friedel
## 13204                   UVA_SDS                                          gobble
## 13205                   UVA_SDS                                             gpu
## 13206                   UVA_SDS                                             lie
## 13207                   UVA_SDS                                           magee
## 13208                   UVA_SDS                                              ms
## 13209                   UVA_SDS                                         o'brien
## 13210                   UVA_SDS                                            reia
## 13211                   UVA_SDS                     www.definingdatascience.com
## 13212                   UVA_SDS                                www.virginia.edu
## 13213                UCBerkeley                                     environment
## 13214                UCBerkeley                                        thinking
## 13215    UWisc_Madison_Modeling                                      anticipate
## 13216    UWisc_Madison_Modeling                                          cran.r
## 13217    UWisc_Madison_Modeling                                       grolemund
## 13218    UWisc_Madison_Modeling                                         skilled
## 13219    UWisc_Madison_Modeling                                         wickham
## 13220    UWisc_Madison_Modeling                                        wisc.edu
## 13221    UWisc_Madison_Modeling                                 www.rstudio.com
## 13222                       MIT                                           goals
## 13223            UniSys_Georgia                                         explain
## 13224                   UZurich                                         machine
## 13225              USouthampton                                            aims
## 13226              USouthampton                                       scientist
## 13227                UWisconsin                                          define
## 13228                UWisconsin                                   demonstration
## 13229                       MIT                                         ability
## 13230                       ASU                                        discrete
## 13231                  UToronto                                       inclusive
## 13232                UWisconsin                                         quizzes
## 13233 UWisc_Madison_Programming                                             lab
## 13234                       UMD                                          checks
## 13235                       UMD                                        civility
## 13236                       UMD                                     copyrighted
## 13237                       UMD                                        plotting
## 13238 UWisc_Madison_Programming                                           tests
## 13239          Washington_State                                         choices
## 13240          Washington_State                                            cpts
## 13241          Washington_State                                            eecs
## 13242          Washington_State                                            hype
## 13243          Washington_State                                     ingredients
## 13244          Washington_State                                      motivating
## 13245          Washington_State                                            poor
## 13246          Washington_State                                      washington
## 13247          Washington_State                                         weather
## 13248          Washington_State                                        wrappers
## 13249          Washington_State                                             wsu
## 13250          Washington_State                                www.eecs.wsu.edu
## 13251                  UVA_Stat                                            copy
## 13252                  UVA_Stat                                            hall
## 13253                  UVA_Stat                                       homeworks
## 13254                  UVA_Stat                                            zoom
## 13255                     UUtah                                          safety
## 13256                   UZurich                                        gaussian
## 13257                   UZurich                                      tensorflow
## 13258                   UZurich                                         vectors
## 13259                   UZurich                                      validation
## 13260           Montgomery_Coll                                          laptop
## 13261                  NYU_DS4E                                          pandas
## 13262           Montgomery_Coll                                            page
## 13263                      CUNY                                        research
## 13264                  UToronto                                        sessions
## 13265                    UMaine                                         testing
## 13266    UWisc_Madison_Modeling                                            quiz
## 13267                   UZurich                                      clustering
## 13268               NYU_IntroDS                                           trees
## 13269                   Cornell                                         regrade
## 13270                   UVA_SDS                                    examinations
## 13271               UWashington                                           links
## 13272               UWashington                                         testing
## 13273                   UVA_SDS                                       analytics
## 13274                   UVA_SDS                                        describe
## 13275                   UVA_SDS                                         systems
## 13276                 Princeton                                       selection
## 13277    UWisc_Madison_Modeling                                       computing
## 13278                UCBerkeley                                         arising
## 13279                UCBerkeley                                        combines
## 13280                UCBerkeley                                      complicate
## 13281                UCBerkeley                                       dataframe
## 13282                UCBerkeley                                        division
## 13283                UCBerkeley                                      jupyterhub
## 13284                UCBerkeley                                         mapping
## 13285                UCBerkeley                                        offering
## 13286                UCBerkeley                                     partnership
## 13287                UCBerkeley                                       relevance
## 13288                UCBerkeley                                      respective
## 13289                   Rutgers                                             web
## 13290                      CUNY                                      analytical
## 13291                      CUNY                                       interpret
## 13292                       LSU                                         results
## 13293                 Princeton                                            30am
## 13294                 Princeton                                      asymptotic
## 13295                 Princeton                                       augmented
## 13296                 Princeton                                       chapters1
## 13297                 Princeton                                     expenditure
## 13298                 Princeton                                         finance
## 13299                 Princeton                                            fred
## 13300                 Princeton                                       frederick
## 13301                 Princeton                                         human.r
## 13302                 Princeton                                        jianqing
## 13303                 Princeton                                       macro2019
## 13304                 Princeton                                            mice
## 13305                 Princeton                                           moore
## 13306                 Princeton                                          photos
## 13307                 Princeton                                        pictures
## 13308                 Princeton                                         protein
## 13309                 Princeton                         research.stlouisfed.org
## 13310                 Princeton                                          robust
## 13311                 Princeton                                             t.j
## 13312                 Princeton                                      wainwright
## 13313                 Princeton                                        wireless
## 13314                       MIT                                            exam
## 13315                      CUNY                                        adoemail
## 13316                      CUNY                                       algebraic
## 13317                      CUNY                                        bulletin
## 13318                      CUNY                                       catherine
## 13319                      CUNY                                 contextualizing
## 13320                      CUNY                                         corpora
## 13321                      CUNY                                      counteract
## 13322                      CUNY                                             csc
## 13323                      CUNY                                  deconstructing
## 13324                      CUNY                                       examining
## 13325                      CUNY                                 experimentation
## 13326                      CUNY                                         fcalado
## 13327                      CUNY                       feminism.mitpress.mit.edu
## 13328                      CUNY                                       firsthand
## 13329                      CUNY                             gradcenter.cuny.edu
## 13330                      CUNY                                         grounds
## 13331                      CUNY                                      historical
## 13332                      CUNY                                     infiltrates
## 13333                      CUNY                                      installing
## 13334                      CUNY                                         justice
## 13335                      CUNY                                        literary
## 13336                      CUNY                                        majoring
## 13337                      CUNY                                    marginalized
## 13338                      CUNY                                        movement
## 13339                      CUNY                                       necessity
## 13340                      CUNY                                            nltk
## 13341                      CUNY                                            oral
## 13342                      CUNY                                        pathways
## 13343                      CUNY                                          paying
## 13344                      CUNY                                       phenomena
## 13345                      CUNY                                        prepares
## 13346                      CUNY                                            pre­
## 13347                      CUNY                                    programmatic
## 13348                      CUNY                                         prompts
## 13349                      CUNY                                   qualitatively
## 13350                      CUNY                                  quantitatively
## 13351                      CUNY                                  reasonableness
## 13352                      CUNY                                         spatial
## 13353                      CUNY                                          speaks
## 13354                      CUNY                                          stymie
## 13355                      CUNY                                      www.bit.ly
## 13356                  NYU_DS4E                                          biases
## 13357               NYU_IntroDS                                          minute
## 13358                     Brown                                        aurélien
## 13359                     Brown                                      deployment
## 13360                     Brown                                       ecosystem
## 13361                     Brown                                           géron
## 13362                     Brown                                        packages
## 13363                     Brown                                       rationale
## 13364                     Brown                                       secondary
## 13365                     Brown                                      tensorflow
## 13366                   UVA_SDS                                          school
## 13367                UCSanDiego                                         correct
## 13368                UCSanDiego                                            held
## 13369                UWisconsin                                          visual
## 13370            UniSys_Georgia                                        accurate
## 13371            UniSys_Georgia                                        adhikari
## 13372            UniSys_Georgia                                             ani
## 13373            UniSys_Georgia                                   appropriately
## 13374            UniSys_Georgia                                        berkeley
## 13375            UniSys_Georgia                                    consequences
## 13376            UniSys_Georgia                                          denero
## 13377            UniSys_Georgia                                      hypotheses
## 13378            UniSys_Georgia                                        measures
## 13379            UniSys_Georgia                                        possibly
## 13380            UniSys_Georgia                                   probabilities
## 13381            UniSys_Georgia                                        tendency
## 13382                   Rutgers                                         analyze
## 13383                   Rutgers                                         program
## 13384    UWisc_Madison_Modeling                                         include
## 13385              Georgia_Tech                                         helpful
## 13386                  NYU_DS4E                                      understand
## 13387                  UVA_Stat                                            11am
## 13388                  UVA_Stat                                            30pm
## 13389                  UVA_Stat                                       classwork
## 13390                  UVA_Stat                                           delay
## 13391                  UVA_Stat                                     downloading
## 13392                  UVA_Stat                                            dual
## 13393                  UVA_Stat                                         element
## 13394                  UVA_Stat                                      emphasizes
## 13395                  UVA_Stat                                        finished
## 13396                  UVA_Stat                                            firm
## 13397                  UVA_Stat                                       identical
## 13398                  UVA_Stat                                       katherine
## 13399                  UVA_Stat                                         outcome
## 13400                  UVA_Stat                                            pass
## 13401                  UVA_Stat                                          passed
## 13402                  UVA_Stat                                          portal
## 13403                  UVA_Stat                                        resubmit
## 13404                  UVA_Stat                                            sdac
## 13405                  UVA_Stat                                        weekdays
## 13406          Washington_State                                      algorithms
## 13407          Washington_State                                         feature
## 13408 UWisc_Madison_Programming                                          scores
## 13409               NYU_IntroDS                                        sciences
## 13410                     Brown                                     engineering
## 13411                     Brown                                         feature
## 13412                     Brown                                           total
## 13413                UCBerkeley                                     inferential
## 13414                UCBerkeley                                    specifically
## 13415                       LSU                                       violation
## 13416                    UMaine                                        bayesian
## 13417                    UMaine                                      disruption
## 13418                    UMaine                                     identically
## 13419                    UMaine                                             mle
## 13420                    UMaine                                            mont
## 13421                    UMaine                                       observing
## 13422                    UMaine                                      parametric
## 13423                    UMaine                                         pruning
## 13424                    UMaine                                         quietly
## 13425                    UMaine                                         salimeh
## 13426                    UMaine                                           sekeh
## 13427                    UMaine                                      sequential
## 13428                    UMaine                                          umaine
## 13429                    UMaine                                          yasaei
## 13430                       ASU                                         subject
## 13431                UCBerkeley                                        includes
## 13432                   Harvard                                             tas
## 13433                   Rutgers                                           equal
## 13434                   Rutgers                                          events
## 13435                   Rutgers                                         society
## 13436                   Cornell                                            copy
## 13437            UniSys_Georgia                                        decision
## 13438            UniSys_Georgia                                         ethical
## 13439            UniSys_Georgia                                           types
## 13440                 Princeton                                     dimensional
## 13441                 Princeton                                      likelihood
## 13442                 Princeton                                  regularization
## 13443                 Princeton                                        springer
## 13444                UWisconsin                                        describe
## 13445                   UIU_107                                            loss
## 13446                   UIU_107                                     significant
## 13447                 Princeton                                           press
## 13448              Georgia_Tech                                     probability
## 13449          William_and_Mary                                    additionally
## 13450          William_and_Mary                                       delivered
## 13451          William_and_Mary                                      jupyterhub
## 13452               NYU_IntroDS                                            labs
## 13453                    Drexel                                        scraping
## 13454                    Drexel                                 www.youtube.com
## 13455                   Rutgers                                             21c
## 13456                   Rutgers                                         39khfrj
## 13457                   Rutgers                                              ad
## 13458                   Rutgers                                      aggregated
## 13459                   Rutgers                                           argue
## 13460                   Rutgers                                              ba
## 13461                   Rutgers                                         barrier
## 13462                   Rutgers                                          bit.ly
## 13463                   Rutgers                                              bs
## 13464                   Rutgers                                           chair
## 13465                   Rutgers                                             cla
## 13466                   Rutgers                                     competition
## 13467                   Rutgers                                   consequential
## 13468                   Rutgers                                    convincingly
## 13469                   Rutgers                                           court
## 13470                   Rutgers                                          danger
## 13471                   Rutgers                                    departmental
## 13472                   Rutgers                                     departments
## 13473                   Rutgers                                        downside
## 13474                   Rutgers                                       electives
## 13475                   Rutgers                                        emergent
## 13476                   Rutgers                                   frelinghuysen
## 13477                   Rutgers                                     fulfillment
## 13478                   Rutgers                                        granting
## 13479                   Rutgers                                         healthy
## 13480                   Rutgers                                          hiring
## 13481                   Rutgers                                             hoc
## 13482                   Rutgers                                      institutes
## 13483                   Rutgers                                             itr
## 13484                   Rutgers                                          kremer
## 13485                   Rutgers                                      marketable
## 13486                   Rutgers                                         masters
## 13487                   Rutgers                                        memorize
## 13488                   Rutgers                                          minors
## 13489                   Rutgers                                         mymajor
## 13490                   Rutgers                                       myrutgers
## 13491                   Rutgers                                     nagarakatte
## 13492                   Rutgers                                       navigator
## 13493                   Rutgers                                              nj
## 13494                   Rutgers                                          organi
## 13495                   Rutgers                                       ownership
## 13496                   Rutgers                                 personalization
## 13497                   Rutgers                                    persuasively
## 13498                   Rutgers                                      piscataway
## 13499                   Rutgers                                         planner
## 13500                   Rutgers                                      programing
## 13501                   Rutgers                                     prospective
## 13502                   Rutgers                                              qq
## 13503                   Rutgers                                      quicklinks
## 13504                   Rutgers                                          rushed
## 13505                   Rutgers                                         santosh
## 13506                   Rutgers                                          scienc
## 13507                   Rutgers                                           sense
## 13508                   Rutgers                                      skepticism
## 13509                   Rutgers                                           speci
## 13510                   Rutgers                                            stri
## 13511                   Rutgers                                        synopses
## 13512                   Rutgers                                          titles
## 13513                   Rutgers                                          tracks
## 13514                   Rutgers                                          ulrich
## 13515                   Rutgers                                      undergradu
## 13516                   Rutgers                                          unique
## 13517                   Rutgers                                          upside
## 13518                   Cornell                                             lab
## 13519          William_and_Mary                                        pipeline
## 13520          William_and_Mary                                      supervised
## 13521          William_and_Mary                                    unsupervised
## 13522                Boston_Uni                                             cas
## 13523                Boston_Uni                                          convex
## 13524                Boston_Uni                                        distance
## 13525                Boston_Uni                                          formal
## 13526                Boston_Uni                                          minute
## 13527                Boston_Uni                                      similarity
## 13528                Boston_Uni                                        tendency
## 13529                Boston_Uni                                              tf
## 13530                       MIT                                            aims
## 13531                       MIT                                            hour
## 13532                       MIT                                    optimization
## 13533                       MIT                                         session
## 13534               UWashington                                             day
## 13535               UWashington                                      discussion
## 13536                  UVA_Stat                                             run
## 13537                UCSanDiego                                         datahub
## 13538                UCSanDiego                                      officially
## 13539              USouthampton                                            lead
## 13540              USouthampton                                             map
## 13541              USouthampton                                      relational
## 13542              USouthampton                                           terms
## 13543                  NYU_DS4E                                          theory
## 13544                       ASU                                          random
## 13545                       UMD                                         faculty
## 13546                       MIT                                           2,500
## 13547                       MIT                                          6.00sc
## 13548                       MIT                                           aimed
## 13549                       MIT                                             buy
## 13550                       MIT                                            cont
## 13551                       MIT                                       educators
## 13552                       MIT                                         fashion
## 13553                       MIT                                             foy
## 13554                       MIT                                           graph
## 13555                       MIT                                          guttag
## 13556                       MIT                                     justifiably
## 13557                       MIT                                   massachusetts
## 13558                       MIT                                       parallell
## 13559                       MIT                                            pile
## 13560                       MIT                                           print
## 13561                       MIT                                            roll
## 13562                       MIT                                             ses
## 13563                       MIT                                          starts
## 13564                       MIT                                        strategy
## 13565                       MIT                                         suggest
## 13566                       MIT                                       surprises
## 13567                       MIT                                       theoretic
## 13568                       MIT                                            urge
## 13569                       ASU                                           title
## 13570                UWisconsin                                         edition
## 13571                 UKentucky                                         firefox
## 13572                UCSanDiego                                      recordings
## 13573                    UMaine                                      likelihood
## 13574                    UMaine                                      observance
## 13575                   UIU_207                                            labs
## 13576 UWisc_Madison_Programming                                          lec001
## 13577 UWisc_Madison_Programming                                              p1
## 13578 UWisc_Madison_Programming                                              p9
## 13579 UWisc_Madison_Programming                                       sortedlst
## 13580                  UToronto                                       detection
## 13581                   UIU_107                                         section
## 13582                       ASU                                     conditional
## 13583                       ASU                                         descent
## 13584                       ASU                                       sanctions
## 13585    UWisc_Madison_Modeling                                       variables
## 13586                 Princeton                                        datasets
## 13587    UWisc_Madison_Modeling                                       wrangling
## 13588               UWashington                                       decisions
## 13589               UWashington                                       practical
## 13590 UWisc_Madison_Programming                                       wisconsin
## 13591              USouthampton                                     application
## 13592                   Harvard                                        sections
## 13593                    Drexel                                          drexel
## 13594                    Drexel                                         storage
## 13595                  NYU_DS4E                                       scientist
## 13596               NYU_IntroDS                                      completing
## 13597              USouthampton                                           basic
## 13598          Washington_State                                           basic
## 13599                UCBerkeley                                        textbook
## 13600                  UToronto                                          mental
## 13601                 UKentucky                                         library
## 13602                   Cornell                                    unauthorized
## 13603                   Cornell                                    undocumented
## 13604                       MIT                                           score
## 13605                 Princeton                                            00pm
## 13606               NYU_IntroDS                                           model
## 13607          Washington_State                                          mining
## 13608              USouthampton                                        syllabus
## 13609                       UMD                                        external
## 13610                       UMD                                      incomplete
## 13611                      CUNY                                    installation
## 13612                      CUNY                                      requisites
## 13613                UWisconsin                                        chapters
## 13614                 UKentucky                                     discussions
## 13615 UWisc_Madison_Programming                                     interaction
## 13616                UWisconsin                                      governance
## 13617                UWisconsin                                       hardcover
## 13618                UWisconsin                                           risks
## 13619           Montgomery_Coll                                            desk
## 13620                     Brown                                      assessment
## 13621                   UIU_207                                      percentage
## 13622                   Cornell                                        question
## 13623                   UZurich                                  classification
## 13624               UWashington                                        expected
## 13625                UWisconsin                                           smart
## 13626                UCBerkeley                                    manipulation
## 13627                UCBerkeley                                          public
## 13628                   Harvard                                     responsible
## 13629                  UToronto                                          linear
## 13630                   UIU_207                                             7pm
## 13631                   UIU_207                                           adept
## 13632                   UIU_207                                        combined
## 13633                   UIU_207                                        comprise
## 13634                   UIU_207                                       confusing
## 13635                   UIU_207                                       corrected
## 13636                   UIU_207                                        detected
## 13637                   UIU_207                                         douglas
## 13638                   UIU_207                                        evenings
## 13639                   UIU_207                                          frames
## 13640                   UIU_207                                 go.illinois.edu
## 13641                   UIU_207                                        graphing
## 13642                   UIU_207                                          illini
## 13643                   UIU_207                               jakevdp.github.io
## 13644                   UIU_207                                          launch
## 13645                   UIU_207                                         lincoln
## 13646                   UIU_207                                             liu
## 13647                   UIU_207                                           noisy
## 13648                   UIU_207                                             php
## 13649                   UIU_207                                      proficient
## 13650                   UIU_207                                    programmable
## 13651                   UIU_207                       pythondatasciencehandbook
## 13652                   UIU_207                                        redirect
## 13653                   UIU_207                                         simpson
## 13654                   UIU_207                                      spring2020
## 13655                   UIU_207                                       translate
## 13656                   UIU_207                               www.openintro.org
## 13657                   UIU_207                                          yuxuan
## 13658              Georgia_Tech                                    mathematical
## 13659 UWisc_Madison_Programming                                          canvas
## 13660            UniSys_Georgia                                        cleaning
## 13661                     Brown                                           solve
## 13662                   UZurich                                      regression
## 13663                   Harvard                                         excuses
## 13664                   Harvard                                       gradebook
## 13665                   Harvard                                         knowing
## 13666                   Harvard                                            lost
## 13667                   Harvard                                misunderstanding
## 13668                   Harvard                                             nlp
## 13669                   Harvard                                    preattentive
## 13670                   Harvard                                       proctored
## 13671                     UUtah                                            utah
## 13672                   UZurich                                   convolutional
## 13673                   UZurich                                    discriminant
## 13674                   UZurich                                            dual
## 13675                   UZurich                                        estimate
## 13676                   UZurich                                      perceptron
## 13677                   UZurich                                   probabilistic
## 13678           Montgomery_Coll                                           click
## 13679                       LSU                                       accepting
## 13680                       LSU                                        advances
## 13681                       LSU                                       borrowing
## 13682                       LSU                               codeofconduct.php
## 13683                       LSU                                    communicated
## 13684                       LSU                                            gear
## 13685                       LSU                                     lib.lsu.edu
## 13686                       LSU                                     lsu.zoom.us
## 13687                       LSU                                        organize
## 13688                       LSU                                       softwares
## 13689                       LSU                                          strive
## 13690                       LSU                                         tureaud
## 13691            UniSys_Georgia                                        outcomes
## 13692              Georgia_Tech                                         descent
## 13693                   UZurich                                      supervised
## 13694                   Rutgers                                          called
## 13695                   UIU_107                                           1,000
## 13696                   UIU_107                                         870,900
## 13697                   UIU_107                                         android
## 13698                   UIU_107                                        archived
## 13699                   UIU_107                                           arise
## 13700                   UIU_107                                     assignmnets
## 13701                   UIU_107                                            byod
## 13702                   UIU_107                                          capped
## 13703                   UIU_107                                       debugging
## 13704                   UIU_107                                          exceed
## 13705                   UIU_107                                           fagen
## 13706                   UIU_107                                       fantastic
## 13707                   UIU_107                                        flanagan
## 13708                   UIU_107                                            hurt
## 13709                   UIU_107                                      insightful
## 13710                   UIU_107                                    intersection
## 13711                   UIU_107                                           karle
## 13712                   UIU_107                                           moved
## 13713                   UIU_107                                    nwibzkdbzgm1
## 13714                   UIU_107                nwibzkdbzgm1rwjsqxcrauxgz083ut09
## 13715                   UIU_107                                             qr1
## 13716                   UIU_107                                           raise
## 13717                   UIU_107                            rwjsqxcrauxgz083ut09
## 13718                   UIU_107                                          siebel
## 13719                   UIU_107                                   significantly
## 13720                   UIU_107                                           south
## 13721                   UIU_107                                          tackle
## 13722                   UIU_107                                         targets
## 13723                   UIU_107                                        totaling
## 13724                   UIU_107                                    ulmschneider
## 13725                   UIU_107                                            wade
## 13726           Montgomery_Coll                                      assistance
## 13727                  UVA_Stat                                      attendance
## 13728                  UVA_Stat                                         respond
## 13729                  NYU_DS4E                                           start
## 13730                   UVA_SDS                                         observe
## 13731                   UVA_SDS                                            sdac
## 13732                   UVA_SDS                                             tue
## 13733                   UVA_SDS                                          you’ll
## 13734                   UIU_207                                             lab
## 13735              Georgia_Tech                                        calculus
## 13736                   UZurich                                       selection
## 13737                   UZurich                                         squares
## 13738                   Cornell                                  accommodations
## 13739                   UVA_SDS                                       objective
## 13740                   UZurich                                        calculus
## 13741                   Harvard                                         harvard
## 13742 UWisc_Madison_Programming                                              cs
## 13743                       ASU                                         asu.edu
## 13744                       ASU                                       coverings
## 13745                       ASU                                             dat
## 13746                       ASU                                       employees
## 13747                       ASU                                           favor
## 13748                       ASU                                            ipod
## 13749                       ASU                                             mat
## 13750                       ASU                                             mp3
## 13751                       ASU                                              pd
## 13752                       ASU                                           plane
## 13753                       ASU                                          samara
## 13754                       ASU                                            sims
## 13755                       ASU                                       subjected
## 13756                       ASU                                          threat
## 13757                       ASU                                     threatening
## 13758                       ASU                                     www.asu.edu
## 13759                  NYU_DS4E                                       causality
## 13760                  NYU_DS4E                                          handed
## 13761                  NYU_DS4E                                            it’s
## 13762                  NYU_DS4E                                      randomness
## 13763                  NYU_DS4E                                           we’re
## 13764               NYU_IntroDS                                    accompanying
## 13765               NYU_IntroDS                                          curves
## 13766               NYU_IntroDS                                      illustrate
## 13767               NYU_IntroDS                                         liberal
## 13768               NYU_IntroDS                                             mid
## 13769               NYU_IntroDS                                        o’reilly
## 13770               NYU_IntroDS                                       technique
## 13771               NYU_IntroDS                                        theories
## 13772                     Brown                                         acquire
## 13773                     Brown                                           admin
## 13774                     Brown                                             cit
## 13775                     Brown                                  considerations
## 13776                     Brown                                            jake
## 13777                     Brown                                        released
## 13778                     Brown                                            soft
## 13779                     Brown                                        tradeoff
## 13780                     Brown                                             tth
## 13781                     Brown                                      vanderplas
## 13782               UWashington                                         copying
## 13783               UWashington                                           cover
## 13784               UWashington                                          driven
## 13785               UWashington                                            live
## 13786               UWashington                                        training
## 13787          William_and_Mary                                              dr
## 13788              USouthampton                                           cloud
## 13789              USouthampton                                         connect
## 13790              USouthampton                                    fundamentals
## 13791              USouthampton                                     terminology
## 13792          Washington_State                                       filtering
## 13793          Washington_State                                            isbn
## 13794            UniSys_Georgia                                      actionable
## 13795            UniSys_Georgia                                         anomaly
## 13796            UniSys_Georgia                                          arrays
## 13797            UniSys_Georgia                                    associations
## 13798            UniSys_Georgia                                         bagging
## 13799            UniSys_Georgia                                       causality
## 13800            UniSys_Georgia                                            cost
## 13801            UniSys_Georgia                                       empirical
## 13802            UniSys_Georgia                                         focused
## 13803            UniSys_Georgia                                       formulate
## 13804            UniSys_Georgia                                        frequent
## 13805            UniSys_Georgia                                      histograms
## 13806            UniSys_Georgia                                           names
## 13807            UniSys_Georgia                                     potentially
## 13808            UniSys_Georgia                                            true
## 13809            UniSys_Georgia                                       unethical
## 13810                   UIU_207                                           total
## 13811                UWisconsin                                      statements
## 13812                  UVA_Stat                                          submit
## 13813    UWisc_Madison_Modeling                                        adequacy
## 13814    UWisc_Madison_Modeling                                    administered
## 13815    UWisc_Madison_Modeling                                 astrostatistics
## 13816    UWisc_Madison_Modeling                                            bret
## 13817    UWisc_Madison_Modeling                                         capture
## 13818    UWisc_Madison_Modeling                                    comprehended
## 13819    UWisc_Madison_Modeling                                       culminate
## 13820    UWisc_Madison_Modeling                            dimensionahsummaries
## 13821    UWisc_Madison_Modeling                                       displayed
## 13822    UWisc_Madison_Modeling                                         editing
## 13823    UWisc_Madison_Modeling                                          faciam
## 13824    UWisc_Madison_Modeling                                        inferred
## 13825    UWisc_Madison_Modeling                                       integrate
## 13826    UWisc_Madison_Modeling                                        inveniam
## 13827    UWisc_Madison_Modeling                                          jjkehe
## 13828    UWisc_Madison_Modeling                                         knitted
## 13829    UWisc_Madison_Modeling                                        knitting
## 13830    UWisc_Madison_Modeling                                          larget
## 13831    UWisc_Madison_Modeling                                      modelsdata
## 13832    UWisc_Madison_Modeling                                           ogram
## 13833    UWisc_Madison_Modeling                                           orcid
## 13834    UWisc_Madison_Modeling                                     proportions
## 13835    UWisc_Madison_Modeling                                           prose
## 13836    UWisc_Madison_Modeling                                        quantify
## 13837    UWisc_Madison_Modeling                                         scholar
## 13838    UWisc_Madison_Modeling                                             soa
## 13839    UWisc_Madison_Modeling                                            soas
## 13840    UWisc_Madison_Modeling                                        spending
## 13841    UWisc_Madison_Modeling                                   statistically
## 13842    UWisc_Madison_Modeling                                              te
## 13843    UWisc_Madison_Modeling                                            viam
## 13844    UWisc_Madison_Modeling                                         wrangle
## 13845                       UMD                                        exercise
## 13846               NYU_IntroDS                                         writing
## 13847                   Rutgers                                        programs
## 13848                 Princeton                                          kernel
## 13849                 Princeton                                        variable
## 13850                     Brown                                      validation
## 13851                      CUNY                                    mathematical
## 13852                       ASU                                      counseling
## 13853                       ASU                                        counting
## 13854                       ASU                                              ix
## 13855                       ASU                                         theorem
## 13856              Georgia_Tech                                          person
## 13857                 UKentucky                                        distance
## 13858                    Drexel                                           index
## 13859            UniSys_Georgia                                         account
## 13860            UniSys_Georgia                                        findings
## 13861            UniSys_Georgia                                            role
## 13862 UWisc_Madison_Programming                                            code
## 13863                Boston_Uni                                  electronically
## 13864                Boston_Uni                                        saturday
## 13865                Boston_Uni                                            slot
## 13866                Boston_Uni                                           speak
## 13867                Boston_Uni                                        workload
## 13868                UCBerkeley                                         service
## 13869                   UIU_207                                          giving
## 13870                       ASU                                       variables
## 13871                UCBerkeley                                             aim
## 13872                UCBerkeley                                    berkeley.edu
## 13873                UCBerkeley                                       calendars
## 13874                UCBerkeley                                        charting
## 13875                UCBerkeley                                          client
## 13876                UCBerkeley                                     collections
## 13877                UCBerkeley                                      conjuction
## 13878                UCBerkeley                                     conjunction
## 13879                UCBerkeley                                       customize
## 13880                UCBerkeley                                          delves
## 13881                UCBerkeley                                        deployed
## 13882                UCBerkeley                                        economic
## 13883                UCBerkeley                                            edge
## 13884                UCBerkeley                                            edit
## 13885                UCBerkeley                                          folium
## 13886                UCBerkeley                                       generates
## 13887                UCBerkeley                                    geographical
## 13888                UCBerkeley                                         geojson
## 13889                UCBerkeley                                      kubernetes
## 13890                UCBerkeley                                           loads
## 13891                UCBerkeley                                           match
## 13892                UCBerkeley                                         novices
## 13893                UCBerkeley                                            okpy
## 13894                UCBerkeley                                          parent
## 13895                UCBerkeley                                     pedagogical
## 13896                UCBerkeley                                             row
## 13897                UCBerkeley                                        simplify
## 13898                UCBerkeley                                         slicing
## 13899                UCBerkeley                                      standalone
## 13900                UCBerkeley                                         teaches
## 13901                UCBerkeley                                      transition
## 13902                UWisconsin                                         discuss
## 13903                    UMaine                                      generating
## 13904                    UMaine                                    independence
## 13905                    UMaine                                           monte
## 13906           Montgomery_Coll                                       technical
## 13907                Boston_Uni                                     collaborate
## 13908                Boston_Uni                                              cs
## 13909                Boston_Uni                                       permitted
## 13910                Boston_Uni                                         regrade
## 13911                   Cornell                                            team
## 13912                    Drexel                                      foundation
## 13913                   UIU_107                                          giving
## 13914                   UIU_107                                            held
## 13915                   UIU_107                                            lead
## 13916    UWisc_Madison_Modeling                                      individual
## 13917                UWisconsin                                           title
## 13918                    UMaine                                     conditional
## 13919                  NYU_DS4E                                     limitations
## 13920                  UVA_Stat                                         failing
## 13921                  UVA_Stat                                       notebooks
## 13922                  UVA_Stat                                             pre
## 13923           Montgomery_Coll                                            mail
## 13924                  NYU_DS4E                                          ethics
## 13925                  UVA_Stat                                            10am
## 13926                  UVA_Stat                                            12pm
## 13927                  UVA_Stat                                            15pm
## 13928                  UVA_Stat                                          2kpzx8
## 13929                  UVA_Stat                                             2pm
## 13930                  UVA_Stat                                           clark
## 13931                  UVA_Stat                                          costin
## 13932                  UVA_Stat                                  gradescope.com
## 13933                  UVA_Stat                                          halsey
## 13934                  UVA_Stat                                          helman
## 13935                  UVA_Stat                              honor.virginia.edu
## 13936                  UVA_Stat                                       inquiries
## 13937                  UVA_Stat                                          jeh6kw
## 13938                  UVA_Stat                                           jesse
## 13939                  UVA_Stat                                    kalenichenko
## 13940                  UVA_Stat                                          kec2vn
## 13941                  UVA_Stat                                         mandate
## 13942                  UVA_Stat                                          nhk6up
## 13943                  UVA_Stat                                        nicholas
## 13944                  UVA_Stat                                      occasional
## 13945                  UVA_Stat                                 programatically
## 13946                  UVA_Stat                                      provisions
## 13947                  UVA_Stat                                        receives
## 13948                  UVA_Stat                                      responding
## 13949                  UVA_Stat                                          scheme
## 13950                  UVA_Stat                                          usable
## 13951                  UVA_Stat                                        whomever
## 13952                  UVA_Stat                                 windowsspecific
## 13953                  UVA_Stat                     www.inferentialthinking.com
## 13954                  UToronto                                          equity
## 13955                   UZurich                                        logistic
## 13956                UCSanDiego                                          passed
## 13957               UWashington                                      estimation
## 13958               UWashington                                      hypothesis
## 13959               UWashington                                   participating
## 13960               UWashington                                      percentage
## 13961                       LSU                                        syllabus
## 13962              Georgia_Tech                                     familiarity
## 13963              Georgia_Tech                                        matrices
## 13964              Georgia_Tech                                            move
## 13965              Georgia_Tech                                          record
## 13966           Montgomery_Coll                                         support
## 13967          William_and_Mary                                           nooks
## 13968          William_and_Mary                                            plot
## 13969          William_and_Mary                                     synchronous
## 13970          William_and_Mary                                           tyler
## 13971                       MIT                                           serve
## 13972                       MIT                                        versions
## 13973                   UZurich                                           noise
## 13974                    Drexel                                  www.drexel.edu
## 13975                      CUNY                                          social
## 13976              Georgia_Tech                                     discussions
## 13977    UWisc_Madison_Modeling                                         studies
## 13978          William_and_Mary                                          neural
## 13979                     Brown                                         missing
## 13980                     Brown                                        logistic
## 13981                     Brown                                    presentation
## 13982                 UKentucky                                     achievement
## 13983                 UKentucky                                            uk’s
## 13984                       MIT                                     computation
## 13985                UCSanDiego                                             osd
## 13986                   Harvard                                          python
## 13987            UniSys_Georgia                                         develop
## 13988            UniSys_Georgia                                         limited
## 13989            UniSys_Georgia                                       numerical
## 13990              USouthampton                                             art
## 13991              USouthampton                                             fax
## 13992              USouthampton                                          hadoop
## 13993              USouthampton                                           nosql
## 13994              USouthampton                                         notions
## 13995              USouthampton                                        parallel
## 13996              USouthampton                                         printed
## 13997               UWashington                                           score
## 13998               UWashington                                          credit
## 13999 UWisc_Madison_Programming                                          median
## 14000          Washington_State                                      generation
## 14001          Washington_State                                          safety
## 14002                    Drexel                                         history
## 14003                   Cornell                                          ensure
## 14004                UCBerkeley                                    installation
## 14005                UWisconsin                                        activity
## 14006                UWisconsin                                           excel
## 14007                   Cornell                                         cornell
## 14008                   Cornell                                        inf02950
## 14009                   Cornell                                          quarto
## 14010                   Cornell                                   syllabus.html
## 14011              USouthampton                                            core
## 14012              USouthampton                                           level
## 14013              USouthampton                                      objectives
## 14014              USouthampton                                     performance
## 14015                       LSU                                      commitment
## 14016           Montgomery_Coll                                         quizzes
## 14017           Montgomery_Coll                                         service
## 14018                UCBerkeley                                          source
## 14019                UWisconsin                                          length
## 14020                   Harvard                                        database
## 14021                   Cornell                                            info
## 14022           Montgomery_Coll                                        closings
## 14023           Montgomery_Coll                                            peng
## 14024           Montgomery_Coll                                           roger
## 14025           Montgomery_Coll                                       routinely
## 14026                 Princeton                                       penalized
## 14027          William_and_Mary                                   preprocessing
## 14028              Georgia_Tech                                          matrix
## 14029              Georgia_Tech                                             pre
## 14030                UWisconsin                                         keeping
## 14031                UWisconsin                                             of8
## 14032                  UVA_Stat                                           posts
## 14033            UniSys_Georgia                                         methods
## 14034                   Harvard                                     exploratory
## 14035                   UZurich                                          matrix
## 14036                   UIU_107                                       discovery
## 14037                   UIU_107                                       thursdays
## 14038                    UMaine                                    distribution
## 14039            UniSys_Georgia                                         content
## 14040                   UZurich                                     convergence
## 14041                   UZurich                                         kernels
## 14042                   UZurich                                        negative
## 14043                   UZurich                                          recall
## 14044                   UZurich                                  regularisation
## 14045                       ASU                                       publisher
## 14046                UCBerkeley                                        notebook
## 14047                      CUNY                                        approach
## 14048                   Rutgers                                     conclusions
## 14049               UWashington                                          called
## 14050               UWashington                                      conceptual
## 14051               UWashington                                         diverse
## 14052               UWashington                                           pages
## 14053               UWashington                                          scores
## 14054               UWashington                                       situation
## 14055               UWashington                                           skill
## 14056                     Brown                                      evaluation
## 14057                    UMaine                                      covariance
## 14058                    UMaine                                     expectation
## 14059              Georgia_Tech                                          method
## 14060                 UKentucky                                      discussion
## 14061                   UVA_SDS                                       associate
## 14062                   UVA_SDS                                           elson
## 14063                   UVA_SDS                                          pledge
## 14064                   UVA_SDS                                             uva
## 14065                UCSanDiego                                              ed
## 14066                   Rutgers                                      curriculum
## 14067                 UKentucky                                         posting
## 14068                     Brown                                      continuous
## 14069                     Brown                                     predictions
## 14070                UCSanDiego                                      submitting
## 14071    UWisc_Madison_Modeling                                       graphical
## 14072    UWisc_Madison_Modeling                                      integrated
## 14073          Washington_State                                           osble
## 14074                 Princeton                                            book
## 14075               UWashington                                         section
## 14076                  NYU_DS4E                                          causal
## 14077                  NYU_DS4E                                          import
## 14078                  NYU_DS4E                                            skim
## 14079               NYU_IntroDS                                    calculations
## 14080               NYU_IntroDS                                          essays
## 14081               NYU_IntroDS                                         logical
## 14082                     Brown                                      advantages
## 14083                     Brown                                          andras
## 14084                     Brown                                           brown
## 14085                     Brown                                       classical
## 14086                     Brown                                        develops
## 14087                     Brown                                   disadvantages
## 14088                     Brown                                      emphasized
## 14089                     Brown                                          entail
## 14090                     Brown                                          equips
## 14091                     Brown                                           hyper
## 14092                     Brown                                        included
## 14093                     Brown                                      initiative
## 14094                     Brown                                   interpretable
## 14095                     Brown                                      monitoring
## 14096                     Brown                                          plotly
## 14097                     Brown                                    practitioner
## 14098                     Brown                                        produced
## 14099                     Brown                                      researcher
## 14100                     Brown                                       revisited
## 14101                     Brown                                          tuning
## 14102                     Brown                                        visually
## 14103                     Brown                                            zsom
## 14104 UWisc_Madison_Programming                                         quizzes
## 14105            UniSys_Georgia                                   distributions
## 14106            UniSys_Georgia                                         society
## 14107            UniSys_Georgia                                     surrounding
## 14108                   UIU_207                                   collaboration
## 14109              USouthampton                                      university
## 14110                       MIT                                        dropping
## 14111                       MIT                                    experimental
## 14112            UniSys_Georgia                                       addresses
## 14113            UniSys_Georgia                                 appropriateness
## 14114            UniSys_Georgia                                       assessing
## 14115            UniSys_Georgia                                          basket
## 14116            UniSys_Georgia                                       bivariate
## 14117            UniSys_Georgia                                      california
## 14118            UniSys_Georgia                                         concise
## 14119            UniSys_Georgia                                      converting
## 14120            UniSys_Georgia                                   differentiate
## 14121            UniSys_Georgia                                           joins
## 14122            UniSys_Georgia                                      measurable
## 14123            UniSys_Georgia                                            mine
## 14124            UniSys_Georgia                               misrepresentation
## 14125            UniSys_Georgia                                             oer
## 14126            UniSys_Georgia                                       optimally
## 14127            UniSys_Georgia                                      population
## 14128            UniSys_Georgia                                     qualitative
## 14129            UniSys_Georgia                                       retrieval
## 14130            UniSys_Georgia                                        shopping
## 14131            UniSys_Georgia                                           slope
## 14132            UniSys_Georgia                                          spread
## 14133                   Rutgers                                           major
## 14134              USouthampton                                            copy
## 14135          Washington_State                                  recommendation
## 14136    UWisc_Madison_Modeling                                        sessions
## 14137                   UVA_SDS                                            labs
## 14138                       UMD                                       classroom
## 14139                   UIU_107                                   collaboration
## 14140                      CUNY                                       notebooks
## 14141                 Princeton                                  macroeconomics
## 14142                 Princeton                                   neuroblastoma
## 14143                 Princeton                                   nonparametric
## 14144                 Princeton                                        sherrerd
## 14145                 Princeton                                           zhang
## 14146                 Princeton                                          zillow
## 14147                 Princeton                                             zou
## 14148                     Brown                                      regression
## 14149              Georgia_Tech                                     constrained
## 14150              Georgia_Tech                                      randomness
## 14151 UWisc_Madison_Programming                                        partners
## 14152 UWisc_Madison_Programming                                              uw
## 14153                   UZurich                                     constrained
## 14154                   UZurich                                          curves
## 14155                   UZurich                                       estimator
## 14156                UCBerkeley                                          assign
## 14157                UCBerkeley                                            fill
## 14158                UCBerkeley                                      matplotlib
## 14159                UCBerkeley                                         modules
## 14160                UCBerkeley                                              uc
## 14161                  NYU_DS4E                                      hypotheses
## 14162               NYU_IntroDS                                      humanities
## 14163               NYU_IntroDS                                      principles
## 14164              Georgia_Tech                                          linear
## 14165                 UKentucky                                        military
## 14166                Boston_Uni                                              bu
## 14167                Boston_Uni                                   collaborators
## 14168                Boston_Uni                                         easiest
## 14169                Boston_Uni                                       imperfect
## 14170                Boston_Uni                                             mon
## 14171                Boston_Uni                                      substitute
## 14172                Boston_Uni                                             tfs
## 14173                Boston_Uni                                           thurs
## 14174                 Princeton                                            hall
## 14175                   UVA_SDS                                         capital
## 14176                   UVA_SDS                                              dp
## 14177                   UVA_SDS                                            game
## 14178                   UVA_SDS                                  www.amazon.com
## 14179                     Brown                                      algorithms
## 14180                     Brown                                     exploratory
## 14181                UCBerkeley                                        features
## 14182                   Harvard                                         regrade
## 14183                    UMaine                                          chains
## 14184                    UMaine                                          square
## 14185                  UVA_Stat                                      accessible
## 14186                  UVA_Stat                                             bit
## 14187                  UVA_Stat                                     distributed
## 14188                  UVA_Stat                                            half
## 14189                  UVA_Stat                                          hidden
## 14190                  UVA_Stat                                        websites
## 14191                 Princeton                                            labs
## 14192                  NYU_DS4E                                            week
## 14193                   UIU_207                                     exploration
## 14194                   Cornell                                         prepare
## 14195              USouthampton                                             csv
## 14196              USouthampton                                       delivered
## 14197              USouthampton                                      directions
## 14198              USouthampton                                            door
## 14199              USouthampton                                      experiment
## 14200              USouthampton                                   international
## 14201              USouthampton                                      protection
## 14202              USouthampton                                       scenarios
## 14203              USouthampton                                      underlying
## 14204              USouthampton                                        visitors
## 14205          Washington_State                                            spam
## 14206               UWashington                                           extra
## 14207               UWashington                                            sets
## 14208                   UIU_207                                       integrity
## 14209                UWisconsin                                           ebook
## 14210                  UToronto                                        starting
## 14211                       LSU                                             git
## 14212    UWisc_Madison_Modeling                                         reading
## 14213                  UToronto                                             esl
## 14214                  UToronto                                     utoronto.ca
## 14215                  UToronto                     www.studentlife.utoronto.ca
## 14216               UWashington                                      acceptable
## 14217               UWashington                                         browser
## 14218               UWashington                                         consist
## 14219               UWashington                                          else's
## 14220               UWashington                                           login
## 14221               UWashington                                      misconduct
## 14222                  UToronto                                         project
## 14223                   Harvard                                     engineering
## 14224                   Cornell                                        deadline
## 14225                   UIU_107                                       integrity
## 14226              USouthampton                                      collection
## 14227                 UKentucky                                        absences
## 14228 UWisc_Madison_Programming                                         project
## 14229                 Princeton                                            00am
## 14230                 Princeton                                            30pm
## 14231                 Princeton                                             crc
## 14232                 Princeton                                            york
## 14233    UWisc_Madison_Modeling                                         address
## 14234              USouthampton                                       computing
## 14235                   UZurich                                          linear
## 14236                   UZurich                                      generative
## 14237                   UZurich                                           lasso
## 14238                   UZurich                                             log
## 14239                   UZurich                                     overfitting
## 14240                      CUNY                                           shape
## 14241                       ASU                                      disruptive
## 14242                       ASU                                     probability
## 14243                  UToronto                                       analytics
## 14244                     UUtah                                       teammates
## 14245    UWisc_Madison_Modeling                                     exploration
## 14246    UWisc_Madison_Modeling                                            html
## 14247    UWisc_Madison_Modeling                                    publications
## 14248                       UMD                                          degree
## 14249                  NYU_DS4E                                          tables
## 14250                      CUNY                                            draw
## 14251                   UVA_SDS                                           theme
## 14252               NYU_IntroDS                                            week
## 14253                  UVA_Stat                                            code
## 14254                 Princeton                                             pdf
## 14255                UWisconsin                                             dos
## 14256                UWisconsin                                          lesson
## 14257                UWisconsin                                          quants
## 14258           Montgomery_Coll                                              mc
## 14259          Washington_State                                             eda
## 14260                UCBerkeley                                           tests
## 14261            UniSys_Georgia                                         testing
## 14262               UWashington                                      evaluation
## 14263    UWisc_Madison_Modeling                                        assigned
## 14264                   Harvard                           extension.harvard.edu
## 14265    UWisc_Madison_Modeling                                        modeling
## 14266              Georgia_Tech                                        gradient
## 14267                       MIT                                            play
## 14268                UCBerkeley                                      phenomenon
## 14269                   UZurich                                        gradient
## 14270                   UZurich                                          neural
## 14271                   Rutgers                                              cs
## 14272          William_and_Mary                                           slack
## 14273                   Harvard                                             sql
## 14274                  UVA_Stat                                          piazza
## 14275                    Drexel                                            demo
## 14276                Boston_Uni                                   collaboration
## 14277              USouthampton                                           cover
## 14278              USouthampton                                       databases
## 14279              USouthampton                                        sampling
## 14280                   UIU_107                                        sections
## 14281          Washington_State                                          graphs
## 14282                       UMD                                       integrity
## 14283                       ASU                                            cell
## 14284                  NYU_DS4E                                          you’ll
## 14285                 UKentucky                                             kim
## 14286                 UKentucky                                             lis
## 14287                 UKentucky                                       youngseek
## 14288                       MIT                                            book
## 14289                 UKentucky                                          week’s
## 14290                   UIU_107                                          credit
## 14291                     Brown                                        pipeline
## 14292                     Brown                                          scikit
## 14293                       ASU                                        gradient
## 14294                UWisconsin                                             nov
## 14295                  UVA_Stat                                        deadline
## 14296               UWashington                                    consequences
## 14297               UWashington                                    experimental
## 14298               UWashington                                         produce
## 14299            UniSys_Georgia                                     categorical
## 14300            UniSys_Georgia                                       intervals
## 14301            UniSys_Georgia                                       summarize
## 14302               NYU_IntroDS                                        decision
## 14303                       UMD                              libguides.umgc.edu
## 14304                   UIU_207                                         english
## 14305                   Cornell                                     cornell.edu
## 14306                   Cornell                             infosci.cornell.edu
## 14307                   Cornell                                       soltoffbc
## 14308                   Harvard                                     integration
## 14309                   Harvard                                         revised
## 14310                      CUNY                                    quantitative
## 14311                  NYU_DS4E                                          you’re
## 14312                 UKentucky                                         excused
## 14313                      CUNY                                        actively
## 14314                   UIU_107                                          device
## 14315                   UIU_107                                        discover
## 14316                   UIU_107                                            prof
## 14317                   UIU_107                                             pwd
## 14318              Georgia_Tech                                         squares
## 14319               UWashington                                         content
## 14320              Georgia_Tech                                        author's
## 14321              Georgia_Tech                                       bluejeans
## 14322              Georgia_Tech                                        fall2020
## 14323              Georgia_Tech                                           howey
## 14324              Georgia_Tech                                   multivariable
## 14325              Georgia_Tech                                            n210
## 14326              Georgia_Tech                                          strang
## 14327              Georgia_Tech                         www.mdav.ece.gatech.edu
## 14328                    UMaine                                     probability
## 14329 UWisc_Madison_Programming                                           cs319
## 14330                  NYU_DS4E                                             lab
## 14331                   UIU_107                                         minimum
## 14332                   UZurich                                          kernel
## 14333                       ASU                                        violence
## 14334            UniSys_Georgia                                        identify
## 14335                  UToronto                                         advisor
## 14336                  UToronto                                         anomaly
## 14337                   UVA_SDS                                         garbage
## 14338                   UVA_SDS                                        hardware
## 14339                   UVA_SDS                                        virginia
## 14340    UWisc_Madison_Modeling                                    construction
## 14341                UCSanDiego                                         quarter
## 14342                  UToronto                                             pca
## 14343                UWisconsin                                           watch
## 14344    UWisc_Madison_Modeling                                      discussion
## 14345              USouthampton                                             1bj
## 14346              USouthampton                                         adriane
## 14347              USouthampton                                   architectures
## 14348              USouthampton                                            cats
## 14349              USouthampton                                         chapman
## 14350              USouthampton                                        colleges
## 14351              USouthampton                                              d3
## 14352              USouthampton                                            ects
## 14353              USouthampton                                       employers
## 14354              USouthampton                                         freedom
## 14355              USouthampton                                       guardians
## 14356              USouthampton                                            jobs
## 14357              USouthampton                                         kingdom
## 14358              USouthampton                                         mongodb
## 14359              USouthampton                                         parents
## 14360              USouthampton                                      recruiters
## 14361              USouthampton                                     researchers
## 14362              USouthampton                                            road
## 14363              USouthampton                                            s017
## 14364              USouthampton                                         schools
## 14365              USouthampton                                             tel
## 14366              USouthampton                                          united
## 14367          Washington_State                                         assefaw
## 14368          Washington_State                                              nn
## 14369                       MIT                                            half
## 14370                   UZurich                                     formulation
## 14371                UWisconsin                                       paperback
## 14372                  UToronto                                         session
## 14373                  UToronto                                            quiz
## 14374    UWisc_Madison_Modeling                                        document
## 14375                    UMaine                                          sample
## 14376                    UMaine                                        variance
## 14377               UWashington                                        sections
## 14378                   UVA_SDS                                       professor
## 14379                   Harvard                                         tuesday
## 14380                UCBerkeley                                          hosted
## 14381                UCBerkeley                                         indexes
## 14382                UCBerkeley                                  infrastructure
## 14383                UCBerkeley                                      maintained
## 14384                      CUNY                                           power
## 14385                 Princeton                                     generalized
## 14386                      CUNY                                             ado
## 14387                      CUNY                                          calado
## 14388                      CUNY                                       d'lgnazio
## 14389                      CUNY                                         engaged
## 14390                      CUNY                                        feminism
## 14391                      CUNY                                          filipa
## 14392                      CUNY                                          ipa.ca
## 14393                      CUNY                                           klein
## 14394                      CUNY                                          lauren
## 14395                      CUNY                                              na
## 14396                      CUNY                                     nyu.zoom.us
## 14397                UWisconsin                                             oct
## 14398                UWisconsin                                       publisher
## 14399                     Brown                                             eda
## 14400                    UMaine                                          random
## 14401           Montgomery_Coll                                         college
## 14402                       ASU                                             sex
## 14403                UCBerkeley                                          module
## 14404                UCBerkeley                                           table
## 14405            UniSys_Georgia                                     experiments
## 14406            UniSys_Georgia                                           legal
## 14407                  UVA_Stat                                      consulting
## 14408                  UVA_Stat                                        relating
## 14409                    UMaine                                           maine
## 14410                    UMaine                                      umaine.edu
## 14411                  UVA_Stat                                   participation
## 14412           Montgomery_Coll                       cms.montgomerycollege.edu
## 14413           Montgomery_Coll                                           swirl
## 14414                 Princeton                                     classifiers
## 14415                    UMaine                                           carlo
## 14416                    UMaine                                        variable
## 14417          William_and_Mary                                      introduced
## 14418                      CUNY                                      humanities
## 14419                      CUNY                                         lessons
## 14420                  UVA_Stat                                           honor
## 14421                  UVA_Stat                                       permitted
## 14422               UWashington                                       challenge
## 14423               UWashington                                           enter
## 14424               UWashington                                      evaluating
## 14425               UWashington                                         filling
## 14426               UWashington                                    increasingly
## 14427               UWashington                                        modified
## 14428               UWashington                                         quarter
## 14429               UWashington                                       referring
## 14430               UWashington                                            runs
## 14431               UWashington                                            ryan
## 14432               UWashington                                      simulation
## 14433                   Rutgers                                          defend
## 14434                   Rutgers                                      imielinski
## 14435                   Rutgers                                          jersey
## 14436                   Rutgers                                        literacy
## 14437                   Rutgers                                       placement
## 14438                   Rutgers                                          tomasz
## 14439                   UVA_SDS                                             lab
## 14440                       UMD                                        turnitin
## 14441                       MIT                                            term
## 14442               UWashington                                   participation
## 14443                  UToronto                                          health
## 14444                UCSanDiego                                            ucsd
## 14445              USouthampton                                        existing
## 14446              USouthampton                                          module
## 14447                       MIT                                      accomplish
## 14448                       MIT                                     accumulated
## 14449                       MIT                                       confident
## 14450                       MIT                                          finger
## 14451                       MIT                                             ocw
## 14452                       MIT                                     recitations
## 14453                       MIT                                          rolled
## 14454                       MIT                                         rolling
## 14455                       MIT                                            sins
## 14456                UWisconsin                                    presentation
## 14457 UWisc_Madison_Programming                                            auto
## 14458          William_and_Mary                                          wm.edu
## 14459               UWashington                                          result
## 14460 UWisc_Madison_Programming                                         partner
## 14461                    Drexel                                            blog
## 14462                   Rutgers                                        advising
## 14463               UWashington                                     application
## 14464               NYU_IntroDS                                    implications
## 14465                 UKentucky                                            ukit
## 14466                 UKentucky                                         uky.edu
## 14467                    UMaine                                      confidence
## 14468                UWisconsin                                     forecasting
## 14469               NYU_IntroDS                                       homeworks
## 14470               UWashington                                      activities
## 14471                   UIU_207                                      calculator
## 14472                   UIU_207                                        illinois
## 14473                   UIU_207                                             os3
## 14474                   UIU_207                                           quant
## 14475                   UIU_207                                         stat207
## 14476              Georgia_Tech                                         optimal
## 14477                   Harvard                                             dml
## 14478                UCBerkeley                                     datascience
## 14479                UCBerkeley                                          slides
## 14480                       LSU                                         lsu.edu
## 14481                       LSU                                             saa
## 14482    UWisc_Madison_Modeling                                  interpretation
## 14483                   Harvard                                            csci
## 14484                      CUNY                                        critical
## 14485                Boston_Uni                                         fastest
## 14486                Boston_Uni                                         october
## 14487                   UIU_107                                illinois.zoom.us
## 14488           Montgomery_Coll                                            quiz
## 14489                  UToronto                                       practical
## 14490              Georgia_Tech                                         algebra
## 14491                UWisconsin                                       analytics
## 14492                  UVA_Stat                                        anaconda
## 14493                   Harvard                                        managing
## 14494               UWashington                                      attendance
## 14495               NYU_IntroDS                                           moses
## 14496                     Brown                                   preprocessing
## 14497              USouthampton                                        pipeline
## 14498                  UToronto                                      distressed
## 14499                  UToronto                                         feeling
## 14500                  UToronto                                            pfda
## 14501            UniSys_Georgia                                       bootstrap
## 14502    UWisc_Madison_Modeling                                             aut
## 14503    UWisc_Madison_Modeling                                        cisewski
## 14504    UWisc_Madison_Modeling                                           jessi
## 14505    UWisc_Madison_Modeling                                            kehe
## 14506    UWisc_Madison_Modeling                                         stat240
## 14507                   UIU_107                                          earned
## 14508                UCSanDiego                                        waitlist
## 14509                       UMD                                       reporting
## 14510                UCSanDiego                                           tests
## 14511 UWisc_Madison_Programming                                           cs220
## 14512                 Princeton                                      covariance
## 14513          William_and_Mary                                        keywords
## 14514                    Drexel                                en.wikipedia.org
## 14515    UWisc_Madison_Modeling                                    reproducible
## 14516                UCBerkeley                                      iterations
## 14517                    UMaine                                        gaussian
## 14518                 Princeton                                       screening
## 14519                 Princeton                                         sherred
## 14520                   UIU_107                                            stat
## 14521                   Rutgers                                    registration
## 14522                  UVA_Stat                                            lock
## 14523                  UToronto                                         toronto
## 14524                  UToronto                                        tutorial
## 14525                  UToronto                                        wellness
## 14526                       MIT                                            late
## 14527                UCSanDiego                                         partner
## 14528                   UZurich                                         maximum
## 14529                       MIT                                             mit
## 14530                UCBerkeley                                        berkeley
## 14531               UWashington                                      challenges
## 14532                    UMaine                                     brightspace
## 14533                    UMaine                                            citl
## 14534                    UMaine                                          markov
## 14535              Georgia_Tech                                          convex
## 14536 UWisc_Madison_Programming                                          grader
## 14537                   UZurich                                          convex
## 14538               UWashington                                        achieved
## 14539               UWashington                                         broadly
## 14540               UWashington                                           bumps
## 14541               UWashington                                           codes
## 14542               UWashington                                    contributing
## 14543               UWashington                                       cs.uw.edu
## 14544               UWashington                                        implicit
## 14545               UWashington                                           paced
## 14546               UWashington                                       recipient
## 14547               UWashington                                       similarly
## 14548               UWashington                        skillitup.ischool.uw.edu
## 14549               UWashington                                       skillltup
## 14550 UWisc_Madison_Programming                                         madison
## 14551                   Harvard                                    storytelling
## 14552                   UIU_207                                           bonus
## 14553                Boston_Uni                                          piazza
## 14554                   UIU_107                                           extra
## 14555                   UIU_107                                         cutoffs
## 14556                   Harvard                                        exercise
## 14557                    Drexel                                       wikipedia
## 14558                   Harvard                                           mysql
## 14559                   Harvard                                           specs
## 14560              Georgia_Tech                                    applications
## 14561                   Rutgers                                          degree
## 14562               NYU_IntroDS                                         session
## 14563                UCSanDiego                                      autograder
## 14564               NYU_IntroDS                                        tutoring
## 14565                     Brown                                       pipelines
## 14566                       ASU                                             drc
## 14567            UniSys_Georgia                                          levels
## 14568            UniSys_Georgia                                           modes
## 14569            UniSys_Georgia                                      univariate
## 14570                    Drexel                                            wiki
## 14571              USouthampton                                     foundations
## 14572                 Princeton                                   princeton.edu
## 14573                 Princeton                                          sparse
## 14574                      CUNY                               intersectionality
## 14575                      CUNY                                       privilege
## 14576                     Brown                                         metrics
## 14577                    Drexel                                       wikimedia
## 14578                UWisconsin                                            isbn
## 14579                  UVA_Stat                                    virginia.edu
## 14580                  UVA_Stat                                         visible
## 14581              USouthampton                                       mapreduce
## 14582              USouthampton                                        pitfalls
## 14583          William_and_Mary                                          return
## 14584                  UToronto                                         aps1070
## 14585                   Cornell                                             aes
## 14586                       MIT                                      recitation
## 14587                       MIT                                           units
## 14588                   Rutgers                                             sas
## 14589                     Brown                                   presentations
## 14590               NYU_IntroDS                                             lab
## 14591                UWisconsin                                           pages
## 14592                 Princeton                                          factor
## 14593                UWisconsin                                            quiz
## 14594              USouthampton                                         courses
## 14595                       UMD                                        policies
## 14596                   UIU_207                                             pct
## 14597                       MIT                                             set
## 14598                       UMD                                  administration
## 14599                       LSU                                     www.lsu.edu
## 14600                UCSanDiego                                            slip
## 14601                UCBerkeley                                            fall
## 14602                   Rutgers                                   undergraduate
## 14603                UCBerkeley                                          spring
## 14604                       MIT                                            sets
## 14605                 UKentucky                                          canvas
## 14606    UWisc_Madison_Modeling                                              cv
## 14607                       UMD                                         affairs
## 14608                 Princeton                                         classes
## 14609                UCBerkeley                                             org
## 14610                UCBerkeley                                       www.data8
## 14611                UWisconsin                                             sql
## 14612                  UVA_Stat                                          bundle
## 14613                   UVA_SDS                                           guest
## 14614                   UVA_SDS                                              lo
## 14615    UWisc_Madison_Modeling                                        markdown
## 14616              USouthampton                                        crawling
## 14617              USouthampton                                      prospectus
## 14618              USouthampton                                         toolkit
## 14619                   UZurich                                      likelihood
## 14620                UCSanDiego                                           dsc10
## 14621                UCBerkeley                                          grader
## 14622                      CUNY                                        feminist
## 14623           Montgomery_Coll                                      montgomery
## 14624                   Rutgers                                         puzzles
## 14625          William_and_Mary                                            elif
## 14626                 UKentucky                                     www.uky.edu
## 14627                     Brown                                      supervised
## 14628          William_and_Mary                                          module
## 14629                   Harvard                                         tableau
## 14630                   UIU_107                                             scd
## 14631                   UZurich                                    optimisation
## 14632                       ASU                                             asu
## 14633                  UToronto                                             mml
## 14634                UCBerkeley                                       notebooks
## 14635                UCBerkeley                                       github.io
## 14636                  UToronto                                             dec
## 14637                   Cornell                                            slip
## 14638                       LSU                         introdatasci.dlilab.com
## 14639                       LSU                                             lsu
## 14640                  UVA_Stat                                          collab
## 14641               UWashington                                         leading
## 14642               UWashington                                            maas
## 14643                   UIU_207                                             min
## 14644          William_and_Mary                                       pct_score
## 14645                   Harvard                                            pset
## 14646                   Harvard                                              tf
## 14647                UCBerkeley                                           otter
## 14648                  UVA_Stat                                        datetime
## 14649              Georgia_Tech                                             ece
## 14650                   UIU_207                                            stat
## 14651                       UMD                                            umgc
## 14652                       UMD                                    www.umgc.edu
## 14653              USouthampton                                         modules
## 14654               UWashington                                     evaluations
## 14655                   UIU_207                                             pts
## 14656              Georgia_Tech                                    optimization
## 14657                   UIU_107                                            00pm
## 14658                UCSanDiego                                             dsc
## 14659                   Rutgers                                         rutgers
## 14660               NYU_IntroDS                                           pages
## 14661                UCBerkeley                                          summer
## 14662               NYU_IntroDS                                              pf
## 14663              USouthampton                           www.southampton.ac.uk
## 14664                  UVA_Stat                                          checks
## 14665                  UToronto                                             nov
## 14666                  UToronto                                             sep
## 14667                     Brown                                              ml
## 14668                  UToronto                                             oct
## 14669                 Princeton                                             fan
## 14670              Georgia_Tech                                          amazon
## 14671              USouthampton                                     southampton
## 14672              USouthampton                                        comp6235
##         n           tf        idf       tf_idf
## 1     113 0.0573604061 0.00000000 0.000000e+00
## 2      70 0.0457217505 0.00000000 0.000000e+00
## 3      68 0.0582191781 0.00000000 0.000000e+00
## 4      45 0.0228426396 0.00000000 0.000000e+00
## 5      44 0.0584329349 0.00000000 0.000000e+00
## 6      42 0.0471910112 0.00000000 0.000000e+00
## 7      42 0.0478359909 0.00000000 0.000000e+00
## 8      41 0.0423991727 0.00000000 0.000000e+00
## 9      38 0.1314878893 0.00000000 0.000000e+00
## 10     32 0.0376470588 0.00000000 0.000000e+00
## 11     32 0.0176114474 0.00000000 0.000000e+00
## 12     31 0.0530821918 0.00000000 0.000000e+00
## 13     29 0.0293522267 0.00000000 0.000000e+00
## 14     28 0.0239726027 0.00000000 0.000000e+00
## 15     28 0.0314606742 0.00000000 0.000000e+00
## 16     24 0.0320000000 0.00000000 0.000000e+00
## 17     24 0.0169491525 0.00000000 0.000000e+00
## 18     23 0.0373376623 0.00000000 0.000000e+00
## 19     23 0.0150228609 0.00000000 0.000000e+00
## 20     22 0.0614525140 0.00000000 0.000000e+00
## 21     21 0.0719178082 0.00000000 0.000000e+00
## 22     21 0.0515970516 0.00000000 0.000000e+00
## 23     21 0.0239179954 0.00000000 0.000000e+00
## 24     20 0.0242424242 0.00000000 0.000000e+00
## 25     19 0.0449172577 0.00000000 0.000000e+00
## 26     19 0.0552325581 0.00000000 0.000000e+00
## 27     16 0.0213333333 0.00000000 0.000000e+00
## 28     15 0.0181818182 0.00000000 0.000000e+00
## 29     15 0.0681818182 0.00000000 0.000000e+00
## 30     14 0.0148936170 0.00000000 0.000000e+00
## 31     14 0.0154185022 0.00000000 0.000000e+00
## 32     12 0.0214669052 0.00000000 0.000000e+00
## 33     12 0.0205479452 0.00000000 0.000000e+00
## 34     11 0.0068407960 0.00000000 0.000000e+00
## 35     11 0.0113753878 0.00000000 0.000000e+00
## 36     10 0.0132802125 0.00000000 0.000000e+00
## 37     10 0.0110132159 0.00000000 0.000000e+00
## 38      9 0.0237467018 0.00000000 0.000000e+00
## 39      9 0.0166975881 0.00000000 0.000000e+00
## 40      9 0.0049532196 0.00000000 0.000000e+00
## 41      8 0.0175438596 0.00000000 0.000000e+00
## 42      8 0.0050314465 0.00000000 0.000000e+00
## 43      7 0.0239726027 0.00000000 0.000000e+00
## 44      7 0.0082352941 0.00000000 0.000000e+00
## 45      7 0.0318181818 0.00000000 0.000000e+00
## 46      6 0.0141843972 0.00000000 0.000000e+00
## 47      6 0.0097402597 0.00000000 0.000000e+00
## 48      6 0.0158311346 0.00000000 0.000000e+00
## 49      6 0.0207612457 0.00000000 0.000000e+00
## 50      6 0.0060728745 0.00000000 0.000000e+00
## 51      5 0.0068870523 0.00000000 0.000000e+00
## 52      5 0.0089445438 0.00000000 0.000000e+00
## 53      5 0.0124688279 0.00000000 0.000000e+00
## 54      5 0.0122850123 0.00000000 0.000000e+00
## 55      5 0.0031094527 0.00000000 0.000000e+00
## 56      5 0.0134770889 0.00000000 0.000000e+00
## 57      5 0.0031446541 0.00000000 0.000000e+00
## 58      4 0.0087719298 0.00000000 0.000000e+00
## 59      4 0.0099750623 0.00000000 0.000000e+00
## 60      4 0.0116279070 0.00000000 0.000000e+00
## 61      4 0.0107816712 0.00000000 0.000000e+00
## 62      4 0.0243902439 0.00000000 0.000000e+00
## 63      4 0.0111731844 0.00000000 0.000000e+00
## 64      3 0.0041322314 0.00000000 0.000000e+00
## 65      3 0.0031914894 0.00000000 0.000000e+00
## 66      3 0.0089552239 0.00000000 0.000000e+00
## 67      2 0.0014124294 0.00000000 0.000000e+00
## 68      2 0.0037105751 0.00000000 0.000000e+00
## 69      2 0.0059701493 0.00000000 0.000000e+00
## 70      1 0.0060975610 0.00000000 0.000000e+00
## 71      1 0.0017123288 0.02898754 4.963619e-05
## 72      3 0.0018867925 0.02898754 5.469347e-05
## 73      1 0.0023640662 0.02898754 6.852846e-05
## 74      2 0.0024242424 0.02898754 7.027282e-05
## 75      4 0.0026126715 0.02898754 7.573491e-05
## 76      1 0.0026954178 0.02898754 7.813352e-05
## 77      2 0.0027548209 0.02898754 7.985547e-05
## 78      1 0.0027932961 0.02898754 8.097077e-05
## 79      1 0.0029850746 0.02898754 8.652996e-05
## 80      3 0.0031023785 0.02898754 8.993031e-05
## 81      5 0.0031094527 0.02898754 9.013538e-05
## 82      1 0.0006218905 0.22314355 1.387709e-04
## 83      3 0.0048701299 0.02898754 1.411731e-04
## 84      2 0.0049875312 0.02898754 1.445762e-04
## 85      5 0.0053191489 0.02898754 1.541890e-04
## 86      1 0.0006218905 0.25951120 1.613876e-04
## 87      1 0.0006289308 0.25951120 1.632146e-04
## 88      1 0.0060975610 0.02898754 1.767533e-04
## 89      1 0.0006218905 0.29725152 1.848579e-04
## 90      1 0.0005503577 0.33647224 1.851801e-04
## 91     13 0.0065989848 0.02898754 1.912883e-04
## 92      1 0.0005076142 0.37729423 1.915199e-04
## 93      1 0.0005076142 0.37729423 1.915199e-04
## 94      5 0.0066666667 0.02898754 1.932502e-04
## 95      2 0.0069204152 0.02898754 2.006058e-04
## 96      2 0.0011007155 0.18805223 2.069920e-04
## 97     13 0.0071546505 0.02898754 2.073957e-04
## 98      1 0.0005503577 0.37729423 2.076468e-04
## 99      1 0.0005503577 0.37729423 2.076468e-04
## 100     1 0.0006218905 0.33647224 2.092489e-04
## 101     1 0.0011235955 0.18805223 2.112946e-04
## 102     1 0.0006289308 0.33647224 2.116178e-04
## 103     1 0.0006531679 0.33647224 2.197729e-04
## 104     1 0.0006531679 0.33647224 2.197729e-04
## 105     1 0.0006531679 0.33647224 2.197729e-04
## 106     9 0.0077054795 0.02898754 2.233629e-04
## 107     3 0.0079155673 0.02898754 2.294528e-04
## 108     1 0.0006218905 0.37729423 2.346357e-04
## 109     8 0.0080971660 0.02898754 2.347169e-04
## 110     1 0.0005076142 0.46430561 2.356881e-04
## 111     1 0.0006289308 0.37729423 2.372920e-04
## 112     1 0.0007062147 0.33647224 2.376216e-04
## 113     1 0.0006531679 0.37729423 2.464365e-04
## 114     1 0.0011235955 0.22314355 2.507231e-04
## 115     1 0.0005076142 0.51082562 2.593023e-04
## 116     8 0.0089887640 0.02898754 2.605621e-04
## 117     1 0.0006218905 0.41985385 2.611031e-04
## 118     1 0.0011764706 0.22314355 2.625218e-04
## 119     1 0.0010121457 0.25951120 2.626632e-04
## 120     2 0.0010152284 0.25951120 2.634631e-04
## 121     2 0.0090909091 0.02898754 2.635231e-04
## 122     8 0.0091116173 0.02898754 2.641233e-04
## 123     1 0.0006531679 0.41985385 2.742350e-04
## 124     1 0.0010638298 0.25951120 2.760757e-04
## 125     1 0.0005076142 0.55961579 2.840689e-04
## 126     1 0.0005076142 0.55961579 2.840689e-04
## 127     1 0.0005076142 0.55961579 2.840689e-04
## 128     1 0.0005076142 0.55961579 2.840689e-04
## 129     1 0.0005076142 0.55961579 2.840689e-04
## 130     2 0.0011007155 0.25951120 2.856480e-04
## 131     1 0.0011013216 0.25951120 2.858053e-04
## 132     3 0.0015228426 0.18805223 2.863740e-04
## 133     1 0.0006218905 0.46430561 2.887473e-04
## 134     1 0.0006289308 0.46430561 2.920161e-04
## 135     1 0.0006531679 0.46430561 3.032695e-04
## 136     1 0.0006531679 0.46430561 3.032695e-04
## 137     1 0.0011764706 0.25951120 3.053073e-04
## 138    15 0.0105932203 0.02898754 3.070714e-04
## 139     8 0.0106241700 0.02898754 3.079685e-04
## 140     1 0.0005503577 0.55961579 3.079889e-04
## 141     1 0.0005076142 0.61090908 3.101061e-04
## 142     1 0.0005076142 0.61090908 3.101061e-04
## 143     1 0.0005076142 0.61090908 3.101061e-04
## 144     6 0.0107334526 0.02898754 3.111364e-04
## 145     1 0.0010638298 0.29725152 3.162250e-04
## 146     1 0.0006218905 0.51082562 3.176776e-04
## 147     1 0.0006289308 0.51082562 3.212740e-04
## 148     1 0.0008561644 0.37729423 3.230259e-04
## 149     1 0.0008561644 0.37729423 3.230259e-04
## 150     2 0.0012578616 0.25951120 3.264292e-04
## 151     1 0.0011013216 0.29725152 3.273695e-04
## 152     1 0.0007062147 0.46430561 3.278994e-04
## 153     1 0.0006531679 0.51082562 3.336549e-04
## 154     1 0.0005503577 0.61090908 3.362185e-04
## 155     1 0.0005076142 0.66497630 3.375514e-04
## 156     1 0.0005076142 0.66497630 3.375514e-04
## 157     1 0.0005076142 0.66497630 3.375514e-04
## 158     1 0.0011389522 0.29725152 3.385553e-04
## 159     2 0.0013063357 0.25951120 3.390087e-04
## 160     1 0.0010121457 0.33647224 3.405589e-04
## 161     1 0.0010121457 0.33647224 3.405589e-04
## 162     2 0.0010152284 0.33647224 3.415962e-04
## 163     1 0.0013280212 0.25951120 3.446364e-04
## 164     1 0.0006218905 0.55961579 3.480198e-04
## 165     1 0.0006218905 0.55961579 3.480198e-04
## 166     1 0.0006218905 0.55961579 3.480198e-04
## 167     1 0.0006218905 0.55961579 3.480198e-04
## 168     1 0.0018552876 0.18805223 3.488910e-04
## 169     1 0.0011764706 0.29725152 3.497077e-04
## 170     1 0.0011764706 0.29725152 3.497077e-04
## 171     1 0.0006289308 0.55961579 3.519596e-04
## 172     1 0.0006289308 0.55961579 3.519596e-04
## 173     5 0.0122850123 0.02898754 3.561122e-04
## 174     1 0.0010638298 0.33647224 3.579492e-04
## 175     1 0.0005503577 0.66497630 3.659749e-04
## 176     1 0.0005503577 0.66497630 3.659749e-04
## 177     1 0.0005503577 0.66497630 3.659749e-04
## 178     1 0.0005076142 0.72213472 3.665658e-04
## 179     1 0.0005076142 0.72213472 3.665658e-04
## 180     1 0.0005076142 0.72213472 3.665658e-04
## 181     1 0.0005076142 0.72213472 3.665658e-04
## 182     1 0.0005076142 0.72213472 3.665658e-04
## 183     2 0.0011007155 0.33647224 3.703602e-04
## 184     2 0.0011007155 0.33647224 3.703602e-04
## 185     1 0.0011013216 0.33647224 3.705641e-04
## 186     1 0.0011013216 0.33647224 3.705641e-04
## 187     1 0.0010121457 0.37729423 3.818768e-04
## 188     1 0.0011389522 0.33647224 3.832258e-04
## 189     1 0.0011389522 0.33647224 3.832258e-04
## 190     1 0.0006289308 0.61090908 3.842195e-04
## 191     1 0.0013280212 0.29725152 3.947563e-04
## 192     1 0.0007062147 0.55961579 3.952089e-04
## 193     1 0.0007062147 0.55961579 3.952089e-04
## 194     1 0.0007062147 0.55961579 3.952089e-04
## 195     1 0.0011764706 0.33647224 3.958497e-04
## 196     1 0.0011764706 0.33647224 3.958497e-04
## 197     1 0.0011764706 0.33647224 3.958497e-04
## 198     4 0.0136986301 0.02898754 3.970895e-04
## 199     1 0.0005076142 0.78275934 3.973398e-04
## 200     1 0.0005076142 0.78275934 3.973398e-04
## 201     1 0.0005076142 0.78275934 3.973398e-04
## 202     1 0.0005076142 0.78275934 3.973398e-04
## 203     1 0.0005076142 0.78275934 3.973398e-04
## 204     1 0.0005503577 0.72213472 3.974324e-04
## 205     1 0.0005503577 0.72213472 3.974324e-04
## 206     1 0.0005503577 0.72213472 3.974324e-04
## 207     1 0.0008561644 0.46430561 3.975219e-04
## 208     1 0.0008561644 0.46430561 3.975219e-04
## 209     3 0.0021186441 0.18805223 3.984157e-04
## 210     1 0.0006531679 0.61090908 3.990262e-04
## 211     1 0.0006531679 0.61090908 3.990262e-04
## 212     1 0.0017889088 0.22314355 3.991835e-04
## 213     1 0.0010638298 0.37729423 4.013768e-04
## 214     1 0.0021929825 0.18805223 4.123952e-04
## 215     1 0.0006218905 0.66497630 4.135425e-04
## 216     1 0.0006218905 0.66497630 4.135425e-04
## 217     1 0.0018552876 0.22314355 4.139955e-04
## 218     2 0.0011007155 0.37729423 4.152936e-04
## 219     1 0.0011013216 0.37729423 4.155223e-04
## 220     1 0.0006289308 0.66497630 4.182241e-04
## 221     1 0.0006289308 0.66497630 4.182241e-04
## 222     1 0.0006289308 0.66497630 4.182241e-04
## 223     1 0.0006289308 0.66497630 4.182241e-04
## 224     1 0.0006289308 0.66497630 4.182241e-04
## 225     2 0.0014124294 0.29725152 4.198468e-04
## 226     2 0.0022471910 0.18805223 4.225893e-04
## 227     1 0.0011235955 0.37729423 4.239261e-04
## 228     1 0.0010121457 0.41985385 4.249533e-04
## 229     1 0.0005076142 0.84729786 4.301004e-04
## 230     1 0.0005076142 0.84729786 4.301004e-04
## 231     1 0.0005503577 0.78275934 4.307977e-04
## 232     1 0.0005503577 0.78275934 4.307977e-04
## 233     1 0.0005503577 0.78275934 4.307977e-04
## 234     1 0.0007062147 0.61090908 4.314330e-04
## 235     1 0.0007062147 0.61090908 4.314330e-04
## 236     1 0.0007062147 0.61090908 4.314330e-04
## 237     1 0.0007062147 0.61090908 4.314330e-04
## 238     1 0.0010341262 0.41985385 4.341818e-04
## 239     1 0.0006531679 0.66497630 4.343412e-04
## 240     1 0.0006531679 0.66497630 4.343412e-04
## 241     1 0.0006531679 0.66497630 4.343412e-04
## 242     1 0.0008561644 0.51082562 4.373507e-04
## 243     1 0.0008561644 0.51082562 4.373507e-04
## 244     2 0.0013063357 0.33647224 4.395457e-04
## 245     2 0.0013063357 0.33647224 4.395457e-04
## 246     1 0.0011764706 0.37729423 4.438756e-04
## 247     1 0.0011764706 0.37729423 4.438756e-04
## 248     1 0.0017123288 0.25951120 4.443685e-04
## 249     1 0.0010638298 0.41985385 4.466530e-04
## 250     1 0.0013280212 0.33647224 4.468423e-04
## 251     1 0.0013333333 0.33647224 4.486296e-04
## 252     1 0.0013333333 0.33647224 4.486296e-04
## 253     1 0.0013333333 0.33647224 4.486296e-04
## 254     1 0.0006218905 0.72213472 4.490888e-04
## 255     1 0.0006218905 0.72213472 4.490888e-04
## 256     1 0.0006289308 0.72213472 4.541728e-04
## 257     1 0.0006289308 0.72213472 4.541728e-04
## 258     1 0.0006289308 0.72213472 4.541728e-04
## 259     1 0.0006289308 0.72213472 4.541728e-04
## 260     1 0.0006289308 0.72213472 4.541728e-04
## 261     1 0.0011013216 0.41985385 4.623941e-04
## 262     1 0.0011013216 0.41985385 4.623941e-04
## 263     1 0.0013774105 0.33647224 4.634604e-04
## 264     1 0.0017889088 0.25951120 4.642419e-04
## 265     1 0.0005076142 0.91629073 4.651222e-04
## 266     1 0.0005076142 0.91629073 4.651222e-04
## 267     1 0.0005076142 0.91629073 4.651222e-04
## 268     1 0.0005076142 0.91629073 4.651222e-04
## 269     1 0.0005076142 0.91629073 4.651222e-04
## 270     1 0.0005076142 0.91629073 4.651222e-04
## 271     1 0.0005076142 0.91629073 4.651222e-04
## 272     1 0.0005076142 0.91629073 4.651222e-04
## 273     1 0.0005503577 0.84729786 4.663169e-04
## 274     1 0.0005503577 0.84729786 4.663169e-04
## 275     1 0.0005503577 0.84729786 4.663169e-04
## 276     1 0.0007062147 0.66497630 4.696160e-04
## 277     1 0.0010121457 0.46430561 4.699449e-04
## 278     1 0.0010121457 0.46430561 4.699449e-04
## 279     1 0.0006531679 0.72213472 4.716752e-04
## 280     1 0.0006531679 0.72213472 4.716752e-04
## 281     1 0.0011235955 0.41985385 4.717459e-04
## 282     2 0.0021276596 0.22314355 4.747735e-04
## 283     2 0.0014124294 0.33647224 4.752433e-04
## 284     5 0.0025380711 0.18805223 4.772899e-04
## 285     1 0.0011389522 0.41985385 4.781934e-04
## 286     1 0.0008561644 0.55961579 4.791231e-04
## 287     1 0.0018552876 0.25951120 4.814679e-04
## 288     1 0.0018552876 0.25951120 4.814679e-04
## 289     1 0.0006218905 0.78275934 4.867906e-04
## 290     1 0.0006218905 0.78275934 4.867906e-04
## 291     1 0.0006218905 0.78275934 4.867906e-04
## 292     1 0.0006218905 0.78275934 4.867906e-04
## 293     1 0.0006218905 0.78275934 4.867906e-04
## 294     1 0.0021929825 0.22314355 4.893499e-04
## 295     1 0.0006289308 0.78275934 4.923015e-04
## 296     1 0.0006289308 0.78275934 4.923015e-04
## 297     2 0.0013063357 0.37729423 4.928729e-04
## 298     1 0.0011764706 0.41985385 4.939457e-04
## 299     1 0.0013280212 0.37729423 5.010548e-04
## 300     1 0.0013280212 0.37729423 5.010548e-04
## 301     1 0.0005076142 0.99039870 5.027405e-04
## 302     1 0.0005076142 0.99039870 5.027405e-04
## 303     1 0.0005076142 0.99039870 5.027405e-04
## 304     1 0.0005076142 0.99039870 5.027405e-04
## 305     1 0.0005076142 0.99039870 5.027405e-04
## 306     1 0.0005076142 0.99039870 5.027405e-04
## 307     1 0.0005076142 0.99039870 5.027405e-04
## 308     1 0.0013333333 0.37729423 5.030590e-04
## 309     1 0.0013333333 0.37729423 5.030590e-04
## 310     1 0.0013333333 0.37729423 5.030590e-04
## 311     1 0.0005503577 0.91629073 5.042877e-04
## 312     1 0.0005503577 0.91629073 5.042877e-04
## 313     1 0.0005503577 0.91629073 5.042877e-04
## 314     1 0.0005503577 0.91629073 5.042877e-04
## 315     1 0.0005503577 0.91629073 5.042877e-04
## 316     2 0.0022779043 0.22314355 5.082997e-04
## 317     8 0.0175438596 0.02898754 5.085533e-04
## 318     2 0.0017123288 0.29725152 5.089923e-04
## 319     1 0.0017123288 0.29725152 5.089923e-04
## 320     1 0.0017123288 0.29725152 5.089923e-04
## 321     1 0.0007062147 0.72213472 5.099821e-04
## 322     1 0.0007062147 0.72213472 5.099821e-04
## 323     1 0.0007062147 0.72213472 5.099821e-04
## 324     1 0.0006531679 0.78275934 5.112732e-04
## 325     1 0.0006531679 0.78275934 5.112732e-04
## 326     1 0.0006531679 0.78275934 5.112732e-04
## 327     1 0.0006531679 0.78275934 5.112732e-04
## 328     1 0.0011013216 0.46430561 5.113498e-04
## 329     1 0.0011013216 0.46430561 5.113498e-04
## 330     1 0.0011013216 0.46430561 5.113498e-04
## 331     3 0.0015228426 0.33647224 5.123943e-04
## 332     3 0.0015228426 0.33647224 5.123943e-04
## 333     1 0.0010121457 0.51082562 5.170300e-04
## 334     1 0.0010121457 0.51082562 5.170300e-04
## 335     2 0.0027548209 0.18805223 5.180502e-04
## 336     2 0.0010152284 0.51082562 5.186047e-04
## 337     1 0.0011235955 0.46430561 5.216917e-04
## 338     1 0.0008561644 0.61090908 5.230386e-04
## 339     1 0.0008561644 0.61090908 5.230386e-04
## 340     2 0.0020242915 0.25951120 5.253263e-04
## 341     1 0.0006218905 0.84729786 5.269265e-04
## 342     1 0.0006218905 0.84729786 5.269265e-04
## 343     1 0.0006218905 0.84729786 5.269265e-04
## 344     1 0.0010341262 0.51082562 5.282581e-04
## 345     1 0.0010341262 0.51082562 5.282581e-04
## 346     1 0.0006289308 0.84729786 5.328917e-04
## 347     1 0.0006289308 0.84729786 5.328917e-04
## 348     1 0.0006289308 0.84729786 5.328917e-04
## 349     1 0.0006289308 0.84729786 5.328917e-04
## 350     2 0.0020682523 0.25951120 5.367346e-04
## 351     1 0.0005076142 1.07044141 5.433713e-04
## 352     1 0.0005076142 1.07044141 5.433713e-04
## 353     1 0.0005076142 1.07044141 5.433713e-04
## 354     1 0.0005076142 1.07044141 5.433713e-04
## 355     1 0.0005076142 1.07044141 5.433713e-04
## 356     1 0.0005076142 1.07044141 5.433713e-04
## 357     1 0.0005076142 1.07044141 5.433713e-04
## 358     1 0.0005076142 1.07044141 5.433713e-04
## 359     1 0.0005076142 1.07044141 5.433713e-04
## 360     1 0.0005076142 1.07044141 5.433713e-04
## 361     1 0.0005076142 1.07044141 5.433713e-04
## 362     1 0.0005503577 0.99039870 5.450736e-04
## 363     1 0.0005503577 0.99039870 5.450736e-04
## 364     1 0.0005503577 0.99039870 5.450736e-04
## 365     1 0.0005503577 0.99039870 5.450736e-04
## 366     1 0.0005503577 0.99039870 5.450736e-04
## 367     1 0.0005503577 0.99039870 5.450736e-04
## 368     1 0.0005503577 0.99039870 5.450736e-04
## 369     1 0.0005503577 0.99039870 5.450736e-04
## 370     1 0.0005503577 0.99039870 5.450736e-04
## 371     1 0.0005503577 0.99039870 5.450736e-04
## 372     1 0.0016233766 0.33647224 5.462212e-04
## 373     1 0.0016233766 0.33647224 5.462212e-04
## 374     1 0.0011764706 0.46430561 5.462419e-04
## 375     1 0.0011764706 0.46430561 5.462419e-04
## 376     2 0.0021276596 0.25951120 5.521515e-04
## 377     1 0.0007062147 0.78275934 5.527961e-04
## 378     1 0.0007062147 0.78275934 5.527961e-04
## 379     1 0.0006531679 0.84729786 5.534277e-04
## 380     1 0.0006531679 0.84729786 5.534277e-04
## 381     1 0.0006531679 0.84729786 5.534277e-04
## 382     1 0.0006531679 0.84729786 5.534277e-04
## 383     1 0.0006531679 0.84729786 5.534277e-04
## 384     1 0.0006531679 0.84729786 5.534277e-04
## 385     1 0.0006531679 0.84729786 5.534277e-04
## 386     1 0.0024937656 0.22314355 5.564677e-04
## 387     1 0.0013333333 0.41985385 5.598051e-04
## 388     1 0.0013333333 0.41985385 5.598051e-04
## 389     1 0.0029850746 0.18805223 5.613499e-04
## 390     2 0.0011007155 0.51082562 5.622737e-04
## 391     1 0.0012121212 0.46430561 5.627947e-04
## 392     5 0.0025380711 0.22314355 5.663542e-04
## 393     1 0.0010121457 0.55961579 5.664127e-04
## 394     1 0.0010121457 0.55961579 5.664127e-04
## 395     1 0.0010121457 0.55961579 5.664127e-04
## 396     1 0.0021929825 0.25951120 5.691035e-04
## 397     1 0.0021929825 0.25951120 5.691035e-04
## 398     1 0.0008561644 0.66497630 5.693290e-04
## 399     1 0.0008561644 0.66497630 5.693290e-04
## 400     1 0.0006218905 0.91629073 5.698325e-04
## 401     1 0.0006218905 0.91629073 5.698325e-04
## 402     1 0.0006218905 0.91629073 5.698325e-04
## 403     1 0.0006218905 0.91629073 5.698325e-04
## 404     1 0.0006218905 0.91629073 5.698325e-04
## 405     1 0.0006218905 0.91629073 5.698325e-04
## 406     1 0.0006218905 0.91629073 5.698325e-04
## 407     1 0.0006218905 0.91629073 5.698325e-04
## 408     3 0.0030364372 0.18805223 5.710088e-04
## 409     2 0.0022026432 0.25951120 5.716106e-04
## 410     1 0.0011235955 0.51082562 5.739614e-04
## 411     1 0.0011235955 0.51082562 5.739614e-04
## 412     1 0.0011235955 0.51082562 5.739614e-04
## 413     2 0.0017123288 0.33647224 5.761511e-04
## 414     1 0.0017123288 0.33647224 5.761511e-04
## 415     1 0.0017123288 0.33647224 5.761511e-04
## 416     1 0.0006289308 0.91629073 5.762835e-04
## 417     1 0.0006289308 0.91629073 5.762835e-04
## 418     1 0.0006289308 0.91629073 5.762835e-04
## 419     1 0.0006289308 0.91629073 5.762835e-04
## 420     1 0.0006289308 0.91629073 5.762835e-04
## 421     1 0.0006289308 0.91629073 5.762835e-04
## 422     1 0.0006289308 0.91629073 5.762835e-04
## 423     1 0.0006289308 0.91629073 5.762835e-04
## 424     1 0.0013774105 0.41985385 5.783111e-04
## 425     1 0.0010341262 0.55961579 5.787133e-04
## 426     1 0.0010341262 0.55961579 5.787133e-04
## 427     1 0.0010341262 0.55961579 5.787133e-04
## 428     1 0.0010341262 0.55961579 5.787133e-04
## 429    17 0.0200000000 0.02898754 5.797507e-04
## 430     1 0.0011389522 0.51082562 5.818059e-04
## 431     1 0.0011389522 0.51082562 5.818059e-04
## 432     3 0.0031023785 0.18805223 5.834092e-04
## 433     2 0.0012578616 0.46430561 5.840322e-04
## 434     2 0.0012578616 0.46430561 5.840322e-04
## 435     1 0.0005076142 1.15745279 5.875395e-04
## 436     1 0.0005076142 1.15745279 5.875395e-04
## 437     1 0.0005076142 1.15745279 5.875395e-04
## 438     1 0.0005076142 1.15745279 5.875395e-04
## 439     1 0.0005076142 1.15745279 5.875395e-04
## 440     1 0.0005076142 1.15745279 5.875395e-04
## 441     1 0.0005076142 1.15745279 5.875395e-04
## 442     1 0.0005076142 1.15745279 5.875395e-04
## 443     1 0.0005076142 1.15745279 5.875395e-04
## 444     1 0.0005076142 1.15745279 5.875395e-04
## 445     1 0.0005076142 1.15745279 5.875395e-04
## 446     1 0.0005503577 1.07044141 5.891257e-04
## 447     1 0.0005503577 1.07044141 5.891257e-04
## 448     1 0.0005503577 1.07044141 5.891257e-04
## 449     1 0.0005503577 1.07044141 5.891257e-04
## 450     1 0.0005503577 1.07044141 5.891257e-04
## 451     1 0.0005503577 1.07044141 5.891257e-04
## 452     1 0.0005503577 1.07044141 5.891257e-04
## 453     1 0.0005503577 1.07044141 5.891257e-04
## 454     1 0.0005503577 1.07044141 5.891257e-04
## 455     1 0.0005503577 1.07044141 5.891257e-04
## 456     1 0.0005503577 1.07044141 5.891257e-04
## 457     1 0.0005503577 1.07044141 5.891257e-04
## 458     1 0.0005503577 1.07044141 5.891257e-04
## 459     2 0.0022779043 0.25951120 5.911417e-04
## 460     2 0.0022779043 0.25951120 5.911417e-04
## 461     5 0.0031446541 0.18805223 5.913592e-04
## 462     2 0.0026560425 0.22314355 5.926788e-04
## 463     2 0.0014124294 0.41985385 5.930139e-04
## 464     2 0.0014124294 0.41985385 5.930139e-04
## 465     2 0.0014124294 0.41985385 5.930139e-04
## 466     2 0.0026666667 0.22314355 5.950495e-04
## 467     1 0.0010638298 0.55961579 5.953359e-04
## 468     1 0.0010638298 0.55961579 5.953359e-04
## 469     1 0.0007062147 0.84729786 5.983742e-04
## 470     1 0.0007062147 0.84729786 5.983742e-04
## 471     1 0.0007062147 0.84729786 5.983742e-04
## 472     1 0.0006531679 0.91629073 5.984917e-04
## 473     1 0.0006531679 0.91629073 5.984917e-04
## 474     1 0.0006531679 0.91629073 5.984917e-04
## 475     1 0.0006531679 0.91629073 5.984917e-04
## 476     1 0.0006531679 0.91629073 5.984917e-04
## 477     1 0.0006531679 0.91629073 5.984917e-04
## 478     1 0.0006531679 0.91629073 5.984917e-04
## 479     1 0.0011764706 0.51082562 6.009713e-04
## 480     1 0.0017889088 0.33647224 6.019181e-04
## 481     1 0.0017889088 0.33647224 6.019181e-04
## 482     1 0.0017889088 0.33647224 6.019181e-04
## 483     2 0.0013063357 0.46430561 6.065390e-04
## 484     1 0.0016233766 0.37729423 6.124906e-04
## 485     1 0.0016233766 0.37729423 6.124906e-04
## 486     1 0.0023640662 0.25951120 6.135016e-04
## 487     5 0.0032658393 0.18805223 6.141484e-04
## 488     1 0.0006218905 0.99039870 6.159196e-04
## 489     1 0.0006218905 0.99039870 6.159196e-04
## 490     1 0.0006218905 0.99039870 6.159196e-04
## 491     1 0.0006218905 0.99039870 6.159196e-04
## 492     1 0.0006218905 0.99039870 6.159196e-04
## 493     1 0.0006218905 0.99039870 6.159196e-04
## 494     1 0.0006218905 0.99039870 6.159196e-04
## 495     1 0.0006218905 0.99039870 6.159196e-04
## 496     1 0.0006218905 0.99039870 6.159196e-04
## 497     1 0.0006218905 0.99039870 6.159196e-04
## 498     1 0.0006218905 0.99039870 6.159196e-04
## 499     2 0.0011007155 0.55961579 6.159778e-04
## 500     1 0.0011013216 0.55961579 6.163169e-04
## 501     1 0.0011013216 0.55961579 6.163169e-04
## 502     1 0.0011013216 0.55961579 6.163169e-04
## 503     1 0.0011013216 0.55961579 6.163169e-04
## 504     1 0.0013280212 0.46430561 6.166077e-04
## 505     1 0.0013280212 0.46430561 6.166077e-04
## 506     1 0.0008561644 0.72213472 6.182660e-04
## 507     1 0.0008561644 0.72213472 6.182660e-04
## 508     1 0.0008561644 0.72213472 6.182660e-04
## 509     1 0.0008561644 0.72213472 6.182660e-04
## 510     1 0.0010121457 0.61090908 6.183290e-04
## 511     1 0.0013333333 0.46430561 6.190741e-04
## 512     1 0.0013333333 0.46430561 6.190741e-04
## 513     1 0.0012121212 0.51082562 6.191826e-04
## 514     1 0.0012121212 0.51082562 6.191826e-04
## 515     2 0.0010152284 0.61090908 6.202123e-04
## 516     2 0.0010152284 0.61090908 6.202123e-04
## 517     2 0.0010152284 0.61090908 6.202123e-04
## 518     2 0.0010152284 0.61090908 6.202123e-04
## 519     1 0.0006289308 0.99039870 6.228923e-04
## 520     1 0.0006289308 0.99039870 6.228923e-04
## 521     1 0.0006289308 0.99039870 6.228923e-04
## 522     1 0.0006289308 0.99039870 6.228923e-04
## 523     1 0.0006289308 0.99039870 6.228923e-04
## 524     1 0.0018552876 0.33647224 6.242528e-04
## 525     1 0.0018552876 0.33647224 6.242528e-04
## 526     3 0.0018656716 0.33647224 6.277467e-04
## 527     1 0.0011235955 0.55961579 6.287818e-04
## 528     1 0.0011235955 0.55961579 6.287818e-04
## 529     2 0.0024242424 0.25951120 6.291180e-04
## 530     1 0.0010341262 0.61090908 6.317571e-04
## 531     1 0.0010341262 0.61090908 6.317571e-04
## 532     1 0.0010341262 0.61090908 6.317571e-04
## 533     1 0.0010341262 0.61090908 6.317571e-04
## 534     1 0.0010341262 0.61090908 6.317571e-04
## 535     1 0.0010341262 0.61090908 6.317571e-04
## 536     3 0.0018867925 0.33647224 6.348533e-04
## 537     2 0.0012437811 0.51082562 6.353553e-04
## 538     1 0.0005076142 1.25276297 6.359203e-04
## 539     1 0.0005076142 1.25276297 6.359203e-04
## 540     1 0.0005076142 1.25276297 6.359203e-04
## 541     1 0.0005076142 1.25276297 6.359203e-04
## 542     1 0.0005076142 1.25276297 6.359203e-04
## 543     1 0.0005076142 1.25276297 6.359203e-04
## 544     1 0.0005076142 1.25276297 6.359203e-04
## 545     1 0.0005076142 1.25276297 6.359203e-04
## 546     1 0.0005076142 1.25276297 6.359203e-04
## 547     1 0.0005076142 1.25276297 6.359203e-04
## 548     1 0.0005503577 1.15745279 6.370131e-04
## 549     1 0.0005503577 1.15745279 6.370131e-04
## 550     1 0.0005503577 1.15745279 6.370131e-04
## 551     1 0.0005503577 1.15745279 6.370131e-04
## 552     1 0.0005503577 1.15745279 6.370131e-04
## 553     1 0.0005503577 1.15745279 6.370131e-04
## 554     1 0.0005503577 1.15745279 6.370131e-04
## 555     1 0.0005503577 1.15745279 6.370131e-04
## 556     1 0.0005503577 1.15745279 6.370131e-04
## 557     1 0.0005503577 1.15745279 6.370131e-04
## 558     1 0.0005503577 1.15745279 6.370131e-04
## 559     1 0.0005503577 1.15745279 6.370131e-04
## 560     1 0.0011389522 0.55961579 6.373756e-04
## 561     1 0.0011389522 0.55961579 6.373756e-04
## 562     1 0.0011389522 0.55961579 6.373756e-04
## 563     1 0.0024570025 0.25951120 6.376196e-04
## 564     3 0.0015228426 0.41985385 6.393713e-04
## 565     1 0.0013774105 0.46430561 6.395394e-04
## 566     1 0.0013774105 0.46430561 6.395394e-04
## 567     1 0.0013774105 0.46430561 6.395394e-04
## 568     2 0.0012578616 0.51082562 6.425480e-04
## 569     1 0.0017123288 0.37729423 6.460518e-04
## 570     1 0.0006531679 0.99039870 6.468966e-04
## 571     1 0.0006531679 0.99039870 6.468966e-04
## 572     1 0.0006531679 0.99039870 6.468966e-04
## 573     1 0.0006531679 0.99039870 6.468966e-04
## 574     1 0.0006531679 0.99039870 6.468966e-04
## 575     1 0.0006531679 0.99039870 6.468966e-04
## 576     1 0.0006531679 0.99039870 6.468966e-04
## 577     1 0.0006531679 0.99039870 6.468966e-04
## 578     1 0.0007062147 0.91629073 6.470980e-04
## 579     1 0.0007062147 0.91629073 6.470980e-04
## 580     1 0.0007062147 0.91629073 6.470980e-04
## 581     1 0.0007062147 0.91629073 6.470980e-04
## 582     1 0.0007062147 0.91629073 6.470980e-04
## 583     1 0.0007062147 0.91629073 6.470980e-04
## 584     1 0.0007062147 0.91629073 6.470980e-04
## 585     1 0.0010638298 0.61090908 6.499033e-04
## 586     1 0.0010638298 0.61090908 6.499033e-04
## 587     1 0.0011764706 0.55961579 6.583715e-04
## 588     1 0.0011764706 0.55961579 6.583715e-04
## 589     1 0.0011764706 0.55961579 6.583715e-04
## 590     3 0.0019595036 0.33647224 6.593186e-04
## 591     3 0.0035294118 0.18805223 6.637138e-04
## 592     5 0.0035310734 0.18805223 6.640262e-04
## 593     1 0.0006218905 1.07044141 6.656974e-04
## 594     1 0.0006218905 1.07044141 6.656974e-04
## 595     1 0.0006218905 1.07044141 6.656974e-04
## 596     1 0.0006218905 1.07044141 6.656974e-04
## 597     3 0.0025684932 0.25951120 6.665527e-04
## 598     1 0.0008561644 0.78275934 6.701707e-04
## 599     1 0.0008561644 0.78275934 6.701707e-04
## 600     1 0.0008561644 0.78275934 6.701707e-04
## 601     2 0.0011007155 0.61090908 6.724371e-04
## 602     2 0.0011007155 0.61090908 6.724371e-04
## 603     1 0.0011013216 0.61090908 6.728074e-04
## 604     2 0.0035778175 0.18805223 6.728166e-04
## 605     1 0.0010121457 0.66497630 6.730529e-04
## 606     1 0.0010121457 0.66497630 6.730529e-04
## 607     1 0.0010121457 0.66497630 6.730529e-04
## 608     1 0.0010121457 0.66497630 6.730529e-04
## 609     1 0.0006289308 1.07044141 6.732336e-04
## 610     1 0.0006289308 1.07044141 6.732336e-04
## 611     1 0.0006289308 1.07044141 6.732336e-04
## 612     1 0.0006289308 1.07044141 6.732336e-04
## 613     1 0.0006289308 1.07044141 6.732336e-04
## 614     1 0.0006289308 1.07044141 6.732336e-04
## 615     1 0.0006289308 1.07044141 6.732336e-04
## 616     1 0.0006289308 1.07044141 6.732336e-04
## 617     1 0.0006289308 1.07044141 6.732336e-04
## 618     1 0.0006289308 1.07044141 6.732336e-04
## 619     1 0.0017889088 0.37729423 6.749450e-04
## 620     1 0.0017889088 0.37729423 6.749450e-04
## 621     2 0.0010152284 0.66497630 6.751028e-04
## 622     2 0.0010152284 0.66497630 6.751028e-04
## 623     2 0.0010152284 0.66497630 6.751028e-04
## 624     2 0.0010152284 0.66497630 6.751028e-04
## 625     1 0.0012121212 0.55961579 6.783222e-04
## 626     1 0.0012121212 0.55961579 6.783222e-04
## 627     1 0.0013280212 0.51082562 6.783873e-04
## 628     1 0.0013280212 0.51082562 6.783873e-04
## 629     1 0.0013280212 0.51082562 6.783873e-04
## 630     1 0.0013333333 0.51082562 6.811008e-04
## 631     1 0.0013333333 0.51082562 6.811008e-04
## 632     2 0.0020242915 0.33647224 6.811179e-04
## 633     2 0.0020242915 0.33647224 6.811179e-04
## 634     4 0.0020304569 0.33647224 6.831924e-04
## 635     4 0.0020304569 0.33647224 6.831924e-04
## 636     3 0.0036363636 0.18805223 6.838263e-04
## 637     1 0.0026385224 0.25951120 6.847261e-04
## 638     1 0.0011235955 0.61090908 6.864147e-04
## 639     1 0.0011235955 0.61090908 6.864147e-04
## 640     1 0.0010341262 0.66497630 6.876694e-04
## 641     1 0.0005076142 1.35812348 6.894028e-04
## 642     1 0.0005076142 1.35812348 6.894028e-04
## 643     1 0.0005076142 1.35812348 6.894028e-04
## 644     1 0.0005076142 1.35812348 6.894028e-04
## 645     1 0.0005076142 1.35812348 6.894028e-04
## 646     1 0.0005076142 1.35812348 6.894028e-04
## 647     1 0.0005076142 1.35812348 6.894028e-04
## 648     1 0.0005076142 1.35812348 6.894028e-04
## 649     1 0.0005076142 1.35812348 6.894028e-04
## 650     1 0.0005076142 1.35812348 6.894028e-04
## 651     1 0.0005076142 1.35812348 6.894028e-04
## 652     1 0.0005076142 1.35812348 6.894028e-04
## 653     1 0.0005076142 1.35812348 6.894028e-04
## 654     1 0.0005503577 1.25276297 6.894678e-04
## 655     1 0.0005503577 1.25276297 6.894678e-04
## 656     1 0.0005503577 1.25276297 6.894678e-04
## 657     1 0.0005503577 1.25276297 6.894678e-04
## 658     1 0.0005503577 1.25276297 6.894678e-04
## 659     1 0.0005503577 1.25276297 6.894678e-04
## 660     1 0.0005503577 1.25276297 6.894678e-04
## 661     1 0.0005503577 1.25276297 6.894678e-04
## 662     1 0.0005503577 1.25276297 6.894678e-04
## 663     1 0.0005503577 1.25276297 6.894678e-04
## 664     1 0.0005503577 1.25276297 6.894678e-04
## 665     1 0.0005503577 1.25276297 6.894678e-04
## 666     1 0.0005503577 1.25276297 6.894678e-04
## 667     1 0.0011389522 0.61090908 6.957962e-04
## 668     1 0.0011389522 0.61090908 6.957962e-04
## 669     1 0.0011389522 0.61090908 6.957962e-04
## 670     1 0.0011389522 0.61090908 6.957962e-04
## 671     2 0.0020682523 0.33647224 6.959095e-04
## 672     2 0.0037105751 0.18805223 6.977819e-04
## 673     1 0.0006531679 1.07044141 6.991779e-04
## 674     1 0.0006531679 1.07044141 6.991779e-04
## 675     1 0.0006531679 1.07044141 6.991779e-04
## 676     1 0.0006531679 1.07044141 6.991779e-04
## 677     1 0.0006531679 1.07044141 6.991779e-04
## 678     1 0.0006531679 1.07044141 6.991779e-04
## 679     1 0.0006531679 1.07044141 6.991779e-04
## 680     1 0.0006531679 1.07044141 6.991779e-04
## 681     1 0.0007062147 0.99039870 6.994341e-04
## 682     1 0.0007062147 0.99039870 6.994341e-04
## 683     1 0.0007062147 0.99039870 6.994341e-04
## 684     1 0.0007062147 0.99039870 6.994341e-04
## 685     1 0.0018552876 0.37729423 6.999893e-04
## 686     1 0.0018552876 0.37729423 6.999893e-04
## 687     2 0.0012578616 0.55961579 7.039192e-04
## 688     3 0.0015228426 0.46430561 7.070644e-04
## 689     3 0.0015228426 0.46430561 7.070644e-04
## 690     1 0.0010638298 0.66497630 7.074216e-04
## 691     1 0.0010638298 0.66497630 7.074216e-04
## 692     1 0.0010638298 0.66497630 7.074216e-04
## 693     1 0.0010638298 0.66497630 7.074216e-04
## 694     3 0.0018867925 0.37729423 7.118759e-04
## 695     2 0.0021276596 0.33647224 7.158984e-04
## 696     2 0.0021276596 0.33647224 7.158984e-04
## 697     2 0.0021276596 0.33647224 7.158984e-04
## 698     1 0.0011764706 0.61090908 7.187166e-04
## 699     1 0.0011764706 0.61090908 7.187166e-04
## 700     1 0.0006218905 1.15745279 7.198089e-04
## 701     1 0.0006218905 1.15745279 7.198089e-04
## 702     1 0.0006218905 1.15745279 7.198089e-04
## 703     1 0.0006218905 1.15745279 7.198089e-04
## 704     1 0.0006218905 1.15745279 7.198089e-04
## 705     2 0.0014124294 0.51082562 7.215051e-04
## 706     1 0.0027932961 0.25951120 7.248916e-04
## 707     1 0.0027932961 0.25951120 7.248916e-04
## 708     1 0.0027932961 0.25951120 7.248916e-04
## 709     1 0.0008561644 0.84729786 7.254263e-04
## 710     1 0.0006289308 1.15745279 7.279577e-04
## 711     1 0.0006289308 1.15745279 7.279577e-04
## 712     1 0.0006289308 1.15745279 7.279577e-04
## 713     1 0.0006289308 1.15745279 7.279577e-04
## 714     1 0.0006289308 1.15745279 7.279577e-04
## 715     1 0.0006289308 1.15745279 7.279577e-04
## 716     1 0.0006289308 1.15745279 7.279577e-04
## 717     1 0.0006289308 1.15745279 7.279577e-04
## 718     1 0.0006289308 1.15745279 7.279577e-04
## 719     1 0.0006289308 1.15745279 7.279577e-04
## 720     1 0.0006289308 1.15745279 7.279577e-04
## 721     1 0.0006289308 1.15745279 7.279577e-04
## 722     1 0.0010121457 0.72213472 7.309056e-04
## 723     1 0.0010121457 0.72213472 7.309056e-04
## 724     1 0.0010121457 0.72213472 7.309056e-04
## 725     1 0.0010121457 0.72213472 7.309056e-04
## 726     2 0.0013063357 0.55961579 7.310461e-04
## 727     2 0.0013063357 0.55961579 7.310461e-04
## 728     2 0.0013063357 0.55961579 7.310461e-04
## 729     2 0.0013063357 0.55961579 7.310461e-04
## 730     2 0.0013063357 0.55961579 7.310461e-04
## 731     2 0.0011007155 0.66497630 7.319497e-04
## 732     2 0.0011007155 0.66497630 7.319497e-04
## 733     2 0.0010152284 0.72213472 7.331317e-04
## 734     2 0.0010152284 0.72213472 7.331317e-04
## 735     2 0.0010152284 0.72213472 7.331317e-04
## 736     1 0.0021929825 0.33647224 7.378777e-04
## 737     1 0.0021929825 0.33647224 7.378777e-04
## 738     3 0.0019595036 0.37729423 7.393094e-04
## 739     1 0.0012121212 0.61090908 7.404959e-04
## 740     1 0.0012121212 0.61090908 7.404959e-04
## 741     1 0.0012121212 0.61090908 7.404959e-04
## 742     1 0.0012121212 0.61090908 7.404959e-04
## 743     1 0.0012121212 0.61090908 7.404959e-04
## 744     1 0.0024937656 0.29725152 7.412756e-04
## 745     1 0.0024937656 0.29725152 7.412756e-04
## 746     1 0.0013280212 0.55961579 7.431817e-04
## 747     1 0.0013333333 0.55961579 7.461544e-04
## 748     1 0.0013333333 0.55961579 7.461544e-04
## 749     1 0.0013333333 0.55961579 7.461544e-04
## 750     1 0.0013333333 0.55961579 7.461544e-04
## 751     1 0.0010341262 0.72213472 7.467784e-04
## 752     1 0.0010341262 0.72213472 7.467784e-04
## 753     1 0.0010341262 0.72213472 7.467784e-04
## 754     1 0.0010341262 0.72213472 7.467784e-04
## 755     1 0.0010341262 0.72213472 7.467784e-04
## 756     1 0.0011235955 0.66497630 7.471644e-04
## 757     1 0.0005503577 1.35812348 7.474538e-04
## 758     1 0.0005503577 1.35812348 7.474538e-04
## 759     1 0.0005503577 1.35812348 7.474538e-04
## 760     1 0.0005503577 1.35812348 7.474538e-04
## 761     1 0.0005503577 1.35812348 7.474538e-04
## 762     1 0.0005503577 1.35812348 7.474538e-04
## 763     1 0.0005503577 1.35812348 7.474538e-04
## 764     1 0.0005503577 1.35812348 7.474538e-04
## 765     1 0.0005503577 1.35812348 7.474538e-04
## 766     1 0.0005503577 1.35812348 7.474538e-04
## 767     1 0.0005503577 1.35812348 7.474538e-04
## 768     1 0.0005076142 1.47590652 7.491911e-04
## 769     1 0.0005076142 1.47590652 7.491911e-04
## 770     1 0.0005076142 1.47590652 7.491911e-04
## 771     1 0.0005076142 1.47590652 7.491911e-04
## 772     1 0.0005076142 1.47590652 7.491911e-04
## 773     1 0.0005076142 1.47590652 7.491911e-04
## 774     1 0.0005076142 1.47590652 7.491911e-04
## 775     1 0.0005076142 1.47590652 7.491911e-04
## 776     1 0.0005076142 1.47590652 7.491911e-04
## 777     1 0.0005076142 1.47590652 7.491911e-04
## 778     1 0.0017889088 0.41985385 7.510802e-04
## 779     1 0.0017889088 0.41985385 7.510802e-04
## 780    14 0.0259740260 0.02898754 7.529230e-04
## 781     1 0.0007062147 1.07044141 7.559614e-04
## 782     1 0.0007062147 1.07044141 7.559614e-04
## 783     1 0.0007062147 1.07044141 7.559614e-04
## 784     1 0.0007062147 1.07044141 7.559614e-04
## 785     1 0.0007062147 1.07044141 7.559614e-04
## 786     1 0.0007062147 1.07044141 7.559614e-04
## 787     1 0.0007062147 1.07044141 7.559614e-04
## 788     1 0.0007062147 1.07044141 7.559614e-04
## 789     1 0.0007062147 1.07044141 7.559614e-04
## 790     1 0.0007062147 1.07044141 7.559614e-04
## 791     1 0.0007062147 1.07044141 7.559614e-04
## 792     1 0.0007062147 1.07044141 7.559614e-04
## 793     1 0.0006531679 1.15745279 7.560110e-04
## 794     1 0.0006531679 1.15745279 7.560110e-04
## 795     1 0.0006531679 1.15745279 7.560110e-04
## 796     1 0.0006531679 1.15745279 7.560110e-04
## 797     1 0.0006531679 1.15745279 7.560110e-04
## 798     1 0.0006531679 1.15745279 7.560110e-04
## 799     1 0.0006531679 1.15745279 7.560110e-04
## 800     1 0.0006531679 1.15745279 7.560110e-04
## 801     1 0.0011389522 0.66497630 7.573762e-04
## 802     1 0.0011389522 0.66497630 7.573762e-04
## 803     1 0.0011389522 0.66497630 7.573762e-04
## 804     2 0.0012437811 0.61090908 7.598372e-04
## 805     2 0.0012437811 0.61090908 7.598372e-04
## 806     2 0.0012437811 0.61090908 7.598372e-04
## 807     2 0.0012437811 0.61090908 7.598372e-04
## 808     2 0.0020242915 0.37729423 7.637535e-04
## 809     2 0.0020242915 0.37729423 7.637535e-04
## 810     2 0.0020242915 0.37729423 7.637535e-04
## 811     2 0.0022779043 0.33647224 7.664516e-04
## 812     1 0.0010638298 0.72213472 7.682284e-04
## 813     1 0.0010638298 0.72213472 7.682284e-04
## 814     1 0.0010638298 0.72213472 7.682284e-04
## 815     1 0.0010638298 0.72213472 7.682284e-04
## 816     1 0.0010638298 0.72213472 7.682284e-04
## 817     2 0.0012578616 0.61090908 7.684391e-04
## 818     2 0.0012578616 0.61090908 7.684391e-04
## 819     2 0.0012578616 0.61090908 7.684391e-04
## 820     2 0.0012578616 0.61090908 7.684391e-04
## 821     1 0.0013774105 0.55961579 7.708206e-04
## 822     1 0.0013774105 0.55961579 7.708206e-04
## 823     1 0.0029850746 0.25951120 7.746603e-04
## 824     4 0.0026126715 0.29725152 7.766206e-04
## 825     3 0.0015228426 0.51082562 7.779070e-04
## 826     1 0.0018552876 0.41985385 7.789496e-04
## 827     1 0.0018552876 0.41985385 7.789496e-04
## 828     1 0.0006218905 1.25276297 7.790814e-04
## 829     1 0.0006218905 1.25276297 7.790814e-04
## 830     1 0.0006218905 1.25276297 7.790814e-04
## 831     1 0.0006218905 1.25276297 7.790814e-04
## 832     1 0.0006218905 1.25276297 7.790814e-04
## 833     1 0.0006218905 1.25276297 7.790814e-04
## 834     1 0.0006218905 1.25276297 7.790814e-04
## 835     1 0.0006218905 1.25276297 7.790814e-04
## 836     1 0.0006218905 1.25276297 7.790814e-04
## 837     1 0.0006218905 1.25276297 7.790814e-04
## 838     1 0.0006218905 1.25276297 7.790814e-04
## 839     1 0.0006218905 1.25276297 7.790814e-04
## 840     1 0.0006218905 1.25276297 7.790814e-04
## 841     1 0.0006218905 1.25276297 7.790814e-04
## 842     1 0.0006218905 1.25276297 7.790814e-04
## 843     1 0.0006218905 1.25276297 7.790814e-04
## 844     1 0.0006218905 1.25276297 7.790814e-04
## 845     1 0.0006218905 1.25276297 7.790814e-04
## 846     1 0.0006218905 1.25276297 7.790814e-04
## 847     2 0.0020682523 0.37729423 7.803397e-04
## 848     1 0.0011764706 0.66497630 7.823251e-04
## 849     1 0.0011764706 0.66497630 7.823251e-04
## 850     1 0.0008561644 0.91629073 7.844955e-04
## 851     1 0.0008561644 0.91629073 7.844955e-04
## 852     1 0.0008561644 0.91629073 7.844955e-04
## 853     1 0.0008561644 0.91629073 7.844955e-04
## 854     1 0.0008561644 0.91629073 7.844955e-04
## 855     1 0.0006289308 1.25276297 7.879012e-04
## 856     1 0.0006289308 1.25276297 7.879012e-04
## 857     1 0.0006289308 1.25276297 7.879012e-04
## 858     1 0.0006289308 1.25276297 7.879012e-04
## 859     1 0.0006289308 1.25276297 7.879012e-04
## 860     1 0.0006289308 1.25276297 7.879012e-04
## 861     1 0.0006289308 1.25276297 7.879012e-04
## 862     1 0.0006289308 1.25276297 7.879012e-04
## 863     3 0.0030364372 0.25951120 7.879895e-04
## 864     2 0.0014124294 0.55961579 7.904178e-04
## 865     1 0.0010121457 0.78275934 7.922665e-04
## 866     1 0.0010121457 0.78275934 7.922665e-04
## 867     1 0.0010121457 0.78275934 7.922665e-04
## 868     1 0.0010121457 0.78275934 7.922665e-04
## 869     1 0.0010121457 0.78275934 7.922665e-04
## 870     2 0.0010152284 0.78275934 7.946795e-04
## 871     2 0.0011007155 0.72213472 7.948649e-04
## 872     2 0.0011007155 0.72213472 7.948649e-04
## 873     2 0.0011007155 0.72213472 7.948649e-04
## 874     2 0.0011007155 0.72213472 7.948649e-04
## 875     2 0.0017123288 0.46430561 7.950438e-04
## 876     2 0.0017123288 0.46430561 7.950438e-04
## 877     1 0.0017123288 0.46430561 7.950438e-04
## 878     1 0.0017123288 0.46430561 7.950438e-04
## 879     1 0.0011013216 0.72213472 7.953026e-04
## 880     1 0.0011013216 0.72213472 7.953026e-04
## 881     1 0.0023640662 0.33647224 7.954426e-04
## 882     1 0.0023640662 0.33647224 7.954426e-04
## 883     1 0.0023640662 0.33647224 7.954426e-04
## 884     2 0.0013063357 0.61090908 7.980524e-04
## 885     2 0.0013063357 0.61090908 7.980524e-04
## 886    25 0.0275330396 0.02898754 7.981150e-04
## 887     4 0.0042553191 0.18805223 8.002223e-04
## 888     5 0.0042808219 0.18805223 8.050181e-04
## 889     1 0.0012121212 0.66497630 8.060319e-04
## 890     1 0.0012121212 0.66497630 8.060319e-04
## 891     1 0.0012121212 0.66497630 8.060319e-04
## 892     1 0.0010341262 0.78275934 8.094719e-04
## 893     1 0.0010341262 0.78275934 8.094719e-04
## 894     1 0.0013280212 0.61090908 8.113002e-04
## 895     1 0.0013280212 0.61090908 8.113002e-04
## 896     1 0.0013280212 0.61090908 8.113002e-04
## 897     1 0.0013280212 0.61090908 8.113002e-04
## 898     1 0.0013280212 0.61090908 8.113002e-04
## 899     1 0.0011235955 0.72213472 8.113873e-04
## 900     1 0.0011235955 0.72213472 8.113873e-04
## 901     1 0.0011235955 0.72213472 8.113873e-04
## 902     1 0.0005503577 1.47590652 8.122766e-04
## 903     1 0.0005503577 1.47590652 8.122766e-04
## 904     1 0.0005503577 1.47590652 8.122766e-04
## 905     1 0.0005503577 1.47590652 8.122766e-04
## 906     1 0.0005503577 1.47590652 8.122766e-04
## 907     1 0.0005503577 1.47590652 8.122766e-04
## 908     1 0.0005503577 1.47590652 8.122766e-04
## 909     1 0.0005503577 1.47590652 8.122766e-04
## 910     1 0.0005503577 1.47590652 8.122766e-04
## 911     1 0.0005503577 1.47590652 8.122766e-04
## 912     1 0.0005503577 1.47590652 8.122766e-04
## 913     1 0.0005503577 1.47590652 8.122766e-04
## 914     1 0.0005503577 1.47590652 8.122766e-04
## 915     1 0.0005503577 1.47590652 8.122766e-04
## 916     1 0.0005503577 1.47590652 8.122766e-04
## 917     1 0.0005503577 1.47590652 8.122766e-04
## 918     1 0.0005503577 1.47590652 8.122766e-04
## 919     1 0.0005503577 1.47590652 8.122766e-04
## 920     1 0.0013333333 0.61090908 8.145454e-04
## 921     1 0.0013333333 0.61090908 8.145454e-04
## 922     1 0.0013333333 0.61090908 8.145454e-04
## 923     1 0.0013333333 0.61090908 8.145454e-04
## 924     1 0.0013333333 0.61090908 8.145454e-04
## 925     1 0.0005076142 1.60943791 8.169736e-04
## 926     1 0.0005076142 1.60943791 8.169736e-04
## 927     1 0.0005076142 1.60943791 8.169736e-04
## 928     1 0.0005076142 1.60943791 8.169736e-04
## 929     1 0.0005076142 1.60943791 8.169736e-04
## 930     1 0.0005076142 1.60943791 8.169736e-04
## 931     1 0.0005076142 1.60943791 8.169736e-04
## 932     1 0.0005076142 1.60943791 8.169736e-04
## 933     1 0.0005076142 1.60943791 8.169736e-04
## 934     1 0.0005076142 1.60943791 8.169736e-04
## 935     1 0.0005076142 1.60943791 8.169736e-04
## 936     1 0.0005076142 1.60943791 8.169736e-04
## 937     1 0.0005076142 1.60943791 8.169736e-04
## 938     1 0.0005076142 1.60943791 8.169736e-04
## 939     1 0.0005076142 1.60943791 8.169736e-04
## 940     1 0.0005076142 1.60943791 8.169736e-04
## 941     1 0.0007062147 1.15745279 8.174102e-04
## 942     1 0.0007062147 1.15745279 8.174102e-04
## 943     1 0.0007062147 1.15745279 8.174102e-04
## 944     1 0.0007062147 1.15745279 8.174102e-04
## 945     1 0.0007062147 1.15745279 8.174102e-04
## 946     1 0.0007062147 1.15745279 8.174102e-04
## 947     1 0.0007062147 1.15745279 8.174102e-04
## 948     1 0.0007062147 1.15745279 8.174102e-04
## 949     1 0.0007062147 1.15745279 8.174102e-04
## 950     1 0.0007062147 1.15745279 8.174102e-04
## 951     1 0.0006531679 1.25276297 8.182645e-04
## 952     1 0.0006531679 1.25276297 8.182645e-04
## 953     1 0.0006531679 1.25276297 8.182645e-04
## 954     1 0.0006531679 1.25276297 8.182645e-04
## 955     1 0.0006531679 1.25276297 8.182645e-04
## 956     1 0.0006531679 1.25276297 8.182645e-04
## 957     1 0.0006531679 1.25276297 8.182645e-04
## 958     1 0.0006531679 1.25276297 8.182645e-04
## 959     1 0.0006531679 1.25276297 8.182645e-04
## 960     1 0.0011389522 0.72213472 8.224769e-04
## 961     1 0.0011389522 0.72213472 8.224769e-04
## 962     1 0.0011389522 0.72213472 8.224769e-04
## 963     1 0.0011389522 0.72213472 8.224769e-04
## 964     1 0.0011389522 0.72213472 8.224769e-04
## 965     1 0.0024570025 0.33647224 8.267131e-04
## 966     1 0.0024570025 0.33647224 8.267131e-04
## 967     2 0.0012437811 0.66497630 8.270850e-04
## 968     2 0.0012437811 0.66497630 8.270850e-04
## 969     2 0.0012437811 0.66497630 8.270850e-04
## 970     1 0.0021929825 0.37729423 8.273996e-04
## 971     1 0.0016233766 0.51082562 8.292624e-04
## 972     1 0.0027932961 0.29725152 8.303115e-04
## 973     1 0.0017889088 0.46430561 8.306004e-04
## 974     1 0.0010638298 0.78275934 8.327227e-04
## 975     1 0.0010638298 0.78275934 8.327227e-04
## 976     1 0.0010638298 0.78275934 8.327227e-04
## 977     1 0.0010638298 0.78275934 8.327227e-04
## 978     1 0.0010638298 0.78275934 8.327227e-04
## 979     2 0.0012578616 0.66497630 8.364482e-04
## 980     2 0.0012578616 0.66497630 8.364482e-04
## 981     2 0.0012578616 0.66497630 8.364482e-04
## 982     4 0.0024875622 0.33647224 8.369956e-04
## 983     1 0.0024937656 0.33647224 8.390829e-04
## 984     1 0.0024937656 0.33647224 8.390829e-04
## 985     1 0.0013774105 0.61090908 8.414726e-04
## 986     1 0.0013774105 0.61090908 8.414726e-04
## 987     1 0.0013774105 0.61090908 8.414726e-04
## 988     1 0.0013774105 0.61090908 8.414726e-04
## 989     3 0.0016510732 0.51082562 8.434105e-04
## 990     3 0.0016510732 0.51082562 8.434105e-04
## 991     1 0.0006218905 1.35812348 8.446042e-04
## 992     1 0.0006218905 1.35812348 8.446042e-04
## 993     1 0.0006218905 1.35812348 8.446042e-04
## 994     1 0.0006218905 1.35812348 8.446042e-04
## 995     1 0.0006218905 1.35812348 8.446042e-04
## 996     1 0.0006218905 1.35812348 8.446042e-04
## 997     1 0.0006218905 1.35812348 8.446042e-04
## 998     1 0.0006218905 1.35812348 8.446042e-04
## 999     1 0.0006218905 1.35812348 8.446042e-04
## 1000    1 0.0006218905 1.35812348 8.446042e-04
## 1001    1 0.0006218905 1.35812348 8.446042e-04
## 1002    4 0.0025157233 0.33647224 8.464710e-04
## 1003    1 0.0008561644 0.99039870 8.479441e-04
## 1004    1 0.0008561644 0.99039870 8.479441e-04
## 1005    1 0.0008561644 0.99039870 8.479441e-04
## 1006    1 0.0008561644 0.99039870 8.479441e-04
## 1007    1 0.0008561644 0.99039870 8.479441e-04
## 1008    1 0.0008561644 0.99039870 8.479441e-04
## 1009    1 0.0008561644 0.99039870 8.479441e-04
## 1010    1 0.0008561644 0.99039870 8.479441e-04
## 1011    1 0.0008561644 0.99039870 8.479441e-04
## 1012    2 0.0020242915 0.41985385 8.499066e-04
## 1013    4 0.0020304569 0.41985385 8.524951e-04
## 1014    1 0.0006289308 1.35812348 8.541657e-04
## 1015    1 0.0006289308 1.35812348 8.541657e-04
## 1016    1 0.0006289308 1.35812348 8.541657e-04
## 1017    1 0.0006289308 1.35812348 8.541657e-04
## 1018    1 0.0006289308 1.35812348 8.541657e-04
## 1019    1 0.0006289308 1.35812348 8.541657e-04
## 1020    1 0.0006289308 1.35812348 8.541657e-04
## 1021    1 0.0006289308 1.35812348 8.541657e-04
## 1022    1 0.0006289308 1.35812348 8.541657e-04
## 1023    1 0.0006289308 1.35812348 8.541657e-04
## 1024    1 0.0006289308 1.35812348 8.541657e-04
## 1025    1 0.0006289308 1.35812348 8.541657e-04
## 1026    1 0.0006289308 1.35812348 8.541657e-04
## 1027    1 0.0045454545 0.18805223 8.547829e-04
## 1028    4 0.0045558087 0.18805223 8.567300e-04
## 1029    6 0.0033021464 0.25951120 8.569440e-04
## 1030    1 0.0010121457 0.84729786 8.575889e-04
## 1031    1 0.0010121457 0.84729786 8.575889e-04
## 1032    1 0.0010121457 0.84729786 8.575889e-04
## 1033    1 0.0010121457 0.84729786 8.575889e-04
## 1034    1 0.0010121457 0.84729786 8.575889e-04
## 1035    2 0.0022779043 0.37729423 8.594402e-04
## 1036    2 0.0022779043 0.37729423 8.594402e-04
## 1037    7 0.0038525041 0.22314355 8.596615e-04
## 1038    2 0.0010152284 0.84729786 8.602009e-04
## 1039    2 0.0010152284 0.84729786 8.602009e-04
## 1040    2 0.0010152284 0.84729786 8.602009e-04
## 1041    1 0.0018552876 0.46430561 8.614204e-04
## 1042    1 0.0018552876 0.46430561 8.614204e-04
## 1043    2 0.0011007155 0.78275934 8.615953e-04
## 1044    2 0.0011007155 0.78275934 8.615953e-04
## 1045    2 0.0011007155 0.78275934 8.615953e-04
## 1046    2 0.0011007155 0.78275934 8.615953e-04
## 1047    2 0.0011007155 0.78275934 8.615953e-04
## 1048    1 0.0011013216 0.78275934 8.620698e-04
## 1049    1 0.0011013216 0.78275934 8.620698e-04
## 1050    1 0.0011013216 0.78275934 8.620698e-04
## 1051    2 0.0014124294 0.61090908 8.628659e-04
## 1052    2 0.0014124294 0.61090908 8.628659e-04
## 1053    1 0.0029069767 0.29725152 8.641033e-04
## 1054    1 0.0029069767 0.29725152 8.641033e-04
## 1055    2 0.0013063357 0.66497630 8.686823e-04
## 1056    2 0.0017123288 0.51082562 8.747014e-04
## 1057    1 0.0017123288 0.51082562 8.747014e-04
## 1058    1 0.0017123288 0.51082562 8.747014e-04
## 1059    1 0.0017123288 0.51082562 8.747014e-04
## 1060    3 0.0033707865 0.25951120 8.747568e-04
## 1061    1 0.0012121212 0.72213472 8.753148e-04
## 1062    1 0.0012121212 0.72213472 8.753148e-04
## 1063    1 0.0012121212 0.72213472 8.753148e-04
## 1064    1 0.0012121212 0.72213472 8.753148e-04
## 1065    1 0.0012121212 0.72213472 8.753148e-04
## 1066    1 0.0010341262 0.84729786 8.762129e-04
## 1067    1 0.0010341262 0.84729786 8.762129e-04
## 1068    1 0.0010341262 0.84729786 8.762129e-04
## 1069    1 0.0010341262 0.84729786 8.762129e-04
## 1070    1 0.0010341262 0.84729786 8.762129e-04
## 1071    1 0.0011235955 0.78275934 8.795049e-04
## 1072    1 0.0011235955 0.78275934 8.795049e-04
## 1073    1 0.0013280212 0.66497630 8.831027e-04
## 1074    1 0.0013280212 0.66497630 8.831027e-04
## 1075    1 0.0013280212 0.66497630 8.831027e-04
## 1076    1 0.0013280212 0.66497630 8.831027e-04
## 1077    1 0.0007062147 1.25276297 8.847196e-04
## 1078    1 0.0007062147 1.25276297 8.847196e-04
## 1079    1 0.0007062147 1.25276297 8.847196e-04
## 1080    1 0.0007062147 1.25276297 8.847196e-04
## 1081    1 0.0007062147 1.25276297 8.847196e-04
## 1082    1 0.0007062147 1.25276297 8.847196e-04
## 1083    1 0.0007062147 1.25276297 8.847196e-04
## 1084    1 0.0007062147 1.25276297 8.847196e-04
## 1085    1 0.0007062147 1.25276297 8.847196e-04
## 1086    1 0.0007062147 1.25276297 8.847196e-04
## 1087    1 0.0007062147 1.25276297 8.847196e-04
## 1088    1 0.0007062147 1.25276297 8.847196e-04
## 1089    1 0.0007062147 1.25276297 8.847196e-04
## 1090    1 0.0007062147 1.25276297 8.847196e-04
## 1091    1 0.0005503577 1.60943791 8.857666e-04
## 1092    1 0.0005503577 1.60943791 8.857666e-04
## 1093    1 0.0005503577 1.60943791 8.857666e-04
## 1094    1 0.0005503577 1.60943791 8.857666e-04
## 1095    1 0.0005503577 1.60943791 8.857666e-04
## 1096    1 0.0005503577 1.60943791 8.857666e-04
## 1097    1 0.0005503577 1.60943791 8.857666e-04
## 1098    1 0.0005503577 1.60943791 8.857666e-04
## 1099    1 0.0005503577 1.60943791 8.857666e-04
## 1100    1 0.0005503577 1.60943791 8.857666e-04
## 1101    1 0.0005503577 1.60943791 8.857666e-04
## 1102    1 0.0005503577 1.60943791 8.857666e-04
## 1103    1 0.0005503577 1.60943791 8.857666e-04
## 1104    1 0.0005503577 1.60943791 8.857666e-04
## 1105    1 0.0005503577 1.60943791 8.857666e-04
## 1106    1 0.0005503577 1.60943791 8.857666e-04
## 1107    1 0.0005503577 1.60943791 8.857666e-04
## 1108    1 0.0005503577 1.60943791 8.857666e-04
## 1109    1 0.0005503577 1.60943791 8.857666e-04
## 1110    1 0.0005503577 1.60943791 8.857666e-04
## 1111    1 0.0005503577 1.60943791 8.857666e-04
## 1112    1 0.0005503577 1.60943791 8.857666e-04
## 1113    1 0.0005503577 1.60943791 8.857666e-04
## 1114    1 0.0013333333 0.66497630 8.866351e-04
## 1115    1 0.0013333333 0.66497630 8.866351e-04
## 1116    1 0.0013333333 0.66497630 8.866351e-04
## 1117    1 0.0013333333 0.66497630 8.866351e-04
## 1118    1 0.0013333333 0.66497630 8.866351e-04
## 1119    1 0.0013333333 0.66497630 8.866351e-04
## 1120    3 0.0034168565 0.25951120 8.867125e-04
## 1121    1 0.0006531679 1.35812348 8.870826e-04
## 1122    1 0.0006531679 1.35812348 8.870826e-04
## 1123    1 0.0006531679 1.35812348 8.870826e-04
## 1124    1 0.0006531679 1.35812348 8.870826e-04
## 1125    1 0.0006531679 1.35812348 8.870826e-04
## 1126    1 0.0006531679 1.35812348 8.870826e-04
## 1127    1 0.0006531679 1.35812348 8.870826e-04
## 1128    1 0.0006531679 1.35812348 8.870826e-04
## 1129    1 0.0006531679 1.35812348 8.870826e-04
## 1130    1 0.0006531679 1.35812348 8.870826e-04
## 1131    1 0.0006531679 1.35812348 8.870826e-04
## 1132    1 0.0006531679 1.35812348 8.870826e-04
## 1133    1 0.0029850746 0.29725152 8.873180e-04
## 1134    2 0.0023529412 0.37729423 8.877511e-04
## 1135    1 0.0026385224 0.33647224 8.877895e-04
## 1136    1 0.0026385224 0.33647224 8.877895e-04
## 1137    1 0.0026385224 0.33647224 8.877895e-04
## 1138    1 0.0026385224 0.33647224 8.877895e-04
## 1139    1 0.0026385224 0.33647224 8.877895e-04
## 1140    2 0.0034246575 0.25951120 8.887370e-04
## 1141    1 0.0011389522 0.78275934 8.915254e-04
## 1142    1 0.0011389522 0.78275934 8.915254e-04
## 1143    1 0.0011389522 0.78275934 8.915254e-04
## 1144    1 0.0011389522 0.78275934 8.915254e-04
## 1145    1 0.0011389522 0.78275934 8.915254e-04
## 1146    2 0.0021276596 0.41985385 8.933061e-04
## 1147    2 0.0021276596 0.41985385 8.933061e-04
## 1148    2 0.0026560425 0.33647224 8.936846e-04
## 1149    1 0.0005076142 1.76358859 8.952226e-04
## 1150    1 0.0005076142 1.76358859 8.952226e-04
## 1151    1 0.0005076142 1.76358859 8.952226e-04
## 1152    1 0.0005076142 1.76358859 8.952226e-04
## 1153    1 0.0005076142 1.76358859 8.952226e-04
## 1154    1 0.0005076142 1.76358859 8.952226e-04
## 1155    1 0.0005076142 1.76358859 8.952226e-04
## 1156    1 0.0005076142 1.76358859 8.952226e-04
## 1157    1 0.0005076142 1.76358859 8.952226e-04
## 1158    1 0.0005076142 1.76358859 8.952226e-04
## 1159    1 0.0005076142 1.76358859 8.952226e-04
## 1160    1 0.0005076142 1.76358859 8.952226e-04
## 1161    1 0.0005076142 1.76358859 8.952226e-04
## 1162    1 0.0005076142 1.76358859 8.952226e-04
## 1163    1 0.0005076142 1.76358859 8.952226e-04
## 1164    1 0.0005076142 1.76358859 8.952226e-04
## 1165    1 0.0005076142 1.76358859 8.952226e-04
## 1166    1 0.0005076142 1.76358859 8.952226e-04
## 1167    1 0.0005076142 1.76358859 8.952226e-04
## 1168    1 0.0005076142 1.76358859 8.952226e-04
## 1169    1 0.0005076142 1.76358859 8.952226e-04
## 1170    2 0.0026666667 0.33647224 8.972593e-04
## 1171    2 0.0012437811 0.72213472 8.981775e-04
## 1172    1 0.0010638298 0.84729786 9.013807e-04
## 1173    1 0.0010638298 0.84729786 9.013807e-04
## 1174    1 0.0010638298 0.84729786 9.013807e-04
## 1175    1 0.0010638298 0.84729786 9.013807e-04
## 1176    1 0.0010638298 0.84729786 9.013807e-04
## 1177    4 0.0040485830 0.22314355 9.034152e-04
## 1178    6 0.0030456853 0.29725152 9.053346e-04
## 1179    1 0.0026954178 0.33647224 9.069333e-04
## 1180    1 0.0026954178 0.33647224 9.069333e-04
## 1181    1 0.0026954178 0.33647224 9.069333e-04
## 1182    1 0.0026954178 0.33647224 9.069333e-04
## 1183    1 0.0026954178 0.33647224 9.069333e-04
## 1184    1 0.0016233766 0.55961579 9.084672e-04
## 1185    3 0.0019595036 0.46430561 9.098085e-04
## 1186    3 0.0019595036 0.46430561 9.098085e-04
## 1187    1 0.0017889088 0.51082562 9.138204e-04
## 1188    2 0.0024242424 0.37729423 9.146527e-04
## 1189    2 0.0024242424 0.37729423 9.146527e-04
## 1190    3 0.0035294118 0.25951120 9.159219e-04
## 1191    1 0.0013774105 0.66497630 9.159453e-04
## 1192    1 0.0013774105 0.66497630 9.159453e-04
## 1193    1 0.0013774105 0.66497630 9.159453e-04
## 1194    1 0.0013774105 0.66497630 9.159453e-04
## 1195    5 0.0035310734 0.25951120 9.163531e-04
## 1196    1 0.0008561644 1.07044141 9.164738e-04
## 1197    1 0.0008561644 1.07044141 9.164738e-04
## 1198    1 0.0008561644 1.07044141 9.164738e-04
## 1199    1 0.0008561644 1.07044141 9.164738e-04
## 1200    1 0.0008561644 1.07044141 9.164738e-04
## 1201    1 0.0008561644 1.07044141 9.164738e-04
## 1202    1 0.0008561644 1.07044141 9.164738e-04
## 1203    1 0.0008561644 1.07044141 9.164738e-04
## 1204    1 0.0008561644 1.07044141 9.164738e-04
## 1205    1 0.0008561644 1.07044141 9.164738e-04
## 1206    1 0.0008561644 1.07044141 9.164738e-04
## 1207    1 0.0008561644 1.07044141 9.164738e-04
## 1208    1 0.0006218905 1.47590652 9.178523e-04
## 1209    1 0.0006218905 1.47590652 9.178523e-04
## 1210    1 0.0006218905 1.47590652 9.178523e-04
## 1211    1 0.0006218905 1.47590652 9.178523e-04
## 1212    1 0.0006218905 1.47590652 9.178523e-04
## 1213    1 0.0006218905 1.47590652 9.178523e-04
## 1214    1 0.0006218905 1.47590652 9.178523e-04
## 1215    1 0.0006218905 1.47590652 9.178523e-04
## 1216    1 0.0006218905 1.47590652 9.178523e-04
## 1217    1 0.0006218905 1.47590652 9.178523e-04
## 1218    1 0.0006218905 1.47590652 9.178523e-04
## 1219    1 0.0006218905 1.47590652 9.178523e-04
## 1220    1 0.0006218905 1.47590652 9.178523e-04
## 1221    1 0.0006218905 1.47590652 9.178523e-04
## 1222    1 0.0006218905 1.47590652 9.178523e-04
## 1223    1 0.0021929825 0.41985385 9.207321e-04
## 1224    1 0.0011764706 0.78275934 9.208933e-04
## 1225    1 0.0011764706 0.78275934 9.208933e-04
## 1226    1 0.0011764706 0.78275934 9.208933e-04
## 1227    7 0.0035532995 0.25951120 9.221210e-04
## 1228    3 0.0016510732 0.55961579 9.239666e-04
## 1229    3 0.0016510732 0.55961579 9.239666e-04
## 1230    3 0.0016510732 0.55961579 9.239666e-04
## 1231    2 0.0049140049 0.18805223 9.240896e-04
## 1232    4 0.0022014309 0.41985385 9.242792e-04
## 1233    1 0.0010121457 0.91629073 9.274198e-04
## 1234    1 0.0010121457 0.91629073 9.274198e-04
## 1235    1 0.0010121457 0.91629073 9.274198e-04
## 1236    1 0.0010121457 0.91629073 9.274198e-04
## 1237    1 0.0010121457 0.91629073 9.274198e-04
## 1238    1 0.0010121457 0.91629073 9.274198e-04
## 1239    1 0.0010121457 0.91629073 9.274198e-04
## 1240    1 0.0010121457 0.91629073 9.274198e-04
## 1241    1 0.0006289308 1.47590652 9.282431e-04
## 1242    1 0.0006289308 1.47590652 9.282431e-04
## 1243    1 0.0006289308 1.47590652 9.282431e-04
## 1244    1 0.0006289308 1.47590652 9.282431e-04
## 1245    1 0.0006289308 1.47590652 9.282431e-04
## 1246    1 0.0006289308 1.47590652 9.282431e-04
## 1247    1 0.0006289308 1.47590652 9.282431e-04
## 1248    1 0.0006289308 1.47590652 9.282431e-04
## 1249    1 0.0006289308 1.47590652 9.282431e-04
## 1250    1 0.0006289308 1.47590652 9.282431e-04
## 1251    1 0.0006289308 1.47590652 9.282431e-04
## 1252    1 0.0006289308 1.47590652 9.282431e-04
## 1253    1 0.0006289308 1.47590652 9.282431e-04
## 1254    1 0.0006289308 1.47590652 9.282431e-04
## 1255    1 0.0006289308 1.47590652 9.282431e-04
## 1256    2 0.0035778175 0.25951120 9.284837e-04
## 1257    2 0.0010152284 0.91629073 9.302444e-04
## 1258    2 0.0010152284 0.91629073 9.302444e-04
## 1259    3 0.0015228426 0.61090908 9.303184e-04
## 1260    2 0.0011007155 0.84729786 9.326339e-04
## 1261    2 0.0011007155 0.84729786 9.326339e-04
## 1262    2 0.0011007155 0.84729786 9.326339e-04
## 1263    2 0.0011007155 0.84729786 9.326339e-04
## 1264    2 0.0011007155 0.84729786 9.326339e-04
## 1265    1 0.0011013216 0.84729786 9.331474e-04
## 1266    1 0.0011013216 0.84729786 9.331474e-04
## 1267    2 0.0014124294 0.66497630 9.392321e-04
## 1268    1 0.0027932961 0.33647224 9.398666e-04
## 1269    1 0.0024937656 0.37729423 9.408834e-04
## 1270    1 0.0024937656 0.37729423 9.408834e-04
## 1271    1 0.0024937656 0.37729423 9.408834e-04
## 1272    1 0.0024937656 0.37729423 9.408834e-04
## 1273    2 0.0013063357 0.72213472 9.433504e-04
## 1274    2 0.0013063357 0.72213472 9.433504e-04
## 1275    2 0.0013063357 0.72213472 9.433504e-04
## 1276    2 0.0013063357 0.72213472 9.433504e-04
## 1277    1 0.0010341262 0.91629073 9.475602e-04
## 1278    1 0.0010341262 0.91629073 9.475602e-04
## 1279    1 0.0010341262 0.91629073 9.475602e-04
## 1280    1 0.0010341262 0.91629073 9.475602e-04
## 1281    1 0.0010341262 0.91629073 9.475602e-04
## 1282    1 0.0010341262 0.91629073 9.475602e-04
## 1283    1 0.0010341262 0.91629073 9.475602e-04
## 1284    1 0.0010341262 0.91629073 9.475602e-04
## 1285    1 0.0012121212 0.78275934 9.487992e-04
## 1286    1 0.0012121212 0.78275934 9.487992e-04
## 1287    1 0.0012121212 0.78275934 9.487992e-04
## 1288    1 0.0012121212 0.78275934 9.487992e-04
## 1289    1 0.0012121212 0.78275934 9.487992e-04
## 1290    1 0.0012121212 0.78275934 9.487992e-04
## 1291    1 0.0012121212 0.78275934 9.487992e-04
## 1292    1 0.0012121212 0.78275934 9.487992e-04
## 1293    4 0.0025157233 0.37729423 9.491679e-04
## 1294    1 0.0011235955 0.84729786 9.520201e-04
## 1295    1 0.0011235955 0.84729786 9.520201e-04
## 1296    1 0.0011235955 0.84729786 9.520201e-04
## 1297    1 0.0011235955 0.84729786 9.520201e-04
## 1298    1 0.0011235955 0.84729786 9.520201e-04
## 1299    1 0.0011235955 0.84729786 9.520201e-04
## 1300    3 0.0018656716 0.51082562 9.530329e-04
## 1301    2 0.0022779043 0.41985385 9.563869e-04
## 1302    5 0.0025380711 0.37729423 9.575996e-04
## 1303    2 0.0017123288 0.55961579 9.582462e-04
## 1304    2 0.0017123288 0.55961579 9.582462e-04
## 1305    2 0.0017123288 0.55961579 9.582462e-04
## 1306    1 0.0017123288 0.55961579 9.582462e-04
## 1307    1 0.0017123288 0.55961579 9.582462e-04
## 1308    1 0.0017123288 0.55961579 9.582462e-04
## 1309    1 0.0017123288 0.55961579 9.582462e-04
## 1310    1 0.0013280212 0.72213472 9.590102e-04
## 1311    1 0.0013280212 0.72213472 9.590102e-04
## 1312    1 0.0013280212 0.72213472 9.590102e-04
## 1313    1 0.0013280212 0.72213472 9.590102e-04
## 1314    1 0.0013280212 0.72213472 9.590102e-04
## 1315    1 0.0007062147 1.35812348 9.591268e-04
## 1316    1 0.0007062147 1.35812348 9.591268e-04
## 1317    1 0.0007062147 1.35812348 9.591268e-04
## 1318    1 0.0007062147 1.35812348 9.591268e-04
## 1319    1 0.0007062147 1.35812348 9.591268e-04
## 1320    2 0.0020682523 0.46430561 9.603012e-04
## 1321    2 0.0020682523 0.46430561 9.603012e-04
## 1322    1 0.0013333333 0.72213472 9.628463e-04
## 1323    1 0.0013333333 0.72213472 9.628463e-04
## 1324    1 0.0013333333 0.72213472 9.628463e-04
## 1325    1 0.0013333333 0.72213472 9.628463e-04
## 1326    1 0.0013333333 0.72213472 9.628463e-04
## 1327    1 0.0013333333 0.72213472 9.628463e-04
## 1328    1 0.0006531679 1.47590652 9.640147e-04
## 1329    1 0.0006531679 1.47590652 9.640147e-04
## 1330    1 0.0006531679 1.47590652 9.640147e-04
## 1331    1 0.0006531679 1.47590652 9.640147e-04
## 1332    1 0.0006531679 1.47590652 9.640147e-04
## 1333    1 0.0006531679 1.47590652 9.640147e-04
## 1334    1 0.0006531679 1.47590652 9.640147e-04
## 1335    1 0.0006531679 1.47590652 9.640147e-04
## 1336    1 0.0006531679 1.47590652 9.640147e-04
## 1337    1 0.0006531679 1.47590652 9.640147e-04
## 1338    1 0.0011389522 0.84729786 9.650317e-04
## 1339    1 0.0011389522 0.84729786 9.650317e-04
## 1340    1 0.0011389522 0.84729786 9.650317e-04
## 1341    1 0.0011389522 0.84729786 9.650317e-04
## 1342    1 0.0011389522 0.84729786 9.650317e-04
## 1343    1 0.0011389522 0.84729786 9.650317e-04
## 1344    1 0.0011389522 0.84729786 9.650317e-04
## 1345    3 0.0051369863 0.18805223 9.660217e-04
## 1346    6 0.0037313433 0.25951120 9.683254e-04
## 1347    1 0.0005503577 1.76358859 9.706046e-04
## 1348    1 0.0005503577 1.76358859 9.706046e-04
## 1349    1 0.0005503577 1.76358859 9.706046e-04
## 1350    1 0.0005503577 1.76358859 9.706046e-04
## 1351    1 0.0005503577 1.76358859 9.706046e-04
## 1352    1 0.0005503577 1.76358859 9.706046e-04
## 1353    1 0.0005503577 1.76358859 9.706046e-04
## 1354    1 0.0005503577 1.76358859 9.706046e-04
## 1355    1 0.0005503577 1.76358859 9.706046e-04
## 1356    1 0.0005503577 1.76358859 9.706046e-04
## 1357    1 0.0005503577 1.76358859 9.706046e-04
## 1358    1 0.0005503577 1.76358859 9.706046e-04
## 1359    1 0.0005503577 1.76358859 9.706046e-04
## 1360    1 0.0005503577 1.76358859 9.706046e-04
## 1361    1 0.0005503577 1.76358859 9.706046e-04
## 1362    1 0.0005503577 1.76358859 9.706046e-04
## 1363    1 0.0005503577 1.76358859 9.706046e-04
## 1364    1 0.0005503577 1.76358859 9.706046e-04
## 1365    1 0.0005503577 1.76358859 9.706046e-04
## 1366    1 0.0005503577 1.76358859 9.706046e-04
## 1367    1 0.0005503577 1.76358859 9.706046e-04
## 1368    1 0.0005503577 1.76358859 9.706046e-04
## 1369    1 0.0005503577 1.76358859 9.706046e-04
## 1370    1 0.0005503577 1.76358859 9.706046e-04
## 1371    1 0.0005503577 1.76358859 9.706046e-04
## 1372    1 0.0005503577 1.76358859 9.706046e-04
## 1373    1 0.0005503577 1.76358859 9.706046e-04
## 1374    1 0.0005503577 1.76358859 9.706046e-04
## 1375    1 0.0005503577 1.76358859 9.706046e-04
## 1376    1 0.0005503577 1.76358859 9.706046e-04
## 1377    1 0.0005503577 1.76358859 9.706046e-04
## 1378    1 0.0005503577 1.76358859 9.706046e-04
## 1379    1 0.0005503577 1.76358859 9.706046e-04
## 1380    1 0.0005503577 1.76358859 9.706046e-04
## 1381    1 0.0005503577 1.76358859 9.706046e-04
## 1382    1 0.0005503577 1.76358859 9.706046e-04
## 1383    1 0.0005503577 1.76358859 9.706046e-04
## 1384    1 0.0005503577 1.76358859 9.706046e-04
## 1385    1 0.0005503577 1.76358859 9.706046e-04
## 1386    1 0.0010638298 0.91629073 9.747774e-04
## 1387    1 0.0010638298 0.91629073 9.747774e-04
## 1388    1 0.0010638298 0.91629073 9.747774e-04
## 1389    1 0.0010638298 0.91629073 9.747774e-04
## 1390    1 0.0010638298 0.91629073 9.747774e-04
## 1391    1 0.0029069767 0.33647224 9.781170e-04
## 1392    1 0.0029069767 0.33647224 9.781170e-04
## 1393    6 0.0033021464 0.29725152 9.815680e-04
## 1394    3 0.0021186441 0.46430561 9.836983e-04
## 1395    2 0.0012578616 0.78275934 9.846029e-04
## 1396    2 0.0012578616 0.78275934 9.846029e-04
## 1397    1 0.0005076142 1.94591015 9.877716e-04
## 1398    1 0.0005076142 1.94591015 9.877716e-04
## 1399    1 0.0005076142 1.94591015 9.877716e-04
## 1400    1 0.0005076142 1.94591015 9.877716e-04
## 1401    1 0.0005076142 1.94591015 9.877716e-04
## 1402    1 0.0005076142 1.94591015 9.877716e-04
## 1403    1 0.0005076142 1.94591015 9.877716e-04
## 1404    1 0.0005076142 1.94591015 9.877716e-04
## 1405    1 0.0005076142 1.94591015 9.877716e-04
## 1406    1 0.0005076142 1.94591015 9.877716e-04
## 1407    1 0.0005076142 1.94591015 9.877716e-04
## 1408    1 0.0005076142 1.94591015 9.877716e-04
## 1409    1 0.0005076142 1.94591015 9.877716e-04
## 1410    1 0.0005076142 1.94591015 9.877716e-04
## 1411    1 0.0005076142 1.94591015 9.877716e-04
## 1412    1 0.0005076142 1.94591015 9.877716e-04
## 1413    1 0.0005076142 1.94591015 9.877716e-04
## 1414    1 0.0005076142 1.94591015 9.877716e-04
## 1415    1 0.0005076142 1.94591015 9.877716e-04
## 1416    1 0.0005076142 1.94591015 9.877716e-04
## 1417    1 0.0005076142 1.94591015 9.877716e-04
## 1418    1 0.0005076142 1.94591015 9.877716e-04
## 1419    1 0.0005076142 1.94591015 9.877716e-04
## 1420    1 0.0005076142 1.94591015 9.877716e-04
## 1421    1 0.0005076142 1.94591015 9.877716e-04
## 1422    1 0.0005076142 1.94591015 9.877716e-04
## 1423    1 0.0005076142 1.94591015 9.877716e-04
## 1424    1 0.0005076142 1.94591015 9.877716e-04
## 1425    1 0.0005076142 1.94591015 9.877716e-04
## 1426    2 0.0021276596 0.46430561 9.878843e-04
## 1427    1 0.0008561644 1.15745279 9.909699e-04
## 1428    1 0.0008561644 1.15745279 9.909699e-04
## 1429    1 0.0008561644 1.15745279 9.909699e-04
## 1430    1 0.0008561644 1.15745279 9.909699e-04
## 1431    1 0.0016233766 0.61090908 9.917355e-04
## 1432    1 0.0016233766 0.61090908 9.917355e-04
## 1433    1 0.0016233766 0.61090908 9.917355e-04
## 1434    1 0.0023640662 0.41985385 9.925623e-04
## 1435    1 0.0023640662 0.41985385 9.925623e-04
## 1436    1 0.0023640662 0.41985385 9.925623e-04
## 1437    1 0.0013774105 0.72213472 9.946759e-04
## 1438    1 0.0013774105 0.72213472 9.946759e-04
## 1439    1 0.0013774105 0.72213472 9.946759e-04
## 1440    1 0.0026385224 0.37729423 9.954993e-04
## 1441    1 0.0011764706 0.84729786 9.968210e-04
## 1442    1 0.0011764706 0.84729786 9.968210e-04
## 1443    1 0.0011764706 0.84729786 9.968210e-04
## 1444    1 0.0011764706 0.84729786 9.968210e-04
## 1445    1 0.0011764706 0.84729786 9.968210e-04
## 1446    1 0.0011764706 0.84729786 9.968210e-04
## 1447    1 0.0006218905 1.60943791 1.000894e-03
## 1448    1 0.0006218905 1.60943791 1.000894e-03
## 1449    1 0.0006218905 1.60943791 1.000894e-03
## 1450    1 0.0006218905 1.60943791 1.000894e-03
## 1451    1 0.0006218905 1.60943791 1.000894e-03
## 1452    1 0.0006218905 1.60943791 1.000894e-03
## 1453    1 0.0006218905 1.60943791 1.000894e-03
## 1454    1 0.0006218905 1.60943791 1.000894e-03
## 1455    1 0.0006218905 1.60943791 1.000894e-03
## 1456    1 0.0006218905 1.60943791 1.000894e-03
## 1457    1 0.0006218905 1.60943791 1.000894e-03
## 1458    1 0.0006218905 1.60943791 1.000894e-03
## 1459    1 0.0006218905 1.60943791 1.000894e-03
## 1460    1 0.0006218905 1.60943791 1.000894e-03
## 1461    1 0.0006218905 1.60943791 1.000894e-03
## 1462    1 0.0006218905 1.60943791 1.000894e-03
## 1463    1 0.0006218905 1.60943791 1.000894e-03
## 1464    3 0.0019595036 0.51082562 1.000965e-03
## 1465    3 0.0019595036 0.51082562 1.000965e-03
## 1466    1 0.0017889088 0.55961579 1.001102e-03
## 1467    1 0.0017889088 0.55961579 1.001102e-03
## 1468    1 0.0017889088 0.55961579 1.001102e-03
## 1469    1 0.0017889088 0.55961579 1.001102e-03
## 1470    1 0.0017889088 0.55961579 1.001102e-03
## 1471    3 0.0033707865 0.29725152 1.001971e-03
## 1472    1 0.0010121457 0.99039870 1.002428e-03
## 1473    1 0.0010121457 0.99039870 1.002428e-03
## 1474    1 0.0010121457 0.99039870 1.002428e-03
## 1475    1 0.0010121457 0.99039870 1.002428e-03
## 1476    1 0.0010121457 0.99039870 1.002428e-03
## 1477    2 0.0010152284 0.99039870 1.005481e-03
## 1478    2 0.0010152284 0.99039870 1.005481e-03
## 1479    2 0.0026666667 0.37729423 1.006118e-03
## 1480    2 0.0011007155 0.91629073 1.008575e-03
## 1481    2 0.0011007155 0.91629073 1.008575e-03
## 1482    2 0.0011007155 0.91629073 1.008575e-03
## 1483    2 0.0011007155 0.91629073 1.008575e-03
## 1484    2 0.0011007155 0.91629073 1.008575e-03
## 1485    2 0.0011007155 0.91629073 1.008575e-03
## 1486    2 0.0011007155 0.91629073 1.008575e-03
## 1487    3 0.0016510732 0.61090908 1.008656e-03
## 1488    3 0.0016510732 0.61090908 1.008656e-03
## 1489    1 0.0011013216 0.91629073 1.009131e-03
## 1490    1 0.0011013216 0.91629073 1.009131e-03
## 1491    1 0.0011013216 0.91629073 1.009131e-03
## 1492    3 0.0053667263 0.18805223 1.009225e-03
## 1493    1 0.0006289308 1.60943791 1.012225e-03
## 1494    1 0.0006289308 1.60943791 1.012225e-03
## 1495    1 0.0006289308 1.60943791 1.012225e-03
## 1496    1 0.0006289308 1.60943791 1.012225e-03
## 1497    1 0.0006289308 1.60943791 1.012225e-03
## 1498    1 0.0006289308 1.60943791 1.012225e-03
## 1499    1 0.0006289308 1.60943791 1.012225e-03
## 1500    1 0.0006289308 1.60943791 1.012225e-03
## 1501    1 0.0006289308 1.60943791 1.012225e-03
## 1502    1 0.0006289308 1.60943791 1.012225e-03
## 1503    1 0.0006289308 1.60943791 1.012225e-03
## 1504    1 0.0006289308 1.60943791 1.012225e-03
## 1505    1 0.0006289308 1.60943791 1.012225e-03
## 1506    1 0.0006289308 1.60943791 1.012225e-03
## 1507    1 0.0006289308 1.60943791 1.012225e-03
## 1508    1 0.0006289308 1.60943791 1.012225e-03
## 1509    1 0.0006289308 1.60943791 1.012225e-03
## 1510    1 0.0006289308 1.60943791 1.012225e-03
## 1511    1 0.0006289308 1.60943791 1.012225e-03
## 1512    1 0.0026954178 0.37729423 1.016966e-03
## 1513    1 0.0026954178 0.37729423 1.016966e-03
## 1514    6 0.0039190072 0.25951120 1.017026e-03
## 1515    1 0.0034246575 0.29725152 1.017985e-03
## 1516    1 0.0034246575 0.29725152 1.017985e-03
## 1517    1 0.0021929825 0.46430561 1.018214e-03
## 1518    4 0.0022014309 0.46430561 1.022137e-03
## 1519    2 0.0013063357 0.78275934 1.022546e-03
## 1520    2 0.0022026432 0.46430561 1.022700e-03
## 1521    1 0.0010341262 0.99039870 1.024197e-03
## 1522    1 0.0010341262 0.99039870 1.024197e-03
## 1523    1 0.0010341262 0.99039870 1.024197e-03
## 1524    1 0.0010341262 0.99039870 1.024197e-03
## 1525    1 0.0010341262 0.99039870 1.024197e-03
## 1526    1 0.0010341262 0.99039870 1.024197e-03
## 1527    1 0.0010341262 0.99039870 1.024197e-03
## 1528    1 0.0010341262 0.99039870 1.024197e-03
## 1529    1 0.0010341262 0.99039870 1.024197e-03
## 1530    1 0.0012121212 0.84729786 1.027028e-03
## 1531    1 0.0012121212 0.84729786 1.027028e-03
## 1532    1 0.0012121212 0.84729786 1.027028e-03
## 1533    1 0.0012121212 0.84729786 1.027028e-03
## 1534    1 0.0012121212 0.84729786 1.027028e-03
## 1535    1 0.0012121212 0.84729786 1.027028e-03
## 1536    1 0.0011235955 0.91629073 1.029540e-03
## 1537    1 0.0011235955 0.91629073 1.029540e-03
## 1538    3 0.0039840637 0.25951120 1.033909e-03
## 1539    3 0.0039840637 0.25951120 1.033909e-03
## 1540    2 0.0020242915 0.51082562 1.034060e-03
## 1541    2 0.0020242915 0.51082562 1.034060e-03
## 1542   10 0.0055035773 0.18805223 1.034960e-03
## 1543    4 0.0055096419 0.18805223 1.036100e-03
## 1544    1 0.0018552876 0.55961579 1.038248e-03
## 1545    2 0.0027548209 0.37729423 1.039378e-03
## 1546    1 0.0013280212 0.78275934 1.039521e-03
## 1547    1 0.0013280212 0.78275934 1.039521e-03
## 1548    1 0.0013280212 0.78275934 1.039521e-03
## 1549    1 0.0013280212 0.78275934 1.039521e-03
## 1550    1 0.0013280212 0.78275934 1.039521e-03
## 1551    1 0.0013280212 0.78275934 1.039521e-03
## 1552    1 0.0007062147 1.47590652 1.042307e-03
## 1553    1 0.0007062147 1.47590652 1.042307e-03
## 1554    1 0.0007062147 1.47590652 1.042307e-03
## 1555    1 0.0007062147 1.47590652 1.042307e-03
## 1556    1 0.0007062147 1.47590652 1.042307e-03
## 1557    1 0.0007062147 1.47590652 1.042307e-03
## 1558    1 0.0007062147 1.47590652 1.042307e-03
## 1559    1 0.0007062147 1.47590652 1.042307e-03
## 1560    1 0.0007062147 1.47590652 1.042307e-03
## 1561    1 0.0007062147 1.47590652 1.042307e-03
## 1562    1 0.0007062147 1.47590652 1.042307e-03
## 1563    1 0.0007062147 1.47590652 1.042307e-03
## 1564    1 0.0007062147 1.47590652 1.042307e-03
## 1565    2 0.0022471910 0.46430561 1.043383e-03
## 1566    2 0.0022471910 0.46430561 1.043383e-03
## 1567    2 0.0022471910 0.46430561 1.043383e-03
## 1568    2 0.0022471910 0.46430561 1.043383e-03
## 1569    1 0.0011389522 0.91629073 1.043611e-03
## 1570    1 0.0011389522 0.91629073 1.043611e-03
## 1571    1 0.0011389522 0.91629073 1.043611e-03
## 1572    1 0.0011389522 0.91629073 1.043611e-03
## 1573    1 0.0011389522 0.91629073 1.043611e-03
## 1574    1 0.0011389522 0.91629073 1.043611e-03
## 1575    1 0.0011389522 0.91629073 1.043611e-03
## 1576    3 0.0031023785 0.33647224 1.043864e-03
## 1577    3 0.0018656716 0.55961579 1.044059e-03
## 1578    3 0.0018656716 0.55961579 1.044059e-03
## 1579    1 0.0017123288 0.61090908 1.046077e-03
## 1580    5 0.0031094527 0.33647224 1.046245e-03
## 1581    1 0.0006531679 1.60943791 1.051233e-03
## 1582    1 0.0006531679 1.60943791 1.051233e-03
## 1583    1 0.0006531679 1.60943791 1.051233e-03
## 1584    1 0.0006531679 1.60943791 1.051233e-03
## 1585    1 0.0006531679 1.60943791 1.051233e-03
## 1586    1 0.0006531679 1.60943791 1.051233e-03
## 1587    1 0.0006531679 1.60943791 1.051233e-03
## 1588    1 0.0006531679 1.60943791 1.051233e-03
## 1589    1 0.0006531679 1.60943791 1.051233e-03
## 1590    1 0.0006531679 1.60943791 1.051233e-03
## 1591    1 0.0010638298 0.99039870 1.053616e-03
## 1592    1 0.0010638298 0.99039870 1.053616e-03
## 1593    1 0.0010638298 0.99039870 1.053616e-03
## 1594    1 0.0010638298 0.99039870 1.053616e-03
## 1595    1 0.0010638298 0.99039870 1.053616e-03
## 1596    1 0.0010638298 0.99039870 1.053616e-03
## 1597    1 0.0010638298 0.99039870 1.053616e-03
## 1598    1 0.0010638298 0.99039870 1.053616e-03
## 1599    2 0.0012437811 0.84729786 1.053853e-03
## 1600    2 0.0012437811 0.84729786 1.053853e-03
## 1601    2 0.0012437811 0.84729786 1.053853e-03
## 1602    1 0.0027932961 0.37729423 1.053895e-03
## 1603    1 0.0027932961 0.37729423 1.053895e-03
## 1604    2 0.0047281324 0.22314355 1.055052e-03
## 1605    3 0.0018867925 0.55961579 1.055879e-03
## 1606    3 0.0018867925 0.55961579 1.055879e-03
## 1607    2 0.0022779043 0.46430561 1.057644e-03
## 1608    2 0.0012578616 0.84729786 1.065783e-03
## 1609    2 0.0012578616 0.84729786 1.065783e-03
## 1610    2 0.0012578616 0.84729786 1.065783e-03
## 1611    4 0.0028248588 0.37729423 1.065803e-03
## 1612    4 0.0028248588 0.37729423 1.065803e-03
## 1613    1 0.0005503577 1.94591015 1.070947e-03
## 1614    1 0.0005503577 1.94591015 1.070947e-03
## 1615    1 0.0005503577 1.94591015 1.070947e-03
## 1616    1 0.0005503577 1.94591015 1.070947e-03
## 1617    1 0.0005503577 1.94591015 1.070947e-03
## 1618    1 0.0005503577 1.94591015 1.070947e-03
## 1619    1 0.0005503577 1.94591015 1.070947e-03
## 1620    1 0.0005503577 1.94591015 1.070947e-03
## 1621    1 0.0005503577 1.94591015 1.070947e-03
## 1622    1 0.0005503577 1.94591015 1.070947e-03
## 1623    1 0.0005503577 1.94591015 1.070947e-03
## 1624    1 0.0005503577 1.94591015 1.070947e-03
## 1625    1 0.0005503577 1.94591015 1.070947e-03
## 1626    1 0.0005503577 1.94591015 1.070947e-03
## 1627    1 0.0005503577 1.94591015 1.070947e-03
## 1628    1 0.0005503577 1.94591015 1.070947e-03
## 1629    1 0.0005503577 1.94591015 1.070947e-03
## 1630    1 0.0005503577 1.94591015 1.070947e-03
## 1631    1 0.0005503577 1.94591015 1.070947e-03
## 1632    1 0.0005503577 1.94591015 1.070947e-03
## 1633    1 0.0005503577 1.94591015 1.070947e-03
## 1634    1 0.0005503577 1.94591015 1.070947e-03
## 1635    1 0.0005503577 1.94591015 1.070947e-03
## 1636    1 0.0005503577 1.94591015 1.070947e-03
## 1637    1 0.0005503577 1.94591015 1.070947e-03
## 1638    1 0.0005503577 1.94591015 1.070947e-03
## 1639    1 0.0005503577 1.94591015 1.070947e-03
## 1640    1 0.0005503577 1.94591015 1.070947e-03
## 1641    1 0.0005503577 1.94591015 1.070947e-03
## 1642    1 0.0005503577 1.94591015 1.070947e-03
## 1643    1 0.0005503577 1.94591015 1.070947e-03
## 1644    1 0.0005503577 1.94591015 1.070947e-03
## 1645    1 0.0005503577 1.94591015 1.070947e-03
## 1646    1 0.0005503577 1.94591015 1.070947e-03
## 1647    1 0.0005503577 1.94591015 1.070947e-03
## 1648    1 0.0005503577 1.94591015 1.070947e-03
## 1649    1 0.0005503577 1.94591015 1.070947e-03
## 1650    1 0.0005503577 1.94591015 1.070947e-03
## 1651    1 0.0005503577 1.94591015 1.070947e-03
## 1652    1 0.0005503577 1.94591015 1.070947e-03
## 1653    1 0.0005503577 1.94591015 1.070947e-03
## 1654    1 0.0005503577 1.94591015 1.070947e-03
## 1655    1 0.0008561644 1.25276297 1.072571e-03
## 1656    1 0.0008561644 1.25276297 1.072571e-03
## 1657    1 0.0008561644 1.25276297 1.072571e-03
## 1658    1 0.0008561644 1.25276297 1.072571e-03
## 1659    1 0.0008561644 1.25276297 1.072571e-03
## 1660    1 0.0008561644 1.25276297 1.072571e-03
## 1661    1 0.0008561644 1.25276297 1.072571e-03
## 1662    1 0.0008561644 1.25276297 1.072571e-03
## 1663    1 0.0008561644 1.25276297 1.072571e-03
## 1664    1 0.0008561644 1.25276297 1.072571e-03
## 1665    1 0.0008561644 1.25276297 1.072571e-03
## 1666    3 0.0031914894 0.33647224 1.073848e-03
## 1667    1 0.0011764706 0.91629073 1.077989e-03
## 1668    1 0.0011764706 0.91629073 1.077989e-03
## 1669    1 0.0011764706 0.91629073 1.077989e-03
## 1670    1 0.0013774105 0.78275934 1.078181e-03
## 1671    1 0.0013774105 0.78275934 1.078181e-03
## 1672    1 0.0013774105 0.78275934 1.078181e-03
## 1673    1 0.0013774105 0.78275934 1.078181e-03
## 1674    1 0.0016233766 0.66497630 1.079507e-03
## 1675    1 0.0016233766 0.66497630 1.079507e-03
## 1676    1 0.0016233766 0.66497630 1.079507e-03
## 1677    3 0.0036363636 0.29725152 1.080915e-03
## 1678    3 0.0021186441 0.51082562 1.082258e-03
## 1679    3 0.0021186441 0.51082562 1.082258e-03
## 1680    1 0.0010121457 1.07044141 1.083443e-03
## 1681    1 0.0010121457 1.07044141 1.083443e-03
## 1682    1 0.0010121457 1.07044141 1.083443e-03
## 1683    1 0.0010121457 1.07044141 1.083443e-03
## 1684    1 0.0010121457 1.07044141 1.083443e-03
## 1685    1 0.0010121457 1.07044141 1.083443e-03
## 1686    1 0.0010121457 1.07044141 1.083443e-03
## 1687    2 0.0010152284 1.07044141 1.086743e-03
## 1688    2 0.0010152284 1.07044141 1.086743e-03
## 1689    2 0.0010152284 1.07044141 1.086743e-03
## 1690    2 0.0010152284 1.07044141 1.086743e-03
## 1691    2 0.0010152284 1.07044141 1.086743e-03
## 1692    2 0.0010152284 1.07044141 1.086743e-03
## 1693    2 0.0021276596 0.51082562 1.086863e-03
## 1694    2 0.0021276596 0.51082562 1.086863e-03
## 1695    2 0.0021276596 0.51082562 1.086863e-03
## 1696    2 0.0021276596 0.51082562 1.086863e-03
## 1697    2 0.0011007155 0.99039870 1.090147e-03
## 1698    2 0.0011007155 0.99039870 1.090147e-03
## 1699    2 0.0011007155 0.99039870 1.090147e-03
## 1700    2 0.0011007155 0.99039870 1.090147e-03
## 1701    1 0.0011013216 0.99039870 1.090747e-03
## 1702    1 0.0011013216 0.99039870 1.090747e-03
## 1703    1 0.0011013216 0.99039870 1.090747e-03
## 1704    1 0.0011013216 0.99039870 1.090747e-03
## 1705    1 0.0011013216 0.99039870 1.090747e-03
## 1706    1 0.0011013216 0.99039870 1.090747e-03
## 1707    2 0.0032467532 0.33647224 1.092442e-03
## 1708    2 0.0032467532 0.33647224 1.092442e-03
## 1709    1 0.0017889088 0.61090908 1.092861e-03
## 1710    1 0.0017889088 0.61090908 1.092861e-03
## 1711    1 0.0017889088 0.61090908 1.092861e-03
## 1712    2 0.0058139535 0.18805223 1.093327e-03
## 1713    2 0.0049140049 0.22314355 1.096529e-03
## 1714    1 0.0006218905 1.76358859 1.096759e-03
## 1715    1 0.0006218905 1.76358859 1.096759e-03
## 1716    1 0.0006218905 1.76358859 1.096759e-03
## 1717    1 0.0006218905 1.76358859 1.096759e-03
## 1718    1 0.0006218905 1.76358859 1.096759e-03
## 1719    1 0.0006218905 1.76358859 1.096759e-03
## 1720    1 0.0006218905 1.76358859 1.096759e-03
## 1721    1 0.0006218905 1.76358859 1.096759e-03
## 1722    1 0.0006218905 1.76358859 1.096759e-03
## 1723    1 0.0006218905 1.76358859 1.096759e-03
## 1724    1 0.0006218905 1.76358859 1.096759e-03
## 1725    1 0.0006218905 1.76358859 1.096759e-03
## 1726    1 0.0006218905 1.76358859 1.096759e-03
## 1727    1 0.0006218905 1.76358859 1.096759e-03
## 1728    1 0.0006218905 1.76358859 1.096759e-03
## 1729    1 0.0006218905 1.76358859 1.096759e-03
## 1730    1 0.0006218905 1.76358859 1.096759e-03
## 1731    1 0.0006218905 1.76358859 1.096759e-03
## 1732    1 0.0006218905 1.76358859 1.096759e-03
## 1733    1 0.0006218905 1.76358859 1.096759e-03
## 1734    1 0.0006218905 1.76358859 1.096759e-03
## 1735    1 0.0006218905 1.76358859 1.096759e-03
## 1736    1 0.0006218905 1.76358859 1.096759e-03
## 1737    1 0.0006218905 1.76358859 1.096759e-03
## 1738    1 0.0006218905 1.76358859 1.096759e-03
## 1739    1 0.0006218905 1.76358859 1.096759e-03
## 1740    1 0.0006218905 1.76358859 1.096759e-03
## 1741    1 0.0029069767 0.37729423 1.096786e-03
## 1742    1 0.0023640662 0.46430561 1.097649e-03
## 1743    1 0.0023640662 0.46430561 1.097649e-03
## 1744    1 0.0023640662 0.46430561 1.097649e-03
## 1745    3 0.0015228426 0.72213472 1.099698e-03
## 1746    3 0.0015228426 0.72213472 1.099698e-03
## 1747    3 0.0015228426 0.72213472 1.099698e-03
## 1748    1 0.0005076142 2.16905370 1.101042e-03
## 1749    1 0.0005076142 2.16905370 1.101042e-03
## 1750    1 0.0005076142 2.16905370 1.101042e-03
## 1751    1 0.0005076142 2.16905370 1.101042e-03
## 1752    1 0.0005076142 2.16905370 1.101042e-03
## 1753    1 0.0005076142 2.16905370 1.101042e-03
## 1754    1 0.0005076142 2.16905370 1.101042e-03
## 1755    1 0.0005076142 2.16905370 1.101042e-03
## 1756    1 0.0005076142 2.16905370 1.101042e-03
## 1757    1 0.0005076142 2.16905370 1.101042e-03
## 1758    1 0.0005076142 2.16905370 1.101042e-03
## 1759    1 0.0005076142 2.16905370 1.101042e-03
## 1760    1 0.0005076142 2.16905370 1.101042e-03
## 1761    1 0.0005076142 2.16905370 1.101042e-03
## 1762    1 0.0005076142 2.16905370 1.101042e-03
## 1763    1 0.0005076142 2.16905370 1.101042e-03
## 1764    1 0.0005076142 2.16905370 1.101042e-03
## 1765    1 0.0005076142 2.16905370 1.101042e-03
## 1766    1 0.0005076142 2.16905370 1.101042e-03
## 1767    1 0.0005076142 2.16905370 1.101042e-03
## 1768    1 0.0005076142 2.16905370 1.101042e-03
## 1769    1 0.0005076142 2.16905370 1.101042e-03
## 1770    1 0.0005076142 2.16905370 1.101042e-03
## 1771    1 0.0005076142 2.16905370 1.101042e-03
## 1772    1 0.0005076142 2.16905370 1.101042e-03
## 1773    1 0.0005076142 2.16905370 1.101042e-03
## 1774    1 0.0005076142 2.16905370 1.101042e-03
## 1775    1 0.0005076142 2.16905370 1.101042e-03
## 1776    1 0.0005076142 2.16905370 1.101042e-03
## 1777    1 0.0005076142 2.16905370 1.101042e-03
## 1778    1 0.0005076142 2.16905370 1.101042e-03
## 1779    1 0.0005076142 2.16905370 1.101042e-03
## 1780    1 0.0005076142 2.16905370 1.101042e-03
## 1781    1 0.0005076142 2.16905370 1.101042e-03
## 1782    1 0.0005076142 2.16905370 1.101042e-03
## 1783    1 0.0005076142 2.16905370 1.101042e-03
## 1784    1 0.0005076142 2.16905370 1.101042e-03
## 1785    1 0.0005076142 2.16905370 1.101042e-03
## 1786    1 0.0005076142 2.16905370 1.101042e-03
## 1787    1 0.0005076142 2.16905370 1.101042e-03
## 1788    1 0.0005076142 2.16905370 1.101042e-03
## 1789    1 0.0005076142 2.16905370 1.101042e-03
## 1790    1 0.0005076142 2.16905370 1.101042e-03
## 1791    1 0.0005076142 2.16905370 1.101042e-03
## 1792    2 0.0014124294 0.78275934 1.105592e-03
## 1793    2 0.0014124294 0.78275934 1.105592e-03
## 1794    5 0.0058823529 0.18805223 1.106190e-03
## 1795    2 0.0013063357 0.84729786 1.106855e-03
## 1796    2 0.0013063357 0.84729786 1.106855e-03
## 1797    1 0.0010341262 1.07044141 1.106971e-03
## 1798    1 0.0010341262 1.07044141 1.106971e-03
## 1799    1 0.0010341262 1.07044141 1.106971e-03
## 1800    1 0.0010341262 1.07044141 1.106971e-03
## 1801    1 0.0010341262 1.07044141 1.106971e-03
## 1802    1 0.0010341262 1.07044141 1.106971e-03
## 1803    1 0.0010341262 1.07044141 1.106971e-03
## 1804    1 0.0010341262 1.07044141 1.106971e-03
## 1805    1 0.0010341262 1.07044141 1.106971e-03
## 1806    1 0.0010341262 1.07044141 1.106971e-03
## 1807    1 0.0026385224 0.41985385 1.107794e-03
## 1808    1 0.0026385224 0.41985385 1.107794e-03
## 1809    6 0.0037313433 0.29725152 1.109147e-03
## 1810    1 0.0006289308 1.76358859 1.109175e-03
## 1811    1 0.0006289308 1.76358859 1.109175e-03
## 1812    1 0.0006289308 1.76358859 1.109175e-03
## 1813    1 0.0006289308 1.76358859 1.109175e-03
## 1814    1 0.0006289308 1.76358859 1.109175e-03
## 1815    1 0.0006289308 1.76358859 1.109175e-03
## 1816    1 0.0006289308 1.76358859 1.109175e-03
## 1817    1 0.0006289308 1.76358859 1.109175e-03
## 1818    1 0.0006289308 1.76358859 1.109175e-03
## 1819    1 0.0006289308 1.76358859 1.109175e-03
## 1820    1 0.0006289308 1.76358859 1.109175e-03
## 1821    1 0.0006289308 1.76358859 1.109175e-03
## 1822    1 0.0006289308 1.76358859 1.109175e-03
## 1823    1 0.0006289308 1.76358859 1.109175e-03
## 1824    1 0.0006289308 1.76358859 1.109175e-03
## 1825    1 0.0006289308 1.76358859 1.109175e-03
## 1826    1 0.0006289308 1.76358859 1.109175e-03
## 1827    1 0.0006289308 1.76358859 1.109175e-03
## 1828    1 0.0006289308 1.76358859 1.109175e-03
## 1829    1 0.0006289308 1.76358859 1.109175e-03
## 1830    1 0.0006289308 1.76358859 1.109175e-03
## 1831    1 0.0006289308 1.76358859 1.109175e-03
## 1832    1 0.0006289308 1.76358859 1.109175e-03
## 1833    1 0.0006289308 1.76358859 1.109175e-03
## 1834    1 0.0012121212 0.91629073 1.110655e-03
## 1835    1 0.0012121212 0.91629073 1.110655e-03
## 1836    1 0.0012121212 0.91629073 1.110655e-03
## 1837    1 0.0012121212 0.91629073 1.110655e-03
## 1838    1 0.0012121212 0.91629073 1.110655e-03
## 1839    1 0.0012121212 0.91629073 1.110655e-03
## 1840    6 0.0033021464 0.33647224 1.111081e-03
## 1841    3 0.0033039648 0.33647224 1.111692e-03
## 1842    3 0.0033039648 0.33647224 1.111692e-03
## 1843    3 0.0033039648 0.33647224 1.111692e-03
## 1844    1 0.0011235955 0.99039870 1.112808e-03
## 1845    1 0.0011235955 0.99039870 1.112808e-03
## 1846    1 0.0011235955 0.99039870 1.112808e-03
## 1847    1 0.0011235955 0.99039870 1.112808e-03
## 1848    1 0.0011235955 0.99039870 1.112808e-03
## 1849    1 0.0011235955 0.99039870 1.112808e-03
## 1850    2 0.0026560425 0.41985385 1.115150e-03
## 1851    1 0.0021929825 0.51082562 1.120232e-03
## 1852    1 0.0021929825 0.51082562 1.120232e-03
## 1853    8 0.0050314465 0.22314355 1.122735e-03
## 1854    2 0.0022026432 0.51082562 1.125167e-03
## 1855    1 0.0013280212 0.84729786 1.125230e-03
## 1856    1 0.0013280212 0.84729786 1.125230e-03
## 1857    1 0.0013280212 0.84729786 1.125230e-03
## 1858    2 0.0024242424 0.46430561 1.125589e-03
## 1859    1 0.0029850746 0.37729423 1.126251e-03
## 1860    1 0.0029850746 0.37729423 1.126251e-03
## 1861    1 0.0029850746 0.37729423 1.126251e-03
## 1862    1 0.0029850746 0.37729423 1.126251e-03
## 1863    7 0.0059931507 0.18805223 1.127025e-03
## 1864    1 0.0011389522 0.99039870 1.128017e-03
## 1865    1 0.0011389522 0.99039870 1.128017e-03
## 1866    1 0.0011389522 0.99039870 1.128017e-03
## 1867    1 0.0011389522 0.99039870 1.128017e-03
## 1868    1 0.0011389522 0.99039870 1.128017e-03
## 1869    1 0.0011389522 0.99039870 1.128017e-03
## 1870    1 0.0011389522 0.99039870 1.128017e-03
## 1871    1 0.0011389522 0.99039870 1.128017e-03
## 1872    1 0.0011389522 0.99039870 1.128017e-03
## 1873    1 0.0013333333 0.84729786 1.129730e-03
## 1874    1 0.0013333333 0.84729786 1.129730e-03
## 1875    1 0.0013333333 0.84729786 1.129730e-03
## 1876    1 0.0013333333 0.84729786 1.129730e-03
## 1877    1 0.0013333333 0.84729786 1.129730e-03
## 1878    1 0.0013333333 0.84729786 1.129730e-03
## 1879    1 0.0013333333 0.84729786 1.129730e-03
## 1880    1 0.0013333333 0.84729786 1.129730e-03
## 1881    1 0.0026954178 0.41985385 1.131682e-03
## 1882    2 0.0020242915 0.55961579 1.132825e-03
## 1883    2 0.0020242915 0.55961579 1.132825e-03
## 1884    2 0.0020242915 0.55961579 1.132825e-03
## 1885    2 0.0020242915 0.55961579 1.132825e-03
## 1886    1 0.0018552876 0.61090908 1.133412e-03
## 1887    1 0.0018552876 0.61090908 1.133412e-03
## 1888    1 0.0018552876 0.61090908 1.133412e-03
## 1889    1 0.0018552876 0.61090908 1.133412e-03
## 1890    3 0.0033707865 0.33647224 1.134176e-03
## 1891    4 0.0020304569 0.55961579 1.136276e-03
## 1892    4 0.0020304569 0.55961579 1.136276e-03
## 1893    1 0.0007062147 1.60943791 1.136609e-03
## 1894    1 0.0007062147 1.60943791 1.136609e-03
## 1895    1 0.0007062147 1.60943791 1.136609e-03
## 1896    1 0.0007062147 1.60943791 1.136609e-03
## 1897    1 0.0007062147 1.60943791 1.136609e-03
## 1898    1 0.0007062147 1.60943791 1.136609e-03
## 1899    1 0.0007062147 1.60943791 1.136609e-03
## 1900    1 0.0007062147 1.60943791 1.136609e-03
## 1901    1 0.0007062147 1.60943791 1.136609e-03
## 1902    1 0.0007062147 1.60943791 1.136609e-03
## 1903    1 0.0007062147 1.60943791 1.136609e-03
## 1904    1 0.0007062147 1.60943791 1.136609e-03
## 1905    1 0.0007062147 1.60943791 1.136609e-03
## 1906    1 0.0007062147 1.60943791 1.136609e-03
## 1907    1 0.0007062147 1.60943791 1.136609e-03
## 1908    1 0.0007062147 1.60943791 1.136609e-03
## 1909    1 0.0007062147 1.60943791 1.136609e-03
## 1910    1 0.0017123288 0.66497630 1.138658e-03
## 1911    1 0.0017123288 0.66497630 1.138658e-03
## 1912    1 0.0017123288 0.66497630 1.138658e-03
## 1913    1 0.0010638298 1.07044141 1.138767e-03
## 1914    1 0.0010638298 1.07044141 1.138767e-03
## 1915    1 0.0010638298 1.07044141 1.138767e-03
## 1916    1 0.0010638298 1.07044141 1.138767e-03
## 1917    1 0.0010638298 1.07044141 1.138767e-03
## 1918    1 0.0010638298 1.07044141 1.138767e-03
## 1919    1 0.0010638298 1.07044141 1.138767e-03
## 1920    2 0.0012437811 0.91629073 1.139665e-03
## 1921    2 0.0012437811 0.91629073 1.139665e-03
## 1922    2 0.0012437811 0.91629073 1.139665e-03
## 1923    2 0.0012437811 0.91629073 1.139665e-03
## 1924    2 0.0012437811 0.91629073 1.139665e-03
## 1925    2 0.0012437811 0.91629073 1.139665e-03
## 1926    3 0.0018656716 0.61090908 1.139756e-03
## 1927    3 0.0018656716 0.61090908 1.139756e-03
## 1928    1 0.0024570025 0.46430561 1.140800e-03
## 1929    1 0.0024570025 0.46430561 1.140800e-03
## 1930    1 0.0060975610 0.18805223 1.146660e-03
## 1931    1 0.0006531679 1.76358859 1.151919e-03
## 1932    1 0.0006531679 1.76358859 1.151919e-03
## 1933    1 0.0006531679 1.76358859 1.151919e-03
## 1934    1 0.0006531679 1.76358859 1.151919e-03
## 1935    1 0.0006531679 1.76358859 1.151919e-03
## 1936    1 0.0006531679 1.76358859 1.151919e-03
## 1937    1 0.0006531679 1.76358859 1.151919e-03
## 1938    1 0.0006531679 1.76358859 1.151919e-03
## 1939    1 0.0006531679 1.76358859 1.151919e-03
## 1940    1 0.0006531679 1.76358859 1.151919e-03
## 1941    1 0.0006531679 1.76358859 1.151919e-03
## 1942    1 0.0006531679 1.76358859 1.151919e-03
## 1943    1 0.0006531679 1.76358859 1.151919e-03
## 1944    1 0.0006531679 1.76358859 1.151919e-03
## 1945    1 0.0006531679 1.76358859 1.151919e-03
## 1946    1 0.0006531679 1.76358859 1.151919e-03
## 1947    1 0.0006531679 1.76358859 1.151919e-03
## 1948    1 0.0006531679 1.76358859 1.151919e-03
## 1949    1 0.0006531679 1.76358859 1.151919e-03
## 1950    1 0.0006531679 1.76358859 1.151919e-03
## 1951    1 0.0006531679 1.76358859 1.151919e-03
## 1952    1 0.0006531679 1.76358859 1.151919e-03
## 1953    2 0.0034246575 0.33647224 1.152302e-03
## 1954    1 0.0034246575 0.33647224 1.152302e-03
## 1955    1 0.0034246575 0.33647224 1.152302e-03
## 1956    2 0.0012578616 0.91629073 1.152567e-03
## 1957    2 0.0012578616 0.91629073 1.152567e-03
## 1958    2 0.0012578616 0.91629073 1.152567e-03
## 1959    2 0.0012578616 0.91629073 1.152567e-03
## 1960    2 0.0012578616 0.91629073 1.152567e-03
## 1961    2 0.0012578616 0.91629073 1.152567e-03
## 1962    2 0.0012578616 0.91629073 1.152567e-03
## 1963    2 0.0012578616 0.91629073 1.152567e-03
## 1964    5 0.0051706308 0.22314355 1.153793e-03
## 1965    4 0.0024875622 0.46430561 1.154989e-03
## 1966    4 0.0024875622 0.46430561 1.154989e-03
## 1967    2 0.0020682523 0.55961579 1.157427e-03
## 1968    1 0.0008561644 1.35812348 1.162777e-03
## 1969    1 0.0008561644 1.35812348 1.162777e-03
## 1970    1 0.0008561644 1.35812348 1.162777e-03
## 1971    1 0.0008561644 1.35812348 1.162777e-03
## 1972    1 0.0008561644 1.35812348 1.162777e-03
## 1973    1 0.0008561644 1.35812348 1.162777e-03
## 1974    1 0.0008561644 1.35812348 1.162777e-03
## 1975    1 0.0008561644 1.35812348 1.162777e-03
## 1976    1 0.0008561644 1.35812348 1.162777e-03
## 1977    1 0.0008561644 1.35812348 1.162777e-03
## 1978    1 0.0008561644 1.35812348 1.162777e-03
## 1979    2 0.0022779043 0.51082562 1.163612e-03
## 1980    2 0.0022779043 0.51082562 1.163612e-03
## 1981    1 0.0034602076 0.33647224 1.164264e-03
## 1982    6 0.0039190072 0.29725152 1.164931e-03
## 1983    1 0.0011764706 0.99039870 1.165175e-03
## 1984    1 0.0011764706 0.99039870 1.165175e-03
## 1985    8 0.0052253429 0.22314355 1.166002e-03
## 1986    4 0.0044943820 0.25951120 1.166342e-03
## 1987    1 0.0013774105 0.84729786 1.167077e-03
## 1988    1 0.0013774105 0.84729786 1.167077e-03
## 1989    1 0.0013774105 0.84729786 1.167077e-03
## 1990    1 0.0013774105 0.84729786 1.167077e-03
## 1991    4 0.0025157233 0.46430561 1.168064e-03
## 1992   10 0.0062189055 0.18805223 1.169479e-03
## 1993    3 0.0031023785 0.37729423 1.170510e-03
## 1994    1 0.0010121457 1.15745279 1.171511e-03
## 1995    1 0.0010121457 1.15745279 1.171511e-03
## 1996    1 0.0010121457 1.15745279 1.171511e-03
## 1997    1 0.0010121457 1.15745279 1.171511e-03
## 1998    1 0.0010121457 1.15745279 1.171511e-03
## 1999    1 0.0016233766 0.72213472 1.172297e-03
## 2000    1 0.0016233766 0.72213472 1.172297e-03
## 2001    1 0.0016233766 0.72213472 1.172297e-03
## 2002    1 0.0027932961 0.41985385 1.172776e-03
## 2003    5 0.0031094527 0.37729423 1.173179e-03
## 2004    2 0.0010152284 1.15745279 1.175079e-03
## 2005    2 0.0010152284 1.15745279 1.175079e-03
## 2006    2 0.0010152284 1.15745279 1.175079e-03
## 2007    2 0.0010152284 1.15745279 1.175079e-03
## 2008    2 0.0010152284 1.15745279 1.175079e-03
## 2009    2 0.0011007155 1.07044141 1.178251e-03
## 2010    2 0.0011007155 1.07044141 1.178251e-03
## 2011    2 0.0011007155 1.07044141 1.178251e-03
## 2012    2 0.0011007155 1.07044141 1.178251e-03
## 2013    2 0.0011007155 1.07044141 1.178251e-03
## 2014    2 0.0011007155 1.07044141 1.178251e-03
## 2015    2 0.0011007155 1.07044141 1.178251e-03
## 2016    2 0.0011007155 1.07044141 1.178251e-03
## 2017    2 0.0011007155 1.07044141 1.178251e-03
## 2018    1 0.0011013216 1.07044141 1.178900e-03
## 2019    1 0.0011013216 1.07044141 1.178900e-03
## 2020    1 0.0011013216 1.07044141 1.178900e-03
## 2021    1 0.0011013216 1.07044141 1.178900e-03
## 2022    1 0.0011013216 1.07044141 1.178900e-03
## 2023    1 0.0011013216 1.07044141 1.178900e-03
## 2024    1 0.0045454545 0.25951120 1.179596e-03
## 2025    3 0.0021186441 0.55961579 1.185627e-03
## 2026    3 0.0021186441 0.55961579 1.185627e-03
## 2027    5 0.0031446541 0.37729423 1.186460e-03
## 2028    7 0.0045721750 0.25951120 1.186531e-03
## 2029    1 0.0017889088 0.66497630 1.189582e-03
## 2030    1 0.0017889088 0.66497630 1.189582e-03
## 2031    2 0.0021276596 0.55961579 1.190672e-03
## 2032    2 0.0021276596 0.55961579 1.190672e-03
## 2033    3 0.0015228426 0.78275934 1.192019e-03
## 2034    3 0.0016510732 0.72213472 1.192297e-03
## 2035    1 0.0005503577 2.16905370 1.193755e-03
## 2036    1 0.0005503577 2.16905370 1.193755e-03
## 2037    1 0.0005503577 2.16905370 1.193755e-03
## 2038    1 0.0005503577 2.16905370 1.193755e-03
## 2039    1 0.0005503577 2.16905370 1.193755e-03
## 2040    1 0.0005503577 2.16905370 1.193755e-03
## 2041    1 0.0005503577 2.16905370 1.193755e-03
## 2042    1 0.0005503577 2.16905370 1.193755e-03
## 2043    1 0.0005503577 2.16905370 1.193755e-03
## 2044    1 0.0005503577 2.16905370 1.193755e-03
## 2045    1 0.0005503577 2.16905370 1.193755e-03
## 2046    1 0.0005503577 2.16905370 1.193755e-03
## 2047    1 0.0005503577 2.16905370 1.193755e-03
## 2048    1 0.0005503577 2.16905370 1.193755e-03
## 2049    1 0.0005503577 2.16905370 1.193755e-03
## 2050    1 0.0005503577 2.16905370 1.193755e-03
## 2051    1 0.0005503577 2.16905370 1.193755e-03
## 2052    1 0.0005503577 2.16905370 1.193755e-03
## 2053    1 0.0005503577 2.16905370 1.193755e-03
## 2054    1 0.0005503577 2.16905370 1.193755e-03
## 2055    1 0.0005503577 2.16905370 1.193755e-03
## 2056    1 0.0005503577 2.16905370 1.193755e-03
## 2057    1 0.0005503577 2.16905370 1.193755e-03
## 2058    1 0.0005503577 2.16905370 1.193755e-03
## 2059    1 0.0005503577 2.16905370 1.193755e-03
## 2060    1 0.0005503577 2.16905370 1.193755e-03
## 2061    1 0.0005503577 2.16905370 1.193755e-03
## 2062    1 0.0005503577 2.16905370 1.193755e-03
## 2063    1 0.0005503577 2.16905370 1.193755e-03
## 2064    1 0.0005503577 2.16905370 1.193755e-03
## 2065    1 0.0005503577 2.16905370 1.193755e-03
## 2066    1 0.0005503577 2.16905370 1.193755e-03
## 2067    1 0.0005503577 2.16905370 1.193755e-03
## 2068    1 0.0005503577 2.16905370 1.193755e-03
## 2069    1 0.0005503577 2.16905370 1.193755e-03
## 2070    1 0.0005503577 2.16905370 1.193755e-03
## 2071    1 0.0005503577 2.16905370 1.193755e-03
## 2072    1 0.0005503577 2.16905370 1.193755e-03
## 2073    1 0.0005503577 2.16905370 1.193755e-03
## 2074    1 0.0005503577 2.16905370 1.193755e-03
## 2075    1 0.0005503577 2.16905370 1.193755e-03
## 2076    1 0.0005503577 2.16905370 1.193755e-03
## 2077    1 0.0005503577 2.16905370 1.193755e-03
## 2078    1 0.0005503577 2.16905370 1.193755e-03
## 2079    1 0.0005503577 2.16905370 1.193755e-03
## 2080    1 0.0005503577 2.16905370 1.193755e-03
## 2081    1 0.0005503577 2.16905370 1.193755e-03
## 2082    1 0.0005503577 2.16905370 1.193755e-03
## 2083    1 0.0005503577 2.16905370 1.193755e-03
## 2084    1 0.0005503577 2.16905370 1.193755e-03
## 2085    1 0.0005503577 2.16905370 1.193755e-03
## 2086    1 0.0005503577 2.16905370 1.193755e-03
## 2087    1 0.0005503577 2.16905370 1.193755e-03
## 2088    1 0.0005503577 2.16905370 1.193755e-03
## 2089    1 0.0005503577 2.16905370 1.193755e-03
## 2090    1 0.0005503577 2.16905370 1.193755e-03
## 2091    1 0.0005503577 2.16905370 1.193755e-03
## 2092    1 0.0005503577 2.16905370 1.193755e-03
## 2093    1 0.0005503577 2.16905370 1.193755e-03
## 2094    1 0.0005503577 2.16905370 1.193755e-03
## 2095    2 0.0014124294 0.84729786 1.196748e-03
## 2096    2 0.0014124294 0.84729786 1.196748e-03
## 2097    2 0.0014124294 0.84729786 1.196748e-03
## 2098    1 0.0010341262 1.15745279 1.196952e-03
## 2099    1 0.0010341262 1.15745279 1.196952e-03
## 2100    1 0.0010341262 1.15745279 1.196952e-03
## 2101    1 0.0010341262 1.15745279 1.196952e-03
## 2102    1 0.0010341262 1.15745279 1.196952e-03
## 2103    1 0.0010341262 1.15745279 1.196952e-03
## 2104    1 0.0010341262 1.15745279 1.196952e-03
## 2105    1 0.0010341262 1.15745279 1.196952e-03
## 2106    1 0.0010341262 1.15745279 1.196952e-03
## 2107    1 0.0010341262 1.15745279 1.196952e-03
## 2108    1 0.0010341262 1.15745279 1.196952e-03
## 2109    1 0.0010341262 1.15745279 1.196952e-03
## 2110    2 0.0013063357 0.91629073 1.196983e-03
## 2111    2 0.0013063357 0.91629073 1.196983e-03
## 2112    2 0.0013063357 0.91629073 1.196983e-03
## 2113    2 0.0013063357 0.91629073 1.196983e-03
## 2114    2 0.0013063357 0.91629073 1.196983e-03
## 2115    2 0.0013063357 0.91629073 1.196983e-03
## 2116    2 0.0013063357 0.91629073 1.196983e-03
## 2117    2 0.0013063357 0.91629073 1.196983e-03
## 2118    3 0.0019595036 0.61090908 1.197079e-03
## 2119    3 0.0019595036 0.61090908 1.197079e-03
## 2120    3 0.0019595036 0.61090908 1.197079e-03
## 2121    3 0.0019595036 0.61090908 1.197079e-03
## 2122    6 0.0063829787 0.18805223 1.200333e-03
## 2123    1 0.0012121212 0.99039870 1.200483e-03
## 2124    1 0.0012121212 0.99039870 1.200483e-03
## 2125    1 0.0012121212 0.99039870 1.200483e-03
## 2126    1 0.0012121212 0.99039870 1.200483e-03
## 2127    1 0.0012121212 0.99039870 1.200483e-03
## 2128    1 0.0012121212 0.99039870 1.200483e-03
## 2129    1 0.0012121212 0.99039870 1.200483e-03
## 2130    1 0.0012121212 0.99039870 1.200483e-03
## 2131    2 0.0023529412 0.51082562 1.201943e-03
## 2132    1 0.0011235955 1.07044141 1.202743e-03
## 2133    1 0.0011235955 1.07044141 1.202743e-03
## 2134    1 0.0011235955 1.07044141 1.202743e-03
## 2135    1 0.0011235955 1.07044141 1.202743e-03
## 2136    2 0.0035778175 0.33647224 1.203836e-03
## 2137    2 0.0035778175 0.33647224 1.203836e-03
## 2138    2 0.0035778175 0.33647224 1.203836e-03
## 2139    3 0.0031914894 0.37729423 1.204131e-03
## 2140    1 0.0006218905 1.94591015 1.210143e-03
## 2141    1 0.0006218905 1.94591015 1.210143e-03
## 2142    1 0.0006218905 1.94591015 1.210143e-03
## 2143    1 0.0006218905 1.94591015 1.210143e-03
## 2144    1 0.0006218905 1.94591015 1.210143e-03
## 2145    1 0.0006218905 1.94591015 1.210143e-03
## 2146    1 0.0006218905 1.94591015 1.210143e-03
## 2147    1 0.0006218905 1.94591015 1.210143e-03
## 2148    1 0.0006218905 1.94591015 1.210143e-03
## 2149    1 0.0006218905 1.94591015 1.210143e-03
## 2150    1 0.0006218905 1.94591015 1.210143e-03
## 2151    1 0.0006218905 1.94591015 1.210143e-03
## 2152    1 0.0006218905 1.94591015 1.210143e-03
## 2153    1 0.0006218905 1.94591015 1.210143e-03
## 2154    1 0.0006218905 1.94591015 1.210143e-03
## 2155    1 0.0006218905 1.94591015 1.210143e-03
## 2156    1 0.0006218905 1.94591015 1.210143e-03
## 2157    1 0.0006218905 1.94591015 1.210143e-03
## 2158    1 0.0006218905 1.94591015 1.210143e-03
## 2159    1 0.0006218905 1.94591015 1.210143e-03
## 2160    1 0.0006218905 1.94591015 1.210143e-03
## 2161    1 0.0006218905 1.94591015 1.210143e-03
## 2162    1 0.0006218905 1.94591015 1.210143e-03
## 2163    1 0.0006218905 1.94591015 1.210143e-03
## 2164    1 0.0006218905 1.94591015 1.210143e-03
## 2165    1 0.0006218905 1.94591015 1.210143e-03
## 2166    1 0.0006218905 1.94591015 1.210143e-03
## 2167    1 0.0006218905 1.94591015 1.210143e-03
## 2168    1 0.0006218905 1.94591015 1.210143e-03
## 2169    1 0.0006218905 1.94591015 1.210143e-03
## 2170    1 0.0006218905 1.94591015 1.210143e-03
## 2171    1 0.0006218905 1.94591015 1.210143e-03
## 2172    1 0.0006218905 1.94591015 1.210143e-03
## 2173    1 0.0006218905 1.94591015 1.210143e-03
## 2174    1 0.0006218905 1.94591015 1.210143e-03
## 2175    1 0.0013280212 0.91629073 1.216854e-03
## 2176    1 0.0013280212 0.91629073 1.216854e-03
## 2177    1 0.0013280212 0.91629073 1.216854e-03
## 2178    1 0.0013280212 0.91629073 1.216854e-03
## 2179    1 0.0013280212 0.91629073 1.216854e-03
## 2180    1 0.0011389522 1.07044141 1.219182e-03
## 2181    1 0.0011389522 1.07044141 1.219182e-03
## 2182    1 0.0011389522 1.07044141 1.219182e-03
## 2183    1 0.0011389522 1.07044141 1.219182e-03
## 2184    1 0.0029069767 0.41985385 1.220505e-03
## 2185    4 0.0064935065 0.18805223 1.221118e-03
## 2186    1 0.0013333333 0.91629073 1.221721e-03
## 2187    1 0.0013333333 0.91629073 1.221721e-03
## 2188    1 0.0013333333 0.91629073 1.221721e-03
## 2189    1 0.0013333333 0.91629073 1.221721e-03
## 2190    1 0.0013333333 0.91629073 1.221721e-03
## 2191    1 0.0013333333 0.91629073 1.221721e-03
## 2192    1 0.0013333333 0.91629073 1.221721e-03
## 2193    1 0.0013333333 0.91629073 1.221721e-03
## 2194    3 0.0036363636 0.33647224 1.223535e-03
## 2195    3 0.0036363636 0.33647224 1.223535e-03
## 2196    1 0.0006289308 1.94591015 1.223843e-03
## 2197    1 0.0006289308 1.94591015 1.223843e-03
## 2198    1 0.0006289308 1.94591015 1.223843e-03
## 2199    1 0.0006289308 1.94591015 1.223843e-03
## 2200    1 0.0006289308 1.94591015 1.223843e-03
## 2201    1 0.0006289308 1.94591015 1.223843e-03
## 2202    1 0.0006289308 1.94591015 1.223843e-03
## 2203    1 0.0006289308 1.94591015 1.223843e-03
## 2204    1 0.0006289308 1.94591015 1.223843e-03
## 2205    1 0.0006289308 1.94591015 1.223843e-03
## 2206    1 0.0006289308 1.94591015 1.223843e-03
## 2207    1 0.0006289308 1.94591015 1.223843e-03
## 2208    1 0.0006289308 1.94591015 1.223843e-03
## 2209    1 0.0006289308 1.94591015 1.223843e-03
## 2210    1 0.0006289308 1.94591015 1.223843e-03
## 2211    1 0.0006289308 1.94591015 1.223843e-03
## 2212    1 0.0006289308 1.94591015 1.223843e-03
## 2213    1 0.0006289308 1.94591015 1.223843e-03
## 2214    1 0.0006289308 1.94591015 1.223843e-03
## 2215    1 0.0006289308 1.94591015 1.223843e-03
## 2216    1 0.0006289308 1.94591015 1.223843e-03
## 2217    1 0.0006289308 1.94591015 1.223843e-03
## 2218    1 0.0006289308 1.94591015 1.223843e-03
## 2219    1 0.0006289308 1.94591015 1.223843e-03
## 2220    1 0.0006289308 1.94591015 1.223843e-03
## 2221    1 0.0006289308 1.94591015 1.223843e-03
## 2222    1 0.0006289308 1.94591015 1.223843e-03
## 2223    1 0.0006289308 1.94591015 1.223843e-03
## 2224    1 0.0006289308 1.94591015 1.223843e-03
## 2225    1 0.0006289308 1.94591015 1.223843e-03
## 2226    1 0.0006289308 1.94591015 1.223843e-03
## 2227    1 0.0006289308 1.94591015 1.223843e-03
## 2228    1 0.0006289308 1.94591015 1.223843e-03
## 2229    1 0.0006289308 1.94591015 1.223843e-03
## 2230    2 0.0032467532 0.37729423 1.224981e-03
## 2231    1 0.0026385224 0.46430561 1.225081e-03
## 2232    1 0.0026385224 0.46430561 1.225081e-03
## 2233    2 0.0047281324 0.25951120 1.227003e-03
## 2234    1 0.0021929825 0.55961579 1.227228e-03
## 2235    1 0.0021929825 0.55961579 1.227228e-03
## 2236    1 0.0021929825 0.55961579 1.227228e-03
## 2237    4 0.0041365047 0.29725152 1.229582e-03
## 2238    1 0.0010638298 1.15745279 1.231333e-03
## 2239    1 0.0010638298 1.15745279 1.231333e-03
## 2240    1 0.0010638298 1.15745279 1.231333e-03
## 2241    1 0.0010638298 1.15745279 1.231333e-03
## 2242    1 0.0010638298 1.15745279 1.231333e-03
## 2243    1 0.0010638298 1.15745279 1.231333e-03
## 2244    1 0.0010638298 1.15745279 1.231333e-03
## 2245    1 0.0010638298 1.15745279 1.231333e-03
## 2246    2 0.0012437811 0.99039870 1.231839e-03
## 2247    4 0.0022014309 0.55961579 1.231956e-03
## 2248    2 0.0022026432 0.55961579 1.232634e-03
## 2249    2 0.0022026432 0.55961579 1.232634e-03
## 2250    1 0.0018552876 0.66497630 1.233722e-03
## 2251    2 0.0017123288 0.72213472 1.236532e-03
## 2252    2 0.0017123288 0.72213472 1.236532e-03
## 2253    2 0.0017123288 0.72213472 1.236532e-03
## 2254    1 0.0017123288 0.72213472 1.236532e-03
## 2255    1 0.0017123288 0.72213472 1.236532e-03
## 2256    1 0.0017123288 0.72213472 1.236532e-03
## 2257    2 0.0020242915 0.61090908 1.236658e-03
## 2258    2 0.0020242915 0.61090908 1.236658e-03
## 2259    2 0.0026666667 0.46430561 1.238148e-03
## 2260    2 0.0026666667 0.46430561 1.238148e-03
## 2261    2 0.0024242424 0.51082562 1.238365e-03
## 2262    3 0.0018656716 0.66497630 1.240627e-03
## 2263    1 0.0007062147 1.76358859 1.245472e-03
## 2264    1 0.0007062147 1.76358859 1.245472e-03
## 2265    1 0.0007062147 1.76358859 1.245472e-03
## 2266    1 0.0007062147 1.76358859 1.245472e-03
## 2267    1 0.0007062147 1.76358859 1.245472e-03
## 2268    1 0.0007062147 1.76358859 1.245472e-03
## 2269    1 0.0007062147 1.76358859 1.245472e-03
## 2270    1 0.0007062147 1.76358859 1.245472e-03
## 2271    1 0.0007062147 1.76358859 1.245472e-03
## 2272    1 0.0007062147 1.76358859 1.245472e-03
## 2273    1 0.0007062147 1.76358859 1.245472e-03
## 2274    1 0.0007062147 1.76358859 1.245472e-03
## 2275    1 0.0007062147 1.76358859 1.245472e-03
## 2276    1 0.0007062147 1.76358859 1.245472e-03
## 2277    1 0.0007062147 1.76358859 1.245472e-03
## 2278    1 0.0007062147 1.76358859 1.245472e-03
## 2279    1 0.0007062147 1.76358859 1.245472e-03
## 2280    1 0.0007062147 1.76358859 1.245472e-03
## 2281    1 0.0007062147 1.76358859 1.245472e-03
## 2282    1 0.0007062147 1.76358859 1.245472e-03
## 2283    1 0.0007062147 1.76358859 1.245472e-03
## 2284    1 0.0007062147 1.76358859 1.245472e-03
## 2285    2 0.0012578616 0.99039870 1.245785e-03
## 2286    2 0.0012578616 0.99039870 1.245785e-03
## 2287    2 0.0012578616 0.99039870 1.245785e-03
## 2288    2 0.0012578616 0.99039870 1.245785e-03
## 2289    1 0.0005076142 2.45673577 1.247074e-03
## 2290    1 0.0005076142 2.45673577 1.247074e-03
## 2291    1 0.0005076142 2.45673577 1.247074e-03
## 2292    1 0.0005076142 2.45673577 1.247074e-03
## 2293    1 0.0005076142 2.45673577 1.247074e-03
## 2294    1 0.0005076142 2.45673577 1.247074e-03
## 2295    1 0.0005076142 2.45673577 1.247074e-03
## 2296    1 0.0005076142 2.45673577 1.247074e-03
## 2297    1 0.0005076142 2.45673577 1.247074e-03
## 2298    1 0.0005076142 2.45673577 1.247074e-03
## 2299    1 0.0005076142 2.45673577 1.247074e-03
## 2300    1 0.0005076142 2.45673577 1.247074e-03
## 2301    1 0.0005076142 2.45673577 1.247074e-03
## 2302    1 0.0005076142 2.45673577 1.247074e-03
## 2303    1 0.0005076142 2.45673577 1.247074e-03
## 2304    1 0.0005076142 2.45673577 1.247074e-03
## 2305    1 0.0005076142 2.45673577 1.247074e-03
## 2306    1 0.0005076142 2.45673577 1.247074e-03
## 2307    1 0.0005076142 2.45673577 1.247074e-03
## 2308    1 0.0005076142 2.45673577 1.247074e-03
## 2309    1 0.0005076142 2.45673577 1.247074e-03
## 2310    1 0.0005076142 2.45673577 1.247074e-03
## 2311    1 0.0005076142 2.45673577 1.247074e-03
## 2312    1 0.0005076142 2.45673577 1.247074e-03
## 2313    1 0.0005076142 2.45673577 1.247074e-03
## 2314    1 0.0005076142 2.45673577 1.247074e-03
## 2315    1 0.0005076142 2.45673577 1.247074e-03
## 2316    1 0.0005076142 2.45673577 1.247074e-03
## 2317    1 0.0005076142 2.45673577 1.247074e-03
## 2318    1 0.0005076142 2.45673577 1.247074e-03
## 2319    1 0.0005076142 2.45673577 1.247074e-03
## 2320    1 0.0005076142 2.45673577 1.247074e-03
## 2321    1 0.0005076142 2.45673577 1.247074e-03
## 2322    1 0.0005076142 2.45673577 1.247074e-03
## 2323    1 0.0005076142 2.45673577 1.247074e-03
## 2324    1 0.0005076142 2.45673577 1.247074e-03
## 2325    1 0.0005076142 2.45673577 1.247074e-03
## 2326    1 0.0005076142 2.45673577 1.247074e-03
## 2327    1 0.0005076142 2.45673577 1.247074e-03
## 2328    1 0.0005076142 2.45673577 1.247074e-03
## 2329    1 0.0005076142 2.45673577 1.247074e-03
## 2330    1 0.0005076142 2.45673577 1.247074e-03
## 2331    1 0.0005076142 2.45673577 1.247074e-03
## 2332    1 0.0005076142 2.45673577 1.247074e-03
## 2333    1 0.0005076142 2.45673577 1.247074e-03
## 2334    1 0.0005076142 2.45673577 1.247074e-03
## 2335    1 0.0005076142 2.45673577 1.247074e-03
## 2336    1 0.0005076142 2.45673577 1.247074e-03
## 2337    1 0.0005076142 2.45673577 1.247074e-03
## 2338    1 0.0005076142 2.45673577 1.247074e-03
## 2339    1 0.0005076142 2.45673577 1.247074e-03
## 2340    1 0.0005076142 2.45673577 1.247074e-03
## 2341    2 0.0037105751 0.33647224 1.248506e-03
## 2342    2 0.0037105751 0.33647224 1.248506e-03
## 2343    1 0.0026954178 0.46430561 1.251498e-03
## 2344    1 0.0026954178 0.46430561 1.251498e-03
## 2345    1 0.0029850746 0.41985385 1.253295e-03
## 2346    1 0.0029850746 0.41985385 1.253295e-03
## 2347    1 0.0024570025 0.51082562 1.255100e-03
## 2348    1 0.0024570025 0.51082562 1.255100e-03
## 2349    2 0.0022471910 0.55961579 1.257564e-03
## 2350    2 0.0022471910 0.55961579 1.257564e-03
## 2351    2 0.0022471910 0.55961579 1.257564e-03
## 2352    4 0.0048484848 0.25951120 1.258236e-03
## 2353    1 0.0011764706 1.07044141 1.259343e-03
## 2354    1 0.0011764706 1.07044141 1.259343e-03
## 2355    1 0.0011764706 1.07044141 1.259343e-03
## 2356    1 0.0011764706 1.07044141 1.259343e-03
## 2357    1 0.0011764706 1.07044141 1.259343e-03
## 2358    1 0.0011764706 1.07044141 1.259343e-03
## 2359    1 0.0011764706 1.07044141 1.259343e-03
## 2360    8 0.0056497175 0.22314355 1.260698e-03
## 2361    1 0.0013774105 0.91629073 1.262108e-03
## 2362    1 0.0013774105 0.91629073 1.262108e-03
## 2363    1 0.0013774105 0.91629073 1.262108e-03
## 2364    1 0.0013774105 0.91629073 1.262108e-03
## 2365    1 0.0013774105 0.91629073 1.262108e-03
## 2366    1 0.0013774105 0.91629073 1.262108e-03
## 2367    2 0.0020682523 0.61090908 1.263514e-03
## 2368    2 0.0020682523 0.61090908 1.263514e-03
## 2369    1 0.0008561644 1.47590652 1.263619e-03
## 2370    1 0.0008561644 1.47590652 1.263619e-03
## 2371    1 0.0008561644 1.47590652 1.263619e-03
## 2372    1 0.0008561644 1.47590652 1.263619e-03
## 2373    1 0.0008561644 1.47590652 1.263619e-03
## 2374    1 0.0008561644 1.47590652 1.263619e-03
## 2375    1 0.0008561644 1.47590652 1.263619e-03
## 2376    1 0.0008561644 1.47590652 1.263619e-03
## 2377    1 0.0008561644 1.47590652 1.263619e-03
## 2378    1 0.0008561644 1.47590652 1.263619e-03
## 2379    1 0.0008561644 1.47590652 1.263619e-03
## 2380    1 0.0008561644 1.47590652 1.263619e-03
## 2381    1 0.0008561644 1.47590652 1.263619e-03
## 2382    3 0.0048701299 0.25951120 1.263853e-03
## 2383    3 0.0048701299 0.25951120 1.263853e-03
## 2384    4 0.0042553191 0.29725152 1.264900e-03
## 2385    1 0.0010121457 1.25276297 1.267979e-03
## 2386    1 0.0010121457 1.25276297 1.267979e-03
## 2387    1 0.0010121457 1.25276297 1.267979e-03
## 2388    1 0.0010121457 1.25276297 1.267979e-03
## 2389    1 0.0010121457 1.25276297 1.267979e-03
## 2390    1 0.0010121457 1.25276297 1.267979e-03
## 2391    1 0.0010121457 1.25276297 1.267979e-03
## 2392    1 0.0010121457 1.25276297 1.267979e-03
## 2393    1 0.0010121457 1.25276297 1.267979e-03
## 2394    1 0.0010121457 1.25276297 1.267979e-03
## 2395    1 0.0010121457 1.25276297 1.267979e-03
## 2396    1 0.0010121457 1.25276297 1.267979e-03
## 2397    1 0.0016233766 0.78275934 1.270713e-03
## 2398    1 0.0016233766 0.78275934 1.270713e-03
## 2399    1 0.0016233766 0.78275934 1.270713e-03
## 2400    1 0.0016233766 0.78275934 1.270713e-03
## 2401    1 0.0006531679 1.94591015 1.271006e-03
## 2402    1 0.0006531679 1.94591015 1.271006e-03
## 2403    1 0.0006531679 1.94591015 1.271006e-03
## 2404    1 0.0006531679 1.94591015 1.271006e-03
## 2405    1 0.0006531679 1.94591015 1.271006e-03
## 2406    1 0.0006531679 1.94591015 1.271006e-03
## 2407    1 0.0006531679 1.94591015 1.271006e-03
## 2408    1 0.0006531679 1.94591015 1.271006e-03
## 2409    1 0.0006531679 1.94591015 1.271006e-03
## 2410    1 0.0006531679 1.94591015 1.271006e-03
## 2411    1 0.0006531679 1.94591015 1.271006e-03
## 2412    1 0.0006531679 1.94591015 1.271006e-03
## 2413    1 0.0006531679 1.94591015 1.271006e-03
## 2414    1 0.0006531679 1.94591015 1.271006e-03
## 2415    1 0.0006531679 1.94591015 1.271006e-03
## 2416    1 0.0006531679 1.94591015 1.271006e-03
## 2417    3 0.0033707865 0.37729423 1.271778e-03
## 2418    2 0.0010152284 1.25276297 1.271841e-03
## 2419    2 0.0010152284 1.25276297 1.271841e-03
## 2420    2 0.0010152284 1.25276297 1.271841e-03
## 2421    2 0.0010152284 1.25276297 1.271841e-03
## 2422    2 0.0010152284 1.25276297 1.271841e-03
## 2423    2 0.0010152284 1.25276297 1.271841e-03
## 2424    2 0.0010152284 1.25276297 1.271841e-03
## 2425    2 0.0010152284 1.25276297 1.271841e-03
## 2426    2 0.0010152284 1.25276297 1.271841e-03
## 2427    1 0.0024937656 0.51082562 1.273879e-03
## 2428    1 0.0024937656 0.51082562 1.273879e-03
## 2429    2 0.0011007155 1.15745279 1.274026e-03
## 2430    2 0.0011007155 1.15745279 1.274026e-03
## 2431    2 0.0011007155 1.15745279 1.274026e-03
## 2432    2 0.0011007155 1.15745279 1.274026e-03
## 2433    2 0.0011007155 1.15745279 1.274026e-03
## 2434    2 0.0011007155 1.15745279 1.274026e-03
## 2435    2 0.0011007155 1.15745279 1.274026e-03
## 2436    1 0.0011013216 1.15745279 1.274728e-03
## 2437    1 0.0011013216 1.15745279 1.274728e-03
## 2438    1 0.0011013216 1.15745279 1.274728e-03
## 2439    1 0.0011013216 1.15745279 1.274728e-03
## 2440    1 0.0011013216 1.15745279 1.274728e-03
## 2441    2 0.0022779043 0.55961579 1.274751e-03
## 2442    2 0.0022779043 0.55961579 1.274751e-03
## 2443    2 0.0022779043 0.55961579 1.274751e-03
## 2444    3 0.0030364372 0.41985385 1.274860e-03
## 2445    6 0.0030456853 0.41985385 1.278743e-03
## 2446    2 0.0027548209 0.46430561 1.279079e-03
## 2447    3 0.0015228426 0.84729786 1.290301e-03
## 2448    3 0.0015228426 0.84729786 1.290301e-03
## 2449    1 0.0017889088 0.72213472 1.291833e-03
## 2450    1 0.0017889088 0.72213472 1.291833e-03
## 2451    1 0.0017889088 0.72213472 1.291833e-03
## 2452    4 0.0034246575 0.37729423 1.292104e-03
## 2453    2 0.0034246575 0.37729423 1.292104e-03
## 2454    2 0.0034246575 0.37729423 1.292104e-03
## 2455    1 0.0034246575 0.37729423 1.292104e-03
## 2456    3 0.0016510732 0.78275934 1.292393e-03
## 2457    2 0.0013063357 0.99039870 1.293793e-03
## 2458    2 0.0014124294 0.91629073 1.294196e-03
## 2459    2 0.0014124294 0.91629073 1.294196e-03
## 2460    2 0.0014124294 0.91629073 1.294196e-03
## 2461    2 0.0014124294 0.91629073 1.294196e-03
## 2462    2 0.0014124294 0.91629073 1.294196e-03
## 2463    2 0.0014124294 0.91629073 1.294196e-03
## 2464    2 0.0014124294 0.91629073 1.294196e-03
## 2465    3 0.0021186441 0.61090908 1.294299e-03
## 2466    2 0.0049875312 0.25951120 1.294320e-03
## 2467    2 0.0049875312 0.25951120 1.294320e-03
## 2468    1 0.0010341262 1.25276297 1.295515e-03
## 2469    1 0.0010341262 1.25276297 1.295515e-03
## 2470    1 0.0010341262 1.25276297 1.295515e-03
## 2471    1 0.0010341262 1.25276297 1.295515e-03
## 2472    1 0.0010341262 1.25276297 1.295515e-03
## 2473    1 0.0010341262 1.25276297 1.295515e-03
## 2474    1 0.0010341262 1.25276297 1.295515e-03
## 2475    1 0.0010341262 1.25276297 1.295515e-03
## 2476    1 0.0010341262 1.25276297 1.295515e-03
## 2477    1 0.0010341262 1.25276297 1.295515e-03
## 2478    1 0.0027932961 0.46430561 1.296943e-03
## 2479    1 0.0012121212 1.07044141 1.297505e-03
## 2480    1 0.0012121212 1.07044141 1.297505e-03
## 2481    1 0.0012121212 1.07044141 1.297505e-03
## 2482    1 0.0012121212 1.07044141 1.297505e-03
## 2483    1 0.0012121212 1.07044141 1.297505e-03
## 2484    1 0.0012121212 1.07044141 1.297505e-03
## 2485    1 0.0012121212 1.07044141 1.297505e-03
## 2486    1 0.0012121212 1.07044141 1.297505e-03
## 2487    1 0.0012121212 1.07044141 1.297505e-03
## 2488    1 0.0012121212 1.07044141 1.297505e-03
## 2489    2 0.0021276596 0.61090908 1.299807e-03
## 2490    2 0.0021276596 0.61090908 1.299807e-03
## 2491    1 0.0011235955 1.15745279 1.300509e-03
## 2492    1 0.0011235955 1.15745279 1.300509e-03
## 2493    1 0.0011235955 1.15745279 1.300509e-03
## 2494    1 0.0011235955 1.15745279 1.300509e-03
## 2495    1 0.0011235955 1.15745279 1.300509e-03
## 2496    1 0.0011235955 1.15745279 1.300509e-03
## 2497    1 0.0011235955 1.15745279 1.300509e-03
## 2498    1 0.0011235955 1.15745279 1.300509e-03
## 2499    3 0.0031023785 0.41985385 1.302546e-03
## 2500    3 0.0019595036 0.66497630 1.303023e-03
## 2501    3 0.0019595036 0.66497630 1.303023e-03
## 2502    5 0.0031094527 0.41985385 1.305516e-03
## 2503    1 0.0034602076 0.37729423 1.305516e-03
## 2504    1 0.0034602076 0.37729423 1.305516e-03
## 2505    8 0.0044028619 0.29725152 1.308757e-03
## 2506    4 0.0028248588 0.46430561 1.311598e-03
## 2507    4 0.0028248588 0.46430561 1.311598e-03
## 2508    1 0.0013280212 0.99039870 1.315271e-03
## 2509    1 0.0013280212 0.99039870 1.315271e-03
## 2510    1 0.0013280212 0.99039870 1.315271e-03
## 2511    1 0.0011389522 1.15745279 1.318283e-03
## 2512    1 0.0011389522 1.15745279 1.318283e-03
## 2513    1 0.0011389522 1.15745279 1.318283e-03
## 2514    1 0.0011389522 1.15745279 1.318283e-03
## 2515    1 0.0011389522 1.15745279 1.318283e-03
## 2516    1 0.0011389522 1.15745279 1.318283e-03
## 2517    1 0.0011389522 1.15745279 1.318283e-03
## 2518    1 0.0011389522 1.15745279 1.318283e-03
## 2519    1 0.0011389522 1.15745279 1.318283e-03
## 2520    1 0.0011389522 1.15745279 1.318283e-03
## 2521    5 0.0031446541 0.41985385 1.320295e-03
## 2522    1 0.0013333333 0.99039870 1.320532e-03
## 2523    1 0.0013333333 0.99039870 1.320532e-03
## 2524    1 0.0013333333 0.99039870 1.320532e-03
## 2525    1 0.0013333333 0.99039870 1.320532e-03
## 2526    1 0.0013333333 0.99039870 1.320532e-03
## 2527    1 0.0013333333 0.99039870 1.320532e-03
## 2528    1 0.0013333333 0.99039870 1.320532e-03
## 2529    1 0.0013333333 0.99039870 1.320532e-03
## 2530    1 0.0013333333 0.99039870 1.320532e-03
## 2531    1 0.0013333333 0.99039870 1.320532e-03
## 2532    1 0.0013333333 0.99039870 1.320532e-03
## 2533    1 0.0023640662 0.55961579 1.322969e-03
## 2534    1 0.0023640662 0.55961579 1.322969e-03
## 2535    1 0.0023640662 0.55961579 1.322969e-03
## 2536    2 0.0012437811 1.07044141 1.331395e-03
## 2537    2 0.0012437811 1.07044141 1.331395e-03
## 2538    2 0.0012437811 1.07044141 1.331395e-03
## 2539    2 0.0012437811 1.07044141 1.331395e-03
## 2540    2 0.0012437811 1.07044141 1.331395e-03
## 2541    2 0.0012437811 1.07044141 1.331395e-03
## 2542    2 0.0059701493 0.22314355 1.332200e-03
## 2543    1 0.0010638298 1.25276297 1.332727e-03
## 2544    1 0.0010638298 1.25276297 1.332727e-03
## 2545    1 0.0010638298 1.25276297 1.332727e-03
## 2546    1 0.0010638298 1.25276297 1.332727e-03
## 2547    1 0.0010638298 1.25276297 1.332727e-03
## 2548    1 0.0010638298 1.25276297 1.332727e-03
## 2549    1 0.0010638298 1.25276297 1.332727e-03
## 2550    1 0.0010638298 1.25276297 1.332727e-03
## 2551    1 0.0021929825 0.61090908 1.339713e-03
## 2552    1 0.0021929825 0.61090908 1.339713e-03
## 2553    1 0.0021929825 0.61090908 1.339713e-03
## 2554    1 0.0021929825 0.61090908 1.339713e-03
## 2555    1 0.0018552876 0.72213472 1.339768e-03
## 2556    1 0.0018552876 0.72213472 1.339768e-03
## 2557    1 0.0018552876 0.72213472 1.339768e-03
## 2558    3 0.0031914894 0.41985385 1.339959e-03
## 2559    2 0.0017123288 0.78275934 1.340341e-03
## 2560    2 0.0017123288 0.78275934 1.340341e-03
## 2561    1 0.0017123288 0.78275934 1.340341e-03
## 2562    1 0.0017123288 0.78275934 1.340341e-03
## 2563    3 0.0039840637 0.33647224 1.340527e-03
## 2564    4 0.0022014309 0.61090908 1.344874e-03
## 2565    2 0.0020242915 0.66497630 1.346106e-03
## 2566    2 0.0020242915 0.66497630 1.346106e-03
## 2567    2 0.0012578616 1.07044141 1.346467e-03
## 2568    2 0.0012578616 1.07044141 1.346467e-03
## 2569    2 0.0012578616 1.07044141 1.346467e-03
## 2570    2 0.0012578616 1.07044141 1.346467e-03
## 2571    3 0.0018656716 0.72213472 1.347266e-03
## 2572    3 0.0018656716 0.72213472 1.347266e-03
## 2573    3 0.0018656716 0.72213472 1.347266e-03
## 2574    3 0.0018656716 0.72213472 1.347266e-03
## 2575    1 0.0026385224 0.51082562 1.347825e-03
## 2576    1 0.0026385224 0.51082562 1.347825e-03
## 2577    1 0.0006218905 2.16905370 1.348914e-03
## 2578    1 0.0006218905 2.16905370 1.348914e-03
## 2579    1 0.0006218905 2.16905370 1.348914e-03
## 2580    1 0.0006218905 2.16905370 1.348914e-03
## 2581    1 0.0006218905 2.16905370 1.348914e-03
## 2582    1 0.0006218905 2.16905370 1.348914e-03
## 2583    1 0.0006218905 2.16905370 1.348914e-03
## 2584    1 0.0006218905 2.16905370 1.348914e-03
## 2585    1 0.0006218905 2.16905370 1.348914e-03
## 2586    1 0.0006218905 2.16905370 1.348914e-03
## 2587    1 0.0006218905 2.16905370 1.348914e-03
## 2588    1 0.0006218905 2.16905370 1.348914e-03
## 2589    1 0.0006218905 2.16905370 1.348914e-03
## 2590    1 0.0006218905 2.16905370 1.348914e-03
## 2591    1 0.0006218905 2.16905370 1.348914e-03
## 2592    1 0.0006218905 2.16905370 1.348914e-03
## 2593    1 0.0006218905 2.16905370 1.348914e-03
## 2594    1 0.0006218905 2.16905370 1.348914e-03
## 2595    1 0.0006218905 2.16905370 1.348914e-03
## 2596    1 0.0006218905 2.16905370 1.348914e-03
## 2597    1 0.0006218905 2.16905370 1.348914e-03
## 2598    1 0.0006218905 2.16905370 1.348914e-03
## 2599    1 0.0006218905 2.16905370 1.348914e-03
## 2600    1 0.0006218905 2.16905370 1.348914e-03
## 2601    1 0.0006218905 2.16905370 1.348914e-03
## 2602    1 0.0006218905 2.16905370 1.348914e-03
## 2603    1 0.0006218905 2.16905370 1.348914e-03
## 2604    1 0.0006218905 2.16905370 1.348914e-03
## 2605    1 0.0006218905 2.16905370 1.348914e-03
## 2606    1 0.0006218905 2.16905370 1.348914e-03
## 2607    1 0.0006218905 2.16905370 1.348914e-03
## 2608    1 0.0006218905 2.16905370 1.348914e-03
## 2609    1 0.0006218905 2.16905370 1.348914e-03
## 2610    1 0.0029069767 0.46430561 1.349726e-03
## 2611    1 0.0029069767 0.46430561 1.349726e-03
## 2612    1 0.0029069767 0.46430561 1.349726e-03
## 2613    2 0.0035778175 0.37729423 1.349890e-03
## 2614   11 0.0071848465 0.18805223 1.351126e-03
## 2615    1 0.0005503577 2.45673577 1.352084e-03
## 2616    1 0.0005503577 2.45673577 1.352084e-03
## 2617    1 0.0005503577 2.45673577 1.352084e-03
## 2618    1 0.0005503577 2.45673577 1.352084e-03
## 2619    1 0.0005503577 2.45673577 1.352084e-03
## 2620    1 0.0005503577 2.45673577 1.352084e-03
## 2621    1 0.0005503577 2.45673577 1.352084e-03
## 2622    1 0.0005503577 2.45673577 1.352084e-03
## 2623    1 0.0005503577 2.45673577 1.352084e-03
## 2624    1 0.0005503577 2.45673577 1.352084e-03
## 2625    1 0.0005503577 2.45673577 1.352084e-03
## 2626    1 0.0005503577 2.45673577 1.352084e-03
## 2627    1 0.0005503577 2.45673577 1.352084e-03
## 2628    1 0.0005503577 2.45673577 1.352084e-03
## 2629    1 0.0005503577 2.45673577 1.352084e-03
## 2630    1 0.0005503577 2.45673577 1.352084e-03
## 2631    1 0.0005503577 2.45673577 1.352084e-03
## 2632    1 0.0005503577 2.45673577 1.352084e-03
## 2633    1 0.0005503577 2.45673577 1.352084e-03
## 2634    1 0.0005503577 2.45673577 1.352084e-03
## 2635    1 0.0005503577 2.45673577 1.352084e-03
## 2636    1 0.0005503577 2.45673577 1.352084e-03
## 2637    1 0.0005503577 2.45673577 1.352084e-03
## 2638    1 0.0005503577 2.45673577 1.352084e-03
## 2639    1 0.0005503577 2.45673577 1.352084e-03
## 2640    1 0.0005503577 2.45673577 1.352084e-03
## 2641    1 0.0005503577 2.45673577 1.352084e-03
## 2642    1 0.0005503577 2.45673577 1.352084e-03
## 2643    1 0.0005503577 2.45673577 1.352084e-03
## 2644    1 0.0005503577 2.45673577 1.352084e-03
## 2645    1 0.0005503577 2.45673577 1.352084e-03
## 2646    1 0.0005503577 2.45673577 1.352084e-03
## 2647    1 0.0005503577 2.45673577 1.352084e-03
## 2648    1 0.0005503577 2.45673577 1.352084e-03
## 2649    1 0.0005503577 2.45673577 1.352084e-03
## 2650    1 0.0005503577 2.45673577 1.352084e-03
## 2651    1 0.0005503577 2.45673577 1.352084e-03
## 2652    1 0.0005503577 2.45673577 1.352084e-03
## 2653    1 0.0005503577 2.45673577 1.352084e-03
## 2654    1 0.0005503577 2.45673577 1.352084e-03
## 2655    1 0.0005503577 2.45673577 1.352084e-03
## 2656    1 0.0005503577 2.45673577 1.352084e-03
## 2657    1 0.0005503577 2.45673577 1.352084e-03
## 2658    1 0.0005503577 2.45673577 1.352084e-03
## 2659    1 0.0005503577 2.45673577 1.352084e-03
## 2660    1 0.0005503577 2.45673577 1.352084e-03
## 2661    1 0.0005503577 2.45673577 1.352084e-03
## 2662    1 0.0005503577 2.45673577 1.352084e-03
## 2663    1 0.0005503577 2.45673577 1.352084e-03
## 2664    1 0.0005503577 2.45673577 1.352084e-03
## 2665    1 0.0005503577 2.45673577 1.352084e-03
## 2666    1 0.0005503577 2.45673577 1.352084e-03
## 2667    1 0.0005503577 2.45673577 1.352084e-03
## 2668    1 0.0005503577 2.45673577 1.352084e-03
## 2669    1 0.0005503577 2.45673577 1.352084e-03
## 2670    1 0.0005503577 2.45673577 1.352084e-03
## 2671    1 0.0005503577 2.45673577 1.352084e-03
## 2672    1 0.0005503577 2.45673577 1.352084e-03
## 2673    1 0.0005503577 2.45673577 1.352084e-03
## 2674    1 0.0005503577 2.45673577 1.352084e-03
## 2675    1 0.0005503577 2.45673577 1.352084e-03
## 2676    1 0.0005503577 2.45673577 1.352084e-03
## 2677    1 0.0005503577 2.45673577 1.352084e-03
## 2678    1 0.0005503577 2.45673577 1.352084e-03
## 2679    1 0.0005503577 2.45673577 1.352084e-03
## 2680    1 0.0005503577 2.45673577 1.352084e-03
## 2681    1 0.0005503577 2.45673577 1.352084e-03
## 2682    1 0.0005503577 2.45673577 1.352084e-03
## 2683    1 0.0005503577 2.45673577 1.352084e-03
## 2684    1 0.0005503577 2.45673577 1.352084e-03
## 2685    1 0.0005503577 2.45673577 1.352084e-03
## 2686    1 0.0005503577 2.45673577 1.352084e-03
## 2687    1 0.0005503577 2.45673577 1.352084e-03
## 2688    1 0.0005503577 2.45673577 1.352084e-03
## 2689    1 0.0005503577 2.45673577 1.352084e-03
## 2690    1 0.0005503577 2.45673577 1.352084e-03
## 2691    1 0.0005503577 2.45673577 1.352084e-03
## 2692    1 0.0005503577 2.45673577 1.352084e-03
## 2693    1 0.0005503577 2.45673577 1.352084e-03
## 2694    1 0.0005503577 2.45673577 1.352084e-03
## 2695    1 0.0005503577 2.45673577 1.352084e-03
## 2696    1 0.0005503577 2.45673577 1.352084e-03
## 2697    5 0.0060606061 0.22314355 1.352385e-03
## 2698    4 0.0045558087 0.29725152 1.354221e-03
## 2699    2 0.0024242424 0.55961579 1.356644e-03
## 2700    2 0.0024242424 0.55961579 1.356644e-03
## 2701    2 0.0024242424 0.55961579 1.356644e-03
## 2702    2 0.0024242424 0.55961579 1.356644e-03
## 2703    1 0.0011764706 1.15745279 1.361709e-03
## 2704    1 0.0011764706 1.15745279 1.361709e-03
## 2705    1 0.0011764706 1.15745279 1.361709e-03
## 2706    2 0.0026666667 0.51082562 1.362202e-03
## 2707    4 0.0040485830 0.33647224 1.362236e-03
## 2708    3 0.0018867925 0.72213472 1.362518e-03
## 2709    3 0.0018867925 0.72213472 1.362518e-03
## 2710    3 0.0018867925 0.72213472 1.362518e-03
## 2711    1 0.0006289308 2.16905370 1.364185e-03
## 2712    1 0.0006289308 2.16905370 1.364185e-03
## 2713    1 0.0006289308 2.16905370 1.364185e-03
## 2714    1 0.0006289308 2.16905370 1.364185e-03
## 2715    1 0.0006289308 2.16905370 1.364185e-03
## 2716    1 0.0006289308 2.16905370 1.364185e-03
## 2717    1 0.0006289308 2.16905370 1.364185e-03
## 2718    1 0.0006289308 2.16905370 1.364185e-03
## 2719    1 0.0006289308 2.16905370 1.364185e-03
## 2720    1 0.0006289308 2.16905370 1.364185e-03
## 2721    1 0.0006289308 2.16905370 1.364185e-03
## 2722    1 0.0006289308 2.16905370 1.364185e-03
## 2723    1 0.0006289308 2.16905370 1.364185e-03
## 2724    1 0.0006289308 2.16905370 1.364185e-03
## 2725    1 0.0006289308 2.16905370 1.364185e-03
## 2726    1 0.0006289308 2.16905370 1.364185e-03
## 2727    1 0.0006289308 2.16905370 1.364185e-03
## 2728    1 0.0006289308 2.16905370 1.364185e-03
## 2729    1 0.0006289308 2.16905370 1.364185e-03
## 2730    1 0.0006289308 2.16905370 1.364185e-03
## 2731    1 0.0006289308 2.16905370 1.364185e-03
## 2732    1 0.0006289308 2.16905370 1.364185e-03
## 2733    1 0.0006289308 2.16905370 1.364185e-03
## 2734    1 0.0006289308 2.16905370 1.364185e-03
## 2735    1 0.0006289308 2.16905370 1.364185e-03
## 2736    1 0.0006289308 2.16905370 1.364185e-03
## 2737    1 0.0006289308 2.16905370 1.364185e-03
## 2738    1 0.0006289308 2.16905370 1.364185e-03
## 2739    1 0.0006289308 2.16905370 1.364185e-03
## 2740    1 0.0006289308 2.16905370 1.364185e-03
## 2741    1 0.0006289308 2.16905370 1.364185e-03
## 2742    1 0.0006289308 2.16905370 1.364185e-03
## 2743    1 0.0006289308 2.16905370 1.364185e-03
## 2744    1 0.0006289308 2.16905370 1.364185e-03
## 2745    1 0.0006289308 2.16905370 1.364185e-03
## 2746    1 0.0006289308 2.16905370 1.364185e-03
## 2747    1 0.0006289308 2.16905370 1.364185e-03
## 2748    1 0.0006289308 2.16905370 1.364185e-03
## 2749    1 0.0006289308 2.16905370 1.364185e-03
## 2750    1 0.0006289308 2.16905370 1.364185e-03
## 2751    1 0.0006289308 2.16905370 1.364185e-03
## 2752    1 0.0006289308 2.16905370 1.364185e-03
## 2753    1 0.0013774105 0.99039870 1.364186e-03
## 2754    1 0.0013774105 0.99039870 1.364186e-03
## 2755    1 0.0013774105 0.99039870 1.364186e-03
## 2756    1 0.0013774105 0.99039870 1.364186e-03
## 2757    1 0.0013774105 0.99039870 1.364186e-03
## 2758    8 0.0040609137 0.33647224 1.366385e-03
## 2759    2 0.0052770449 0.25951120 1.369452e-03
## 2760    5 0.0032658393 0.41985385 1.371175e-03
## 2761    2 0.0022471910 0.61090908 1.372829e-03
## 2762    2 0.0022471910 0.61090908 1.372829e-03
## 2763    2 0.0022471910 0.61090908 1.372829e-03
## 2764    1 0.0007062147 1.94591015 1.374230e-03
## 2765    1 0.0007062147 1.94591015 1.374230e-03
## 2766    1 0.0007062147 1.94591015 1.374230e-03
## 2767    1 0.0007062147 1.94591015 1.374230e-03
## 2768    1 0.0007062147 1.94591015 1.374230e-03
## 2769    1 0.0007062147 1.94591015 1.374230e-03
## 2770    1 0.0007062147 1.94591015 1.374230e-03
## 2771    1 0.0007062147 1.94591015 1.374230e-03
## 2772    1 0.0007062147 1.94591015 1.374230e-03
## 2773    1 0.0007062147 1.94591015 1.374230e-03
## 2774    1 0.0007062147 1.94591015 1.374230e-03
## 2775    1 0.0007062147 1.94591015 1.374230e-03
## 2776    1 0.0007062147 1.94591015 1.374230e-03
## 2777    1 0.0007062147 1.94591015 1.374230e-03
## 2778    1 0.0007062147 1.94591015 1.374230e-03
## 2779    1 0.0007062147 1.94591015 1.374230e-03
## 2780    1 0.0007062147 1.94591015 1.374230e-03
## 2781    1 0.0007062147 1.94591015 1.374230e-03
## 2782    1 0.0007062147 1.94591015 1.374230e-03
## 2783    1 0.0007062147 1.94591015 1.374230e-03
## 2784    1 0.0007062147 1.94591015 1.374230e-03
## 2785    1 0.0007062147 1.94591015 1.374230e-03
## 2786    1 0.0007062147 1.94591015 1.374230e-03
## 2787    1 0.0007062147 1.94591015 1.374230e-03
## 2788    1 0.0007062147 1.94591015 1.374230e-03
## 2789    1 0.0010121457 1.35812348 1.374619e-03
## 2790    1 0.0010121457 1.35812348 1.374619e-03
## 2791    1 0.0010121457 1.35812348 1.374619e-03
## 2792    1 0.0010121457 1.35812348 1.374619e-03
## 2793    1 0.0010121457 1.35812348 1.374619e-03
## 2794    1 0.0010121457 1.35812348 1.374619e-03
## 2795    1 0.0010121457 1.35812348 1.374619e-03
## 2796    1 0.0010121457 1.35812348 1.374619e-03
## 2797    1 0.0010121457 1.35812348 1.374619e-03
## 2798    1 0.0010121457 1.35812348 1.374619e-03
## 2799    1 0.0010121457 1.35812348 1.374619e-03
## 2800    1 0.0010121457 1.35812348 1.374619e-03
## 2801    1 0.0010121457 1.35812348 1.374619e-03
## 2802    1 0.0010121457 1.35812348 1.374619e-03
## 2803    1 0.0024570025 0.55961579 1.374977e-03
## 2804    2 0.0020682523 0.66497630 1.375339e-03
## 2805    2 0.0020682523 0.66497630 1.375339e-03
## 2806    2 0.0020682523 0.66497630 1.375339e-03
## 2807    2 0.0020682523 0.66497630 1.375339e-03
## 2808    2 0.0020682523 0.66497630 1.375339e-03
## 2809    1 0.0016233766 0.84729786 1.375484e-03
## 2810    1 0.0016233766 0.84729786 1.375484e-03
## 2811    1 0.0016233766 0.84729786 1.375484e-03
## 2812    1 0.0016233766 0.84729786 1.375484e-03
## 2813    1 0.0016233766 0.84729786 1.375484e-03
## 2814    1 0.0016233766 0.84729786 1.375484e-03
## 2815    1 0.0016233766 0.84729786 1.375484e-03
## 2816    1 0.0026954178 0.51082562 1.376888e-03
## 2817    1 0.0008561644 1.60943791 1.377943e-03
## 2818    1 0.0008561644 1.60943791 1.377943e-03
## 2819    1 0.0008561644 1.60943791 1.377943e-03
## 2820    1 0.0008561644 1.60943791 1.377943e-03
## 2821    1 0.0008561644 1.60943791 1.377943e-03
## 2822    1 0.0008561644 1.60943791 1.377943e-03
## 2823    1 0.0008561644 1.60943791 1.377943e-03
## 2824    1 0.0008561644 1.60943791 1.377943e-03
## 2825    1 0.0008561644 1.60943791 1.377943e-03
## 2826    1 0.0008561644 1.60943791 1.377943e-03
## 2827    1 0.0008561644 1.60943791 1.377943e-03
## 2828    1 0.0008561644 1.60943791 1.377943e-03
## 2829    1 0.0008561644 1.60943791 1.377943e-03
## 2830    1 0.0008561644 1.60943791 1.377943e-03
## 2831    1 0.0008561644 1.60943791 1.377943e-03
## 2832    1 0.0008561644 1.60943791 1.377943e-03
## 2833    2 0.0010152284 1.35812348 1.378806e-03
## 2834    2 0.0010152284 1.35812348 1.378806e-03
## 2835    2 0.0010152284 1.35812348 1.378806e-03
## 2836    2 0.0011007155 1.25276297 1.378936e-03
## 2837    2 0.0011007155 1.25276297 1.378936e-03
## 2838    2 0.0011007155 1.25276297 1.378936e-03
## 2839    2 0.0011007155 1.25276297 1.378936e-03
## 2840    2 0.0011007155 1.25276297 1.378936e-03
## 2841    2 0.0011007155 1.25276297 1.378936e-03
## 2842    2 0.0011007155 1.25276297 1.378936e-03
## 2843    2 0.0011007155 1.25276297 1.378936e-03
## 2844    2 0.0011007155 1.25276297 1.378936e-03
## 2845    2 0.0011007155 1.25276297 1.378936e-03
## 2846    2 0.0011007155 1.25276297 1.378936e-03
## 2847    1 0.0011013216 1.25276297 1.379695e-03
## 2848    1 0.0011013216 1.25276297 1.379695e-03
## 2849    1 0.0011013216 1.25276297 1.379695e-03
## 2850    1 0.0011013216 1.25276297 1.379695e-03
## 2851    1 0.0011013216 1.25276297 1.379695e-03
## 2852    1 0.0011013216 1.25276297 1.379695e-03
## 2853    1 0.0011013216 1.25276297 1.379695e-03
## 2854    1 0.0011013216 1.25276297 1.379695e-03
## 2855    1 0.0029850746 0.46430561 1.385987e-03
## 2856    3 0.0073710074 0.18805223 1.386134e-03
## 2857    4 0.0041365047 0.33647224 1.391819e-03
## 2858    1 0.0024937656 0.55961579 1.395551e-03
## 2859    1 0.0024937656 0.55961579 1.395551e-03
## 2860    1 0.0024937656 0.55961579 1.395551e-03
## 2861    2 0.0013063357 1.07044141 1.398356e-03
## 2862    2 0.0013063357 1.07044141 1.398356e-03
## 2863    2 0.0013063357 1.07044141 1.398356e-03
## 2864    2 0.0014124294 0.99039870 1.398868e-03
## 2865    3 0.0016510732 0.84729786 1.398951e-03
## 2866    1 0.0017889088 0.78275934 1.400285e-03
## 2867    1 0.0017889088 0.78275934 1.400285e-03
## 2868    1 0.0017889088 0.78275934 1.400285e-03
## 2869    1 0.0012121212 1.15745279 1.402973e-03
## 2870    1 0.0012121212 1.15745279 1.402973e-03
## 2871    1 0.0012121212 1.15745279 1.402973e-03
## 2872    1 0.0012121212 1.15745279 1.402973e-03
## 2873    1 0.0012121212 1.15745279 1.402973e-03
## 2874    1 0.0012121212 1.15745279 1.402973e-03
## 2875    1 0.0012121212 1.15745279 1.402973e-03
## 2876    1 0.0012121212 1.15745279 1.402973e-03
## 2877    1 0.0010341262 1.35812348 1.404471e-03
## 2878    1 0.0010341262 1.35812348 1.404471e-03
## 2879    1 0.0010341262 1.35812348 1.404471e-03
## 2880    1 0.0010341262 1.35812348 1.404471e-03
## 2881    1 0.0010341262 1.35812348 1.404471e-03
## 2882    1 0.0010341262 1.35812348 1.404471e-03
## 2883    1 0.0010341262 1.35812348 1.404471e-03
## 2884    1 0.0010341262 1.35812348 1.404471e-03
## 2885    1 0.0010341262 1.35812348 1.404471e-03
## 2886    1 0.0010341262 1.35812348 1.404471e-03
## 2887    1 0.0010341262 1.35812348 1.404471e-03
## 2888    1 0.0010341262 1.35812348 1.404471e-03
## 2889    1 0.0010341262 1.35812348 1.404471e-03
## 2890    1 0.0010341262 1.35812348 1.404471e-03
## 2891    1 0.0010341262 1.35812348 1.404471e-03
## 2892    1 0.0010341262 1.35812348 1.404471e-03
## 2893    1 0.0010341262 1.35812348 1.404471e-03
## 2894    1 0.0010341262 1.35812348 1.404471e-03
## 2895    2 0.0027548209 0.51082562 1.407233e-03
## 2896    1 0.0011235955 1.25276297 1.407599e-03
## 2897    1 0.0011235955 1.25276297 1.407599e-03
## 2898    1 0.0011235955 1.25276297 1.407599e-03
## 2899    1 0.0011235955 1.25276297 1.407599e-03
## 2900    1 0.0011235955 1.25276297 1.407599e-03
## 2901    1 0.0011235955 1.25276297 1.407599e-03
## 2902    1 0.0011235955 1.25276297 1.407599e-03
## 2903    1 0.0011235955 1.25276297 1.407599e-03
## 2904    1 0.0011235955 1.25276297 1.407599e-03
## 2905    1 0.0011235955 1.25276297 1.407599e-03
## 2906    1 0.0011235955 1.25276297 1.407599e-03
## 2907    1 0.0011235955 1.25276297 1.407599e-03
## 2908    3 0.0021186441 0.66497630 1.408848e-03
## 2909    3 0.0030364372 0.46430561 1.409835e-03
## 2910    2 0.0021276596 0.66497630 1.414843e-03
## 2911    3 0.0019595036 0.72213472 1.415026e-03
## 2912    1 0.0006531679 2.16905370 1.416756e-03
## 2913    1 0.0006531679 2.16905370 1.416756e-03
## 2914    1 0.0006531679 2.16905370 1.416756e-03
## 2915    1 0.0006531679 2.16905370 1.416756e-03
## 2916    1 0.0006531679 2.16905370 1.416756e-03
## 2917    1 0.0006531679 2.16905370 1.416756e-03
## 2918    1 0.0006531679 2.16905370 1.416756e-03
## 2919    1 0.0006531679 2.16905370 1.416756e-03
## 2920    1 0.0006531679 2.16905370 1.416756e-03
## 2921    1 0.0006531679 2.16905370 1.416756e-03
## 2922    1 0.0006531679 2.16905370 1.416756e-03
## 2923    1 0.0006531679 2.16905370 1.416756e-03
## 2924    1 0.0006531679 2.16905370 1.416756e-03
## 2925    1 0.0006531679 2.16905370 1.416756e-03
## 2926    1 0.0006531679 2.16905370 1.416756e-03
## 2927    1 0.0006531679 2.16905370 1.416756e-03
## 2928    1 0.0006531679 2.16905370 1.416756e-03
## 2929    1 0.0006531679 2.16905370 1.416756e-03
## 2930    1 0.0006531679 2.16905370 1.416756e-03
## 2931    1 0.0006531679 2.16905370 1.416756e-03
## 2932    1 0.0006531679 2.16905370 1.416756e-03
## 2933    1 0.0006531679 2.16905370 1.416756e-03
## 2934    1 0.0006531679 2.16905370 1.416756e-03
## 2935    1 0.0006531679 2.16905370 1.416756e-03
## 2936    1 0.0006531679 2.16905370 1.416756e-03
## 2937    1 0.0006531679 2.16905370 1.416756e-03
## 2938    1 0.0006531679 2.16905370 1.416756e-03
## 2939    1 0.0006531679 2.16905370 1.416756e-03
## 2940    1 0.0006531679 2.16905370 1.416756e-03
## 2941    1 0.0013280212 1.07044141 1.421569e-03
## 2942    1 0.0013280212 1.07044141 1.421569e-03
## 2943    1 0.0013280212 1.07044141 1.421569e-03
## 2944    1 0.0013280212 1.07044141 1.421569e-03
## 2945    1 0.0013280212 1.07044141 1.421569e-03
## 2946    1 0.0013280212 1.07044141 1.421569e-03
## 2947    1 0.0013280212 1.07044141 1.421569e-03
## 2948    1 0.0013280212 1.07044141 1.421569e-03
## 2949    1 0.0013280212 1.07044141 1.421569e-03
## 2950    6 0.0042372881 0.33647224 1.425730e-03
## 2951    1 0.0011389522 1.25276297 1.426837e-03
## 2952    1 0.0011389522 1.25276297 1.426837e-03
## 2953    1 0.0011389522 1.25276297 1.426837e-03
## 2954    1 0.0011389522 1.25276297 1.426837e-03
## 2955    1 0.0011389522 1.25276297 1.426837e-03
## 2956    1 0.0011389522 1.25276297 1.426837e-03
## 2957    1 0.0011389522 1.25276297 1.426837e-03
## 2958    1 0.0011389522 1.25276297 1.426837e-03
## 2959    1 0.0011389522 1.25276297 1.426837e-03
## 2960    1 0.0011389522 1.25276297 1.426837e-03
## 2961    1 0.0011389522 1.25276297 1.426837e-03
## 2962    1 0.0027932961 0.51082562 1.426887e-03
## 2963    1 0.0027932961 0.51082562 1.426887e-03
## 2964    1 0.0027932961 0.51082562 1.426887e-03
## 2965    1 0.0013333333 1.07044141 1.427255e-03
## 2966    1 0.0013333333 1.07044141 1.427255e-03
## 2967    1 0.0013333333 1.07044141 1.427255e-03
## 2968    1 0.0013333333 1.07044141 1.427255e-03
## 2969    1 0.0013333333 1.07044141 1.427255e-03
## 2970    1 0.0013333333 1.07044141 1.427255e-03
## 2971    1 0.0013333333 1.07044141 1.427255e-03
## 2972    1 0.0013333333 1.07044141 1.427255e-03
## 2973    1 0.0013333333 1.07044141 1.427255e-03
## 2974    4 0.0055096419 0.25951120 1.429814e-03
## 2975    3 0.0025684932 0.55961579 1.437369e-03
## 2976    3 0.0025684932 0.55961579 1.437369e-03
## 2977    3 0.0025684932 0.55961579 1.437369e-03
## 2978    3 0.0025684932 0.55961579 1.437369e-03
## 2979    2 0.0034246575 0.41985385 1.437856e-03
## 2980    2 0.0034246575 0.41985385 1.437856e-03
## 2981    1 0.0034246575 0.41985385 1.437856e-03
## 2982    1 0.0034246575 0.41985385 1.437856e-03
## 2983    2 0.0012437811 1.15745279 1.439618e-03
## 2984    2 0.0012437811 1.15745279 1.439618e-03
## 2985    2 0.0012437811 1.15745279 1.439618e-03
## 2986    2 0.0012437811 1.15745279 1.439618e-03
## 2987    5 0.0042808219 0.33647224 1.440378e-03
## 2988    3 0.0031023785 0.46430561 1.440452e-03
## 2989    3 0.0031023785 0.46430561 1.440452e-03
## 2990    5 0.0031094527 0.46430561 1.443736e-03
## 2991    5 0.0031094527 0.46430561 1.443736e-03
## 2992    1 0.0023640662 0.61090908 1.444230e-03
## 2993    1 0.0010638298 1.35812348 1.444812e-03
## 2994    1 0.0010638298 1.35812348 1.444812e-03
## 2995    1 0.0010638298 1.35812348 1.444812e-03
## 2996    1 0.0010638298 1.35812348 1.444812e-03
## 2997    1 0.0010638298 1.35812348 1.444812e-03
## 2998    1 0.0010638298 1.35812348 1.444812e-03
## 2999    1 0.0010638298 1.35812348 1.444812e-03
## 3000    1 0.0010638298 1.35812348 1.444812e-03
## 3001    2 0.0017123288 0.84729786 1.450853e-03
## 3002    1 0.0017123288 0.84729786 1.450853e-03
## 3003    1 0.0017123288 0.84729786 1.450853e-03
## 3004    1 0.0018552876 0.78275934 1.452244e-03
## 3005    1 0.0018552876 0.78275934 1.452244e-03
## 3006    1 0.0018552876 0.78275934 1.452244e-03
## 3007    1 0.0018552876 0.78275934 1.452244e-03
## 3008    1 0.0018552876 0.78275934 1.452244e-03
## 3009    1 0.0005076142 2.86220088 1.452894e-03
## 3010    1 0.0005076142 2.86220088 1.452894e-03
## 3011    1 0.0005076142 2.86220088 1.452894e-03
## 3012    1 0.0005076142 2.86220088 1.452894e-03
## 3013    1 0.0005076142 2.86220088 1.452894e-03
## 3014    1 0.0005076142 2.86220088 1.452894e-03
## 3015    1 0.0005076142 2.86220088 1.452894e-03
## 3016    1 0.0005076142 2.86220088 1.452894e-03
## 3017    1 0.0005076142 2.86220088 1.452894e-03
## 3018    1 0.0005076142 2.86220088 1.452894e-03
## 3019    1 0.0005076142 2.86220088 1.452894e-03
## 3020    1 0.0005076142 2.86220088 1.452894e-03
## 3021    1 0.0005076142 2.86220088 1.452894e-03
## 3022    1 0.0005076142 2.86220088 1.452894e-03
## 3023    1 0.0005076142 2.86220088 1.452894e-03
## 3024    1 0.0005076142 2.86220088 1.452894e-03
## 3025    1 0.0005076142 2.86220088 1.452894e-03
## 3026    1 0.0005076142 2.86220088 1.452894e-03
## 3027    1 0.0005076142 2.86220088 1.452894e-03
## 3028    1 0.0005076142 2.86220088 1.452894e-03
## 3029    1 0.0005076142 2.86220088 1.452894e-03
## 3030    1 0.0005076142 2.86220088 1.452894e-03
## 3031    1 0.0005076142 2.86220088 1.452894e-03
## 3032    1 0.0005076142 2.86220088 1.452894e-03
## 3033    1 0.0005076142 2.86220088 1.452894e-03
## 3034    1 0.0005076142 2.86220088 1.452894e-03
## 3035    1 0.0005076142 2.86220088 1.452894e-03
## 3036    1 0.0005076142 2.86220088 1.452894e-03
## 3037    1 0.0005076142 2.86220088 1.452894e-03
## 3038    1 0.0005076142 2.86220088 1.452894e-03
## 3039    1 0.0005076142 2.86220088 1.452894e-03
## 3040    1 0.0005076142 2.86220088 1.452894e-03
## 3041    1 0.0005076142 2.86220088 1.452894e-03
## 3042    1 0.0005076142 2.86220088 1.452894e-03
## 3043    1 0.0005076142 2.86220088 1.452894e-03
## 3044    1 0.0005076142 2.86220088 1.452894e-03
## 3045    1 0.0005076142 2.86220088 1.452894e-03
## 3046    1 0.0005076142 2.86220088 1.452894e-03
## 3047    1 0.0005076142 2.86220088 1.452894e-03
## 3048    1 0.0005076142 2.86220088 1.452894e-03
## 3049    1 0.0005076142 2.86220088 1.452894e-03
## 3050    1 0.0005076142 2.86220088 1.452894e-03
## 3051    1 0.0005076142 2.86220088 1.452894e-03
## 3052    1 0.0005076142 2.86220088 1.452894e-03
## 3053    1 0.0005076142 2.86220088 1.452894e-03
## 3054    1 0.0005076142 2.86220088 1.452894e-03
## 3055    1 0.0005076142 2.86220088 1.452894e-03
## 3056    1 0.0005076142 2.86220088 1.452894e-03
## 3057    1 0.0005076142 2.86220088 1.452894e-03
## 3058    1 0.0005076142 2.86220088 1.452894e-03
## 3059    1 0.0005076142 2.86220088 1.452894e-03
## 3060    1 0.0005076142 2.86220088 1.452894e-03
## 3061    1 0.0005076142 2.86220088 1.452894e-03
## 3062    1 0.0005076142 2.86220088 1.452894e-03
## 3063    1 0.0005076142 2.86220088 1.452894e-03
## 3064    1 0.0005076142 2.86220088 1.452894e-03
## 3065    1 0.0005076142 2.86220088 1.452894e-03
## 3066    1 0.0005076142 2.86220088 1.452894e-03
## 3067    1 0.0005076142 2.86220088 1.452894e-03
## 3068    1 0.0005076142 2.86220088 1.452894e-03
## 3069    1 0.0005076142 2.86220088 1.452894e-03
## 3070    1 0.0005076142 2.86220088 1.452894e-03
## 3071    1 0.0005076142 2.86220088 1.452894e-03
## 3072    1 0.0005076142 2.86220088 1.452894e-03
## 3073    1 0.0005076142 2.86220088 1.452894e-03
## 3074    1 0.0005076142 2.86220088 1.452894e-03
## 3075    1 0.0005076142 2.86220088 1.452894e-03
## 3076    1 0.0005076142 2.86220088 1.452894e-03
## 3077    1 0.0005076142 2.86220088 1.452894e-03
## 3078    1 0.0005076142 2.86220088 1.452894e-03
## 3079    1 0.0005076142 2.86220088 1.452894e-03
## 3080    1 0.0005076142 2.86220088 1.452894e-03
## 3081    1 0.0005076142 2.86220088 1.452894e-03
## 3082    1 0.0005076142 2.86220088 1.452894e-03
## 3083    1 0.0005076142 2.86220088 1.452894e-03
## 3084    1 0.0005076142 2.86220088 1.452894e-03
## 3085    1 0.0005076142 2.86220088 1.452894e-03
## 3086    1 0.0005076142 2.86220088 1.452894e-03
## 3087    1 0.0005076142 2.86220088 1.452894e-03
## 3088    1 0.0005076142 2.86220088 1.452894e-03
## 3089    1 0.0005076142 2.86220088 1.452894e-03
## 3090    7 0.0038525041 0.37729423 1.453528e-03
## 3091    2 0.0012578616 1.15745279 1.455915e-03
## 3092    2 0.0012578616 1.15745279 1.455915e-03
## 3093    2 0.0012578616 1.15745279 1.455915e-03
## 3094    2 0.0012578616 1.15745279 1.455915e-03
## 3095    2 0.0012578616 1.15745279 1.455915e-03
## 3096    1 0.0021929825 0.66497630 1.458281e-03
## 3097    1 0.0021929825 0.66497630 1.458281e-03
## 3098    1 0.0021929825 0.66497630 1.458281e-03
## 3099    3 0.0018656716 0.78275934 1.460372e-03
## 3100    2 0.0020242915 0.72213472 1.461811e-03
## 3101    2 0.0020242915 0.72213472 1.461811e-03
## 3102    2 0.0020242915 0.72213472 1.461811e-03
## 3103    2 0.0020242915 0.72213472 1.461811e-03
## 3104    2 0.0020242915 0.72213472 1.461811e-03
## 3105    4 0.0026126715 0.55961579 1.462092e-03
## 3106    4 0.0022014309 0.66497630 1.463899e-03
## 3107    2 0.0022026432 0.66497630 1.464706e-03
## 3108    7 0.0049435028 0.29725152 1.469464e-03
## 3109    1 0.0011764706 1.25276297 1.473839e-03
## 3110    1 0.0011764706 1.25276297 1.473839e-03
## 3111    1 0.0011764706 1.25276297 1.473839e-03
## 3112    1 0.0011764706 1.25276297 1.473839e-03
## 3113    1 0.0011764706 1.25276297 1.473839e-03
## 3114    1 0.0011764706 1.25276297 1.473839e-03
## 3115    1 0.0011764706 1.25276297 1.473839e-03
## 3116    1 0.0011764706 1.25276297 1.473839e-03
## 3117    1 0.0011764706 1.25276297 1.473839e-03
## 3118    1 0.0011764706 1.25276297 1.473839e-03
## 3119    1 0.0011764706 1.25276297 1.473839e-03
## 3120    1 0.0013774105 1.07044141 1.474437e-03
## 3121    1 0.0013774105 1.07044141 1.474437e-03
## 3122    1 0.0026385224 0.55961579 1.476559e-03
## 3123    1 0.0026385224 0.55961579 1.476559e-03
## 3124    1 0.0026385224 0.55961579 1.476559e-03
## 3125    1 0.0026385224 0.55961579 1.476559e-03
## 3126    1 0.0026385224 0.55961579 1.476559e-03
## 3127    3 0.0018867925 0.78275934 1.476904e-03
## 3128    3 0.0018867925 0.78275934 1.476904e-03
## 3129    2 0.0024242424 0.61090908 1.480992e-03
## 3130    2 0.0024242424 0.61090908 1.480992e-03
## 3131    7 0.0044025157 0.33647224 1.481324e-03
## 3132    8 0.0044028619 0.33647224 1.481441e-03
## 3133    3 0.0031914894 0.46430561 1.481826e-03
## 3134    1 0.0029069767 0.51082562 1.484958e-03
## 3135    2 0.0026560425 0.55961579 1.486363e-03
## 3136    2 0.0026560425 0.55961579 1.486363e-03
## 3137    2 0.0026560425 0.55961579 1.486363e-03
## 3138    2 0.0026560425 0.55961579 1.486363e-03
## 3139    1 0.0016233766 0.91629073 1.487485e-03
## 3140    1 0.0016233766 0.91629073 1.487485e-03
## 3141    1 0.0016233766 0.91629073 1.487485e-03
## 3142    1 0.0016233766 0.91629073 1.487485e-03
## 3143    1 0.0016233766 0.91629073 1.487485e-03
## 3144    1 0.0016233766 0.91629073 1.487485e-03
## 3145    1 0.0016233766 0.91629073 1.487485e-03
## 3146    3 0.0079155673 0.18805223 1.488540e-03
## 3147    3 0.0079155673 0.18805223 1.488540e-03
## 3148    2 0.0020682523 0.72213472 1.493557e-03
## 3149    1 0.0010121457 1.47590652 1.493833e-03
## 3150    1 0.0010121457 1.47590652 1.493833e-03
## 3151    1 0.0010121457 1.47590652 1.493833e-03
## 3152    1 0.0010121457 1.47590652 1.493833e-03
## 3153    1 0.0010121457 1.47590652 1.493833e-03
## 3154    1 0.0010121457 1.47590652 1.493833e-03
## 3155    1 0.0010121457 1.47590652 1.493833e-03
## 3156    1 0.0010121457 1.47590652 1.493833e-03
## 3157    1 0.0010121457 1.47590652 1.493833e-03
## 3158    1 0.0010121457 1.47590652 1.493833e-03
## 3159    1 0.0010121457 1.47590652 1.493833e-03
## 3160    1 0.0010121457 1.47590652 1.493833e-03
## 3161    1 0.0010121457 1.47590652 1.493833e-03
## 3162    1 0.0010121457 1.47590652 1.493833e-03
## 3163    1 0.0010121457 1.47590652 1.493833e-03
## 3164    1 0.0010121457 1.47590652 1.493833e-03
## 3165    1 0.0010121457 1.47590652 1.493833e-03
## 3166    1 0.0010121457 1.47590652 1.493833e-03
## 3167    1 0.0010121457 1.47590652 1.493833e-03
## 3168    2 0.0022471910 0.66497630 1.494329e-03
## 3169    2 0.0022471910 0.66497630 1.494329e-03
## 3170    2 0.0022471910 0.66497630 1.494329e-03
## 3171    2 0.0022471910 0.66497630 1.494329e-03
## 3172    2 0.0011007155 1.35812348 1.494908e-03
## 3173    2 0.0011007155 1.35812348 1.494908e-03
## 3174    2 0.0011007155 1.35812348 1.494908e-03
## 3175    2 0.0011007155 1.35812348 1.494908e-03
## 3176    2 0.0011007155 1.35812348 1.494908e-03
## 3177    2 0.0011007155 1.35812348 1.494908e-03
## 3178    2 0.0011007155 1.35812348 1.494908e-03
## 3179    2 0.0011007155 1.35812348 1.494908e-03
## 3180    2 0.0011007155 1.35812348 1.494908e-03
## 3181    2 0.0011007155 1.35812348 1.494908e-03
## 3182    8 0.0050314465 0.29725152 1.495605e-03
## 3183    8 0.0050314465 0.29725152 1.495605e-03
## 3184    1 0.0011013216 1.35812348 1.495731e-03
## 3185    1 0.0011013216 1.35812348 1.495731e-03
## 3186    1 0.0011013216 1.35812348 1.495731e-03
## 3187    1 0.0011013216 1.35812348 1.495731e-03
## 3188    1 0.0011013216 1.35812348 1.495731e-03
## 3189    1 0.0011013216 1.35812348 1.495731e-03
## 3190    2 0.0010152284 1.47590652 1.498382e-03
## 3191    2 0.0010152284 1.47590652 1.498382e-03
## 3192    2 0.0010152284 1.47590652 1.498382e-03
## 3193    2 0.0010152284 1.47590652 1.498382e-03
## 3194    2 0.0010152284 1.47590652 1.498382e-03
## 3195    2 0.0010152284 1.47590652 1.498382e-03
## 3196    2 0.0010152284 1.47590652 1.498382e-03
## 3197    6 0.0079681275 0.18805223 1.498424e-03
## 3198    7 0.0079726651 0.18805223 1.499277e-03
## 3199    1 0.0024570025 0.61090908 1.501005e-03
## 3200    3 0.0039840637 0.37729423 1.503164e-03
## 3201    2 0.0032467532 0.46430561 1.507486e-03
## 3202    3 0.0015228426 0.99039870 1.508221e-03
## 3203    3 0.0015228426 0.99039870 1.508221e-03
## 3204    1 0.0026954178 0.55961579 1.508398e-03
## 3205    2 0.0058139535 0.25951120 1.508786e-03
## 3206    1 0.0008561644 1.76358859 1.509922e-03
## 3207    1 0.0008561644 1.76358859 1.509922e-03
## 3208    1 0.0008561644 1.76358859 1.509922e-03
## 3209    1 0.0008561644 1.76358859 1.509922e-03
## 3210    1 0.0008561644 1.76358859 1.509922e-03
## 3211    1 0.0008561644 1.76358859 1.509922e-03
## 3212    1 0.0008561644 1.76358859 1.509922e-03
## 3213    1 0.0008561644 1.76358859 1.509922e-03
## 3214    1 0.0008561644 1.76358859 1.509922e-03
## 3215    1 0.0008561644 1.76358859 1.509922e-03
## 3216    1 0.0008561644 1.76358859 1.509922e-03
## 3217    1 0.0008561644 1.76358859 1.509922e-03
## 3218    1 0.0008561644 1.76358859 1.509922e-03
## 3219    1 0.0008561644 1.76358859 1.509922e-03
## 3220    1 0.0008561644 1.76358859 1.509922e-03
## 3221    1 0.0008561644 1.76358859 1.509922e-03
## 3222    1 0.0008561644 1.76358859 1.509922e-03
## 3223    1 0.0008561644 1.76358859 1.509922e-03
## 3224    1 0.0008561644 1.76358859 1.509922e-03
## 3225    1 0.0008561644 1.76358859 1.509922e-03
## 3226    1 0.0008561644 1.76358859 1.509922e-03
## 3227    1 0.0008561644 1.76358859 1.509922e-03
## 3228    1 0.0008561644 1.76358859 1.509922e-03
## 3229    1 0.0008561644 1.76358859 1.509922e-03
## 3230    2 0.0014124294 1.07044141 1.511923e-03
## 3231    2 0.0014124294 1.07044141 1.511923e-03
## 3232    2 0.0014124294 1.07044141 1.511923e-03
## 3233    2 0.0014124294 1.07044141 1.511923e-03
## 3234    2 0.0013063357 1.15745279 1.512022e-03
## 3235    2 0.0013063357 1.15745279 1.512022e-03
## 3236    2 0.0013063357 1.15745279 1.512022e-03
## 3237    2 0.0013063357 1.15745279 1.512022e-03
## 3238    2 0.0013063357 1.15745279 1.512022e-03
## 3239    2 0.0013063357 1.15745279 1.512022e-03
## 3240    3 0.0016510732 0.91629073 1.512863e-03
## 3241    3 0.0016510732 0.91629073 1.512863e-03
## 3242    3 0.0016510732 0.91629073 1.512863e-03
## 3243    2 0.0022779043 0.66497630 1.514752e-03
## 3244    2 0.0022779043 0.66497630 1.514752e-03
## 3245    1 0.0017889088 0.84729786 1.515739e-03
## 3246    1 0.0017889088 0.84729786 1.515739e-03
## 3247    1 0.0017889088 0.84729786 1.515739e-03
## 3248    1 0.0017889088 0.84729786 1.515739e-03
## 3249    1 0.0017889088 0.84729786 1.515739e-03
## 3250    1 0.0012121212 1.25276297 1.518501e-03
## 3251    1 0.0012121212 1.25276297 1.518501e-03
## 3252    1 0.0012121212 1.25276297 1.518501e-03
## 3253    1 0.0012121212 1.25276297 1.518501e-03
## 3254    1 0.0012121212 1.25276297 1.518501e-03
## 3255    1 0.0012121212 1.25276297 1.518501e-03
## 3256    1 0.0012121212 1.25276297 1.518501e-03
## 3257    1 0.0012121212 1.25276297 1.518501e-03
## 3258    4 0.0024875622 0.61090908 1.519674e-03
## 3259    1 0.0024937656 0.61090908 1.523464e-03
## 3260    1 0.0024937656 0.61090908 1.523464e-03
## 3261    1 0.0024937656 0.61090908 1.523464e-03
## 3262    1 0.0011235955 1.35812348 1.525981e-03
## 3263    1 0.0011235955 1.35812348 1.525981e-03
## 3264    1 0.0011235955 1.35812348 1.525981e-03
## 3265    1 0.0011235955 1.35812348 1.525981e-03
## 3266    1 0.0011235955 1.35812348 1.525981e-03
## 3267    1 0.0011235955 1.35812348 1.525981e-03
## 3268    1 0.0011235955 1.35812348 1.525981e-03
## 3269    1 0.0011235955 1.35812348 1.525981e-03
## 3270    1 0.0011235955 1.35812348 1.525981e-03
## 3271    1 0.0011235955 1.35812348 1.525981e-03
## 3272    1 0.0011235955 1.35812348 1.525981e-03
## 3273    1 0.0011235955 1.35812348 1.525981e-03
## 3274    1 0.0011235955 1.35812348 1.525981e-03
## 3275    1 0.0010341262 1.47590652 1.526274e-03
## 3276    1 0.0010341262 1.47590652 1.526274e-03
## 3277    1 0.0010341262 1.47590652 1.526274e-03
## 3278    1 0.0010341262 1.47590652 1.526274e-03
## 3279    1 0.0010341262 1.47590652 1.526274e-03
## 3280    1 0.0010341262 1.47590652 1.526274e-03
## 3281    1 0.0010341262 1.47590652 1.526274e-03
## 3282    1 0.0010341262 1.47590652 1.526274e-03
## 3283    1 0.0010341262 1.47590652 1.526274e-03
## 3284    1 0.0010341262 1.47590652 1.526274e-03
## 3285    1 0.0010341262 1.47590652 1.526274e-03
## 3286    5 0.0058823529 0.25951120 1.526536e-03
## 3287    3 0.0036363636 0.41985385 1.526741e-03
## 3288    6 0.0051369863 0.29725152 1.526977e-03
## 3289    1 0.0006218905 2.45673577 1.527821e-03
## 3290    1 0.0006218905 2.45673577 1.527821e-03
## 3291    1 0.0006218905 2.45673577 1.527821e-03
## 3292    1 0.0006218905 2.45673577 1.527821e-03
## 3293    1 0.0006218905 2.45673577 1.527821e-03
## 3294    1 0.0006218905 2.45673577 1.527821e-03
## 3295    1 0.0006218905 2.45673577 1.527821e-03
## 3296    1 0.0006218905 2.45673577 1.527821e-03
## 3297    1 0.0006218905 2.45673577 1.527821e-03
## 3298    1 0.0006218905 2.45673577 1.527821e-03
## 3299    1 0.0006218905 2.45673577 1.527821e-03
## 3300    1 0.0006218905 2.45673577 1.527821e-03
## 3301    1 0.0006218905 2.45673577 1.527821e-03
## 3302    1 0.0006218905 2.45673577 1.527821e-03
## 3303    1 0.0006218905 2.45673577 1.527821e-03
## 3304    1 0.0006218905 2.45673577 1.527821e-03
## 3305    1 0.0006218905 2.45673577 1.527821e-03
## 3306    1 0.0006218905 2.45673577 1.527821e-03
## 3307    1 0.0006218905 2.45673577 1.527821e-03
## 3308    1 0.0006218905 2.45673577 1.527821e-03
## 3309    1 0.0006218905 2.45673577 1.527821e-03
## 3310    1 0.0006218905 2.45673577 1.527821e-03
## 3311    1 0.0006218905 2.45673577 1.527821e-03
## 3312    1 0.0006218905 2.45673577 1.527821e-03
## 3313    1 0.0006218905 2.45673577 1.527821e-03
## 3314    1 0.0006218905 2.45673577 1.527821e-03
## 3315    1 0.0006218905 2.45673577 1.527821e-03
## 3316    1 0.0006218905 2.45673577 1.527821e-03
## 3317    1 0.0006218905 2.45673577 1.527821e-03
## 3318    1 0.0006218905 2.45673577 1.527821e-03
## 3319    1 0.0006218905 2.45673577 1.527821e-03
## 3320    1 0.0006218905 2.45673577 1.527821e-03
## 3321    1 0.0006218905 2.45673577 1.527821e-03
## 3322    1 0.0006218905 2.45673577 1.527821e-03
## 3323    1 0.0006218905 2.45673577 1.527821e-03
## 3324    1 0.0006218905 2.45673577 1.527821e-03
## 3325    1 0.0006218905 2.45673577 1.527821e-03
## 3326    1 0.0006218905 2.45673577 1.527821e-03
## 3327    1 0.0006218905 2.45673577 1.527821e-03
## 3328    1 0.0006218905 2.45673577 1.527821e-03
## 3329    1 0.0006218905 2.45673577 1.527821e-03
## 3330    1 0.0006218905 2.45673577 1.527821e-03
## 3331    1 0.0006218905 2.45673577 1.527821e-03
## 3332    1 0.0006218905 2.45673577 1.527821e-03
## 3333    1 0.0006218905 2.45673577 1.527821e-03
## 3334    1 0.0006218905 2.45673577 1.527821e-03
## 3335    1 0.0006218905 2.45673577 1.527821e-03
## 3336    4 0.0068493151 0.22314355 1.528380e-03
## 3337    2 0.0068493151 0.22314355 1.528380e-03
## 3338    3 0.0021186441 0.72213472 1.529946e-03
## 3339    1 0.0007062147 2.16905370 1.531818e-03
## 3340    1 0.0007062147 2.16905370 1.531818e-03
## 3341    1 0.0007062147 2.16905370 1.531818e-03
## 3342    1 0.0007062147 2.16905370 1.531818e-03
## 3343    1 0.0007062147 2.16905370 1.531818e-03
## 3344    1 0.0007062147 2.16905370 1.531818e-03
## 3345    1 0.0007062147 2.16905370 1.531818e-03
## 3346    1 0.0007062147 2.16905370 1.531818e-03
## 3347    1 0.0007062147 2.16905370 1.531818e-03
## 3348    1 0.0007062147 2.16905370 1.531818e-03
## 3349    1 0.0007062147 2.16905370 1.531818e-03
## 3350    1 0.0007062147 2.16905370 1.531818e-03
## 3351    1 0.0007062147 2.16905370 1.531818e-03
## 3352    1 0.0007062147 2.16905370 1.531818e-03
## 3353    1 0.0007062147 2.16905370 1.531818e-03
## 3354    1 0.0007062147 2.16905370 1.531818e-03
## 3355    1 0.0007062147 2.16905370 1.531818e-03
## 3356    1 0.0007062147 2.16905370 1.531818e-03
## 3357    1 0.0007062147 2.16905370 1.531818e-03
## 3358    1 0.0007062147 2.16905370 1.531818e-03
## 3359    1 0.0007062147 2.16905370 1.531818e-03
## 3360    1 0.0007062147 2.16905370 1.531818e-03
## 3361    1 0.0007062147 2.16905370 1.531818e-03
## 3362    1 0.0007062147 2.16905370 1.531818e-03
## 3363    1 0.0007062147 2.16905370 1.531818e-03
## 3364    1 0.0007062147 2.16905370 1.531818e-03
## 3365    1 0.0007062147 2.16905370 1.531818e-03
## 3366    1 0.0007062147 2.16905370 1.531818e-03
## 3367    1 0.0007062147 2.16905370 1.531818e-03
## 3368    1 0.0007062147 2.16905370 1.531818e-03
## 3369    1 0.0007062147 2.16905370 1.531818e-03
## 3370    1 0.0007062147 2.16905370 1.531818e-03
## 3371    1 0.0007062147 2.16905370 1.531818e-03
## 3372    1 0.0007062147 2.16905370 1.531818e-03
## 3373    1 0.0007062147 2.16905370 1.531818e-03
## 3374    1 0.0007062147 2.16905370 1.531818e-03
## 3375    1 0.0007062147 2.16905370 1.531818e-03
## 3376    4 0.0045558087 0.33647224 1.532903e-03
## 3377    4 0.0045558087 0.33647224 1.532903e-03
## 3378    3 0.0019595036 0.78275934 1.533820e-03
## 3379    3 0.0019595036 0.78275934 1.533820e-03
## 3380    3 0.0033039648 0.46430561 1.534049e-03
## 3381    2 0.0021276596 0.72213472 1.536457e-03
## 3382    1 0.0013280212 1.15745279 1.537122e-03
## 3383    1 0.0013280212 1.15745279 1.537122e-03
## 3384    1 0.0013280212 1.15745279 1.537122e-03
## 3385    1 0.0013280212 1.15745279 1.537122e-03
## 3386    1 0.0013280212 1.15745279 1.537122e-03
## 3387    1 0.0013280212 1.15745279 1.537122e-03
## 3388    1 0.0013280212 1.15745279 1.537122e-03
## 3389    1 0.0013280212 1.15745279 1.537122e-03
## 3390    1 0.0013280212 1.15745279 1.537122e-03
## 3391    5 0.0027517887 0.55961579 1.539944e-03
## 3392    2 0.0027548209 0.55961579 1.541641e-03
## 3393    1 0.0013333333 1.15745279 1.543270e-03
## 3394    1 0.0013333333 1.15745279 1.543270e-03
## 3395    1 0.0013333333 1.15745279 1.543270e-03
## 3396    1 0.0013333333 1.15745279 1.543270e-03
## 3397    1 0.0013333333 1.15745279 1.543270e-03
## 3398    1 0.0013333333 1.15745279 1.543270e-03
## 3399    1 0.0013333333 1.15745279 1.543270e-03
## 3400    1 0.0006289308 2.45673577 1.545117e-03
## 3401    1 0.0006289308 2.45673577 1.545117e-03
## 3402    1 0.0006289308 2.45673577 1.545117e-03
## 3403    1 0.0006289308 2.45673577 1.545117e-03
## 3404    1 0.0006289308 2.45673577 1.545117e-03
## 3405    1 0.0006289308 2.45673577 1.545117e-03
## 3406    1 0.0006289308 2.45673577 1.545117e-03
## 3407    1 0.0006289308 2.45673577 1.545117e-03
## 3408    1 0.0006289308 2.45673577 1.545117e-03
## 3409    1 0.0006289308 2.45673577 1.545117e-03
## 3410    1 0.0006289308 2.45673577 1.545117e-03
## 3411    1 0.0006289308 2.45673577 1.545117e-03
## 3412    1 0.0006289308 2.45673577 1.545117e-03
## 3413    1 0.0006289308 2.45673577 1.545117e-03
## 3414    1 0.0006289308 2.45673577 1.545117e-03
## 3415    1 0.0006289308 2.45673577 1.545117e-03
## 3416    1 0.0006289308 2.45673577 1.545117e-03
## 3417    1 0.0006289308 2.45673577 1.545117e-03
## 3418    1 0.0006289308 2.45673577 1.545117e-03
## 3419    1 0.0006289308 2.45673577 1.545117e-03
## 3420    1 0.0006289308 2.45673577 1.545117e-03
## 3421    1 0.0006289308 2.45673577 1.545117e-03
## 3422    1 0.0006289308 2.45673577 1.545117e-03
## 3423    1 0.0006289308 2.45673577 1.545117e-03
## 3424    1 0.0006289308 2.45673577 1.545117e-03
## 3425    1 0.0006289308 2.45673577 1.545117e-03
## 3426    1 0.0006289308 2.45673577 1.545117e-03
## 3427    1 0.0006289308 2.45673577 1.545117e-03
## 3428    1 0.0006289308 2.45673577 1.545117e-03
## 3429    1 0.0006289308 2.45673577 1.545117e-03
## 3430    1 0.0006289308 2.45673577 1.545117e-03
## 3431    1 0.0006289308 2.45673577 1.545117e-03
## 3432    1 0.0006289308 2.45673577 1.545117e-03
## 3433    1 0.0006289308 2.45673577 1.545117e-03
## 3434    1 0.0006289308 2.45673577 1.545117e-03
## 3435    1 0.0006289308 2.45673577 1.545117e-03
## 3436    1 0.0006289308 2.45673577 1.545117e-03
## 3437    1 0.0006289308 2.45673577 1.545117e-03
## 3438    1 0.0006289308 2.45673577 1.545117e-03
## 3439    1 0.0006289308 2.45673577 1.545117e-03
## 3440    1 0.0006289308 2.45673577 1.545117e-03
## 3441    1 0.0006289308 2.45673577 1.545117e-03
## 3442    1 0.0006289308 2.45673577 1.545117e-03
## 3443    1 0.0006289308 2.45673577 1.545117e-03
## 3444    1 0.0006289308 2.45673577 1.545117e-03
## 3445    1 0.0006289308 2.45673577 1.545117e-03
## 3446    1 0.0006289308 2.45673577 1.545117e-03
## 3447    1 0.0006289308 2.45673577 1.545117e-03
## 3448    1 0.0006289308 2.45673577 1.545117e-03
## 3449    1 0.0006289308 2.45673577 1.545117e-03
## 3450    1 0.0006289308 2.45673577 1.545117e-03
## 3451    1 0.0006289308 2.45673577 1.545117e-03
## 3452    1 0.0006289308 2.45673577 1.545117e-03
## 3453    1 0.0006289308 2.45673577 1.545117e-03
## 3454    1 0.0011389522 1.35812348 1.546838e-03
## 3455    1 0.0011389522 1.35812348 1.546838e-03
## 3456    1 0.0011389522 1.35812348 1.546838e-03
## 3457    1 0.0011389522 1.35812348 1.546838e-03
## 3458    1 0.0011389522 1.35812348 1.546838e-03
## 3459    1 0.0011389522 1.35812348 1.546838e-03
## 3460    1 0.0011389522 1.35812348 1.546838e-03
## 3461    1 0.0011389522 1.35812348 1.546838e-03
## 3462    1 0.0011389522 1.35812348 1.546838e-03
## 3463    2 0.0059701493 0.25951120 1.549321e-03
## 3464    5 0.0025380711 0.61090908 1.550531e-03
## 3465    2 0.0037105751 0.41985385 1.557899e-03
## 3466    2 0.0012437811 1.25276297 1.558163e-03
## 3467    2 0.0012437811 1.25276297 1.558163e-03
## 3468    2 0.0012437811 1.25276297 1.558163e-03
## 3469    2 0.0012437811 1.25276297 1.558163e-03
## 3470    2 0.0012437811 1.25276297 1.558163e-03
## 3471    2 0.0012437811 1.25276297 1.558163e-03
## 3472    2 0.0012437811 1.25276297 1.558163e-03
## 3473    3 0.0041322314 0.37729423 1.559067e-03
## 3474    3 0.0041322314 0.37729423 1.559067e-03
## 3475    4 0.0041365047 0.37729423 1.560679e-03
## 3476    1 0.0027932961 0.55961579 1.563173e-03
## 3477    1 0.0027932961 0.55961579 1.563173e-03
## 3478    1 0.0027932961 0.55961579 1.563173e-03
## 3479    2 0.0017123288 0.91629073 1.568991e-03
## 3480    2 0.0017123288 0.91629073 1.568991e-03
## 3481    1 0.0017123288 0.91629073 1.568991e-03
## 3482    1 0.0017123288 0.91629073 1.568991e-03
## 3483    1 0.0017123288 0.91629073 1.568991e-03
## 3484    1 0.0017123288 0.91629073 1.568991e-03
## 3485    1 0.0017123288 0.91629073 1.568991e-03
## 3486    3 0.0025684932 0.61090908 1.569116e-03
## 3487    3 0.0025684932 0.61090908 1.569116e-03
## 3488    1 0.0010638298 1.47590652 1.570113e-03
## 3489    1 0.0010638298 1.47590652 1.570113e-03
## 3490    1 0.0010638298 1.47590652 1.570113e-03
## 3491    1 0.0010638298 1.47590652 1.570113e-03
## 3492    1 0.0010638298 1.47590652 1.570113e-03
## 3493    1 0.0010638298 1.47590652 1.570113e-03
## 3494    1 0.0010638298 1.47590652 1.570113e-03
## 3495    1 0.0010638298 1.47590652 1.570113e-03
## 3496    1 0.0010638298 1.47590652 1.570113e-03
## 3497    1 0.0010638298 1.47590652 1.570113e-03
## 3498    1 0.0010638298 1.47590652 1.570113e-03
## 3499    1 0.0010638298 1.47590652 1.570113e-03
## 3500    1 0.0010638298 1.47590652 1.570113e-03
## 3501    1 0.0010638298 1.47590652 1.570113e-03
## 3502    1 0.0018552876 0.84729786 1.571981e-03
## 3503    1 0.0018552876 0.84729786 1.571981e-03
## 3504    1 0.0018552876 0.84729786 1.571981e-03
## 3505    1 0.0023640662 0.66497630 1.572048e-03
## 3506    1 0.0023640662 0.66497630 1.572048e-03
## 3507    1 0.0005503577 2.86220088 1.575234e-03
## 3508    1 0.0005503577 2.86220088 1.575234e-03
## 3509    1 0.0005503577 2.86220088 1.575234e-03
## 3510    1 0.0005503577 2.86220088 1.575234e-03
## 3511    1 0.0005503577 2.86220088 1.575234e-03
## 3512    1 0.0005503577 2.86220088 1.575234e-03
## 3513    1 0.0005503577 2.86220088 1.575234e-03
## 3514    1 0.0005503577 2.86220088 1.575234e-03
## 3515    1 0.0005503577 2.86220088 1.575234e-03
## 3516    1 0.0005503577 2.86220088 1.575234e-03
## 3517    1 0.0005503577 2.86220088 1.575234e-03
## 3518    1 0.0005503577 2.86220088 1.575234e-03
## 3519    1 0.0005503577 2.86220088 1.575234e-03
## 3520    1 0.0005503577 2.86220088 1.575234e-03
## 3521    1 0.0005503577 2.86220088 1.575234e-03
## 3522    1 0.0005503577 2.86220088 1.575234e-03
## 3523    1 0.0005503577 2.86220088 1.575234e-03
## 3524    1 0.0005503577 2.86220088 1.575234e-03
## 3525    1 0.0005503577 2.86220088 1.575234e-03
## 3526    1 0.0005503577 2.86220088 1.575234e-03
## 3527    1 0.0005503577 2.86220088 1.575234e-03
## 3528    1 0.0005503577 2.86220088 1.575234e-03
## 3529    1 0.0005503577 2.86220088 1.575234e-03
## 3530    1 0.0005503577 2.86220088 1.575234e-03
## 3531    1 0.0005503577 2.86220088 1.575234e-03
## 3532    1 0.0005503577 2.86220088 1.575234e-03
## 3533    1 0.0005503577 2.86220088 1.575234e-03
## 3534    1 0.0005503577 2.86220088 1.575234e-03
## 3535    1 0.0005503577 2.86220088 1.575234e-03
## 3536    1 0.0005503577 2.86220088 1.575234e-03
## 3537    1 0.0005503577 2.86220088 1.575234e-03
## 3538    1 0.0005503577 2.86220088 1.575234e-03
## 3539    1 0.0005503577 2.86220088 1.575234e-03
## 3540    1 0.0005503577 2.86220088 1.575234e-03
## 3541    1 0.0005503577 2.86220088 1.575234e-03
## 3542    1 0.0005503577 2.86220088 1.575234e-03
## 3543    1 0.0005503577 2.86220088 1.575234e-03
## 3544    1 0.0005503577 2.86220088 1.575234e-03
## 3545    1 0.0005503577 2.86220088 1.575234e-03
## 3546    1 0.0005503577 2.86220088 1.575234e-03
## 3547    1 0.0005503577 2.86220088 1.575234e-03
## 3548    1 0.0005503577 2.86220088 1.575234e-03
## 3549    1 0.0005503577 2.86220088 1.575234e-03
## 3550    1 0.0005503577 2.86220088 1.575234e-03
## 3551    1 0.0005503577 2.86220088 1.575234e-03
## 3552    1 0.0005503577 2.86220088 1.575234e-03
## 3553    1 0.0005503577 2.86220088 1.575234e-03
## 3554    1 0.0005503577 2.86220088 1.575234e-03
## 3555    1 0.0005503577 2.86220088 1.575234e-03
## 3556    1 0.0005503577 2.86220088 1.575234e-03
## 3557    1 0.0005503577 2.86220088 1.575234e-03
## 3558    1 0.0005503577 2.86220088 1.575234e-03
## 3559    1 0.0005503577 2.86220088 1.575234e-03
## 3560    1 0.0005503577 2.86220088 1.575234e-03
## 3561    1 0.0005503577 2.86220088 1.575234e-03
## 3562    1 0.0005503577 2.86220088 1.575234e-03
## 3563    1 0.0005503577 2.86220088 1.575234e-03
## 3564    1 0.0005503577 2.86220088 1.575234e-03
## 3565    1 0.0005503577 2.86220088 1.575234e-03
## 3566    1 0.0005503577 2.86220088 1.575234e-03
## 3567    1 0.0005503577 2.86220088 1.575234e-03
## 3568    1 0.0005503577 2.86220088 1.575234e-03
## 3569    1 0.0005503577 2.86220088 1.575234e-03
## 3570    1 0.0005503577 2.86220088 1.575234e-03
## 3571    1 0.0005503577 2.86220088 1.575234e-03
## 3572    1 0.0005503577 2.86220088 1.575234e-03
## 3573    1 0.0005503577 2.86220088 1.575234e-03
## 3574    1 0.0005503577 2.86220088 1.575234e-03
## 3575    1 0.0005503577 2.86220088 1.575234e-03
## 3576    1 0.0005503577 2.86220088 1.575234e-03
## 3577    1 0.0005503577 2.86220088 1.575234e-03
## 3578    1 0.0005503577 2.86220088 1.575234e-03
## 3579    1 0.0005503577 2.86220088 1.575234e-03
## 3580    1 0.0005503577 2.86220088 1.575234e-03
## 3581    1 0.0005503577 2.86220088 1.575234e-03
## 3582    1 0.0005503577 2.86220088 1.575234e-03
## 3583    1 0.0005503577 2.86220088 1.575234e-03
## 3584    1 0.0005503577 2.86220088 1.575234e-03
## 3585    1 0.0005503577 2.86220088 1.575234e-03
## 3586    1 0.0005503577 2.86220088 1.575234e-03
## 3587    1 0.0005503577 2.86220088 1.575234e-03
## 3588    1 0.0005503577 2.86220088 1.575234e-03
## 3589    1 0.0005503577 2.86220088 1.575234e-03
## 3590    1 0.0005503577 2.86220088 1.575234e-03
## 3591    1 0.0005503577 2.86220088 1.575234e-03
## 3592    1 0.0005503577 2.86220088 1.575234e-03
## 3593    1 0.0005503577 2.86220088 1.575234e-03
## 3594    1 0.0005503577 2.86220088 1.575234e-03
## 3595    1 0.0005503577 2.86220088 1.575234e-03
## 3596    1 0.0005503577 2.86220088 1.575234e-03
## 3597    1 0.0005503577 2.86220088 1.575234e-03
## 3598    1 0.0005503577 2.86220088 1.575234e-03
## 3599    2 0.0012578616 1.25276297 1.575802e-03
## 3600    2 0.0012578616 1.25276297 1.575802e-03
## 3601    2 0.0012578616 1.25276297 1.575802e-03
## 3602    2 0.0012578616 1.25276297 1.575802e-03
## 3603    2 0.0012578616 1.25276297 1.575802e-03
## 3604    2 0.0012578616 1.25276297 1.575802e-03
## 3605    3 0.0083798883 0.18805223 1.575857e-03
## 3606    3 0.0018656716 0.84729786 1.580780e-03
## 3607    3 0.0018656716 0.84729786 1.580780e-03
## 3608    3 0.0018656716 0.84729786 1.580780e-03
## 3609    1 0.0060975610 0.25951120 1.582385e-03
## 3610    1 0.0060975610 0.25951120 1.582385e-03
## 3611    2 0.0020242915 0.78275934 1.584533e-03
## 3612    2 0.0020242915 0.78275934 1.584533e-03
## 3613    4 0.0022014309 0.72213472 1.589730e-03
## 3614    2 0.0034246575 0.46430561 1.590088e-03
## 3615    2 0.0047281324 0.33647224 1.590885e-03
## 3616    2 0.0047281324 0.33647224 1.590885e-03
## 3617    1 0.0013774105 1.15745279 1.594288e-03
## 3618    1 0.0013774105 1.15745279 1.594288e-03
## 3619    1 0.0013774105 1.15745279 1.594288e-03
## 3620    1 0.0013774105 1.15745279 1.594288e-03
## 3621    1 0.0013774105 1.15745279 1.594288e-03
## 3622    1 0.0013774105 1.15745279 1.594288e-03
## 3623    1 0.0013774105 1.15745279 1.594288e-03
## 3624    1 0.0013774105 1.15745279 1.594288e-03
## 3625    1 0.0013774105 1.15745279 1.594288e-03
## 3626    1 0.0013774105 1.15745279 1.594288e-03
## 3627    1 0.0013774105 1.15745279 1.594288e-03
## 3628    1 0.0013774105 1.15745279 1.594288e-03
## 3629    4 0.0026126715 0.61090908 1.596105e-03
## 3630    1 0.0011764706 1.35812348 1.597792e-03
## 3631    1 0.0011764706 1.35812348 1.597792e-03
## 3632    1 0.0011764706 1.35812348 1.597792e-03
## 3633    1 0.0011764706 1.35812348 1.597792e-03
## 3634    1 0.0011764706 1.35812348 1.597792e-03
## 3635    1 0.0011764706 1.35812348 1.597792e-03
## 3636    3 0.0018867925 0.84729786 1.598675e-03
## 3637    3 0.0018867925 0.84729786 1.598675e-03
## 3638    1 0.0006531679 2.45673577 1.604661e-03
## 3639    1 0.0006531679 2.45673577 1.604661e-03
## 3640    1 0.0006531679 2.45673577 1.604661e-03
## 3641    1 0.0006531679 2.45673577 1.604661e-03
## 3642    1 0.0006531679 2.45673577 1.604661e-03
## 3643    1 0.0006531679 2.45673577 1.604661e-03
## 3644    1 0.0006531679 2.45673577 1.604661e-03
## 3645    1 0.0006531679 2.45673577 1.604661e-03
## 3646    1 0.0006531679 2.45673577 1.604661e-03
## 3647    1 0.0006531679 2.45673577 1.604661e-03
## 3648    1 0.0006531679 2.45673577 1.604661e-03
## 3649    1 0.0006531679 2.45673577 1.604661e-03
## 3650    1 0.0006531679 2.45673577 1.604661e-03
## 3651    1 0.0006531679 2.45673577 1.604661e-03
## 3652    1 0.0006531679 2.45673577 1.604661e-03
## 3653    1 0.0006531679 2.45673577 1.604661e-03
## 3654    1 0.0006531679 2.45673577 1.604661e-03
## 3655    1 0.0006531679 2.45673577 1.604661e-03
## 3656    1 0.0006531679 2.45673577 1.604661e-03
## 3657    1 0.0006531679 2.45673577 1.604661e-03
## 3658    1 0.0006531679 2.45673577 1.604661e-03
## 3659    1 0.0006531679 2.45673577 1.604661e-03
## 3660    1 0.0006531679 2.45673577 1.604661e-03
## 3661    1 0.0006531679 2.45673577 1.604661e-03
## 3662    1 0.0006531679 2.45673577 1.604661e-03
## 3663    1 0.0006531679 2.45673577 1.604661e-03
## 3664    1 0.0006531679 2.45673577 1.604661e-03
## 3665    1 0.0006531679 2.45673577 1.604661e-03
## 3666    1 0.0034602076 0.46430561 1.606594e-03
## 3667    1 0.0016233766 0.99039870 1.607790e-03
## 3668    1 0.0016233766 0.99039870 1.607790e-03
## 3669    1 0.0016233766 0.99039870 1.607790e-03
## 3670    1 0.0016233766 0.99039870 1.607790e-03
## 3671    5 0.0085616438 0.18805223 1.610036e-03
## 3672    6 0.0062047570 0.25951120 1.610204e-03
## 3673    6 0.0062047570 0.25951120 1.610204e-03
## 3674    1 0.0026385224 0.61090908 1.611897e-03
## 3675    1 0.0026385224 0.61090908 1.611897e-03
## 3676    1 0.0026385224 0.61090908 1.611897e-03
## 3677    2 0.0024242424 0.66497630 1.612064e-03
## 3678    2 0.0024242424 0.66497630 1.612064e-03
## 3679    2 0.0024242424 0.66497630 1.612064e-03
## 3680    2 0.0024242424 0.66497630 1.612064e-03
## 3681    7 0.0038525041 0.41985385 1.617489e-03
## 3682    2 0.0020682523 0.78275934 1.618944e-03
## 3683    2 0.0020682523 0.78275934 1.618944e-03
## 3684    2 0.0020682523 0.78275934 1.618944e-03
## 3685    2 0.0026560425 0.61090908 1.622600e-03
## 3686    2 0.0022471910 0.72213472 1.622775e-03
## 3687    2 0.0022471910 0.72213472 1.622775e-03
## 3688    2 0.0022471910 0.72213472 1.622775e-03
## 3689    2 0.0022471910 0.72213472 1.622775e-03
## 3690    2 0.0011007155 1.47590652 1.624553e-03
## 3691    2 0.0011007155 1.47590652 1.624553e-03
## 3692    2 0.0011007155 1.47590652 1.624553e-03
## 3693    2 0.0011007155 1.47590652 1.624553e-03
## 3694    2 0.0011007155 1.47590652 1.624553e-03
## 3695    2 0.0011007155 1.47590652 1.624553e-03
## 3696    2 0.0011007155 1.47590652 1.624553e-03
## 3697    2 0.0011007155 1.47590652 1.624553e-03
## 3698    1 0.0011013216 1.47590652 1.625448e-03
## 3699    1 0.0011013216 1.47590652 1.625448e-03
## 3700    1 0.0011013216 1.47590652 1.625448e-03
## 3701    1 0.0011013216 1.47590652 1.625448e-03
## 3702    1 0.0011013216 1.47590652 1.625448e-03
## 3703    1 0.0011013216 1.47590652 1.625448e-03
## 3704    1 0.0029069767 0.55961579 1.626790e-03
## 3705    1 0.0029069767 0.55961579 1.626790e-03
## 3706    1 0.0029069767 0.55961579 1.626790e-03
## 3707    1 0.0010121457 1.60943791 1.628986e-03
## 3708    1 0.0010121457 1.60943791 1.628986e-03
## 3709    1 0.0010121457 1.60943791 1.628986e-03
## 3710    1 0.0010121457 1.60943791 1.628986e-03
## 3711    1 0.0010121457 1.60943791 1.628986e-03
## 3712    1 0.0010121457 1.60943791 1.628986e-03
## 3713    1 0.0010121457 1.60943791 1.628986e-03
## 3714    1 0.0010121457 1.60943791 1.628986e-03
## 3715    1 0.0010121457 1.60943791 1.628986e-03
## 3716    1 0.0010121457 1.60943791 1.628986e-03
## 3717    1 0.0010121457 1.60943791 1.628986e-03
## 3718    1 0.0010121457 1.60943791 1.628986e-03
## 3719    1 0.0010121457 1.60943791 1.628986e-03
## 3720    1 0.0010121457 1.60943791 1.628986e-03
## 3721    1 0.0010121457 1.60943791 1.628986e-03
## 3722    1 0.0010121457 1.60943791 1.628986e-03
## 3723    2 0.0026666667 0.61090908 1.629091e-03
## 3724    2 0.0026666667 0.61090908 1.629091e-03
## 3725    2 0.0026666667 0.61090908 1.629091e-03
## 3726    3 0.0015228426 1.07044141 1.630114e-03
## 3727    4 0.0048484848 0.33647224 1.631381e-03
## 3728    1 0.0024570025 0.66497630 1.633848e-03
## 3729    1 0.0024570025 0.66497630 1.633848e-03
## 3730    1 0.0024570025 0.66497630 1.633848e-03
## 3731    2 0.0010152284 1.60943791 1.633947e-03
## 3732    2 0.0010152284 1.60943791 1.633947e-03
## 3733    2 0.0010152284 1.60943791 1.633947e-03
## 3734    2 0.0010152284 1.60943791 1.633947e-03
## 3735    2 0.0010152284 1.60943791 1.633947e-03
## 3736    2 0.0010152284 1.60943791 1.633947e-03
## 3737    2 0.0010152284 1.60943791 1.633947e-03
## 3738    2 0.0010152284 1.60943791 1.633947e-03
## 3739    2 0.0014124294 1.15745279 1.634820e-03
## 3740    2 0.0014124294 1.15745279 1.634820e-03
## 3741    2 0.0014124294 1.15745279 1.634820e-03
## 3742    2 0.0014124294 1.15745279 1.634820e-03
## 3743    3 0.0016510732 0.99039870 1.635221e-03
## 3744    3 0.0016510732 0.99039870 1.635221e-03
## 3745    3 0.0016510732 0.99039870 1.635221e-03
## 3746    3 0.0016510732 0.99039870 1.635221e-03
## 3747    2 0.0013063357 1.25276297 1.636529e-03
## 3748    2 0.0013063357 1.25276297 1.636529e-03
## 3749    2 0.0013063357 1.25276297 1.636529e-03
## 3750    4 0.0055096419 0.29725152 1.637749e-03
## 3751    3 0.0048701299 0.33647224 1.638663e-03
## 3752    1 0.0017889088 0.91629073 1.639161e-03
## 3753    1 0.0017889088 0.91629073 1.639161e-03
## 3754    1 0.0017889088 0.91629073 1.639161e-03
## 3755    1 0.0017889088 0.91629073 1.639161e-03
## 3756    1 0.0017889088 0.91629073 1.639161e-03
## 3757    1 0.0017889088 0.91629073 1.639161e-03
## 3758    1 0.0017889088 0.91629073 1.639161e-03
## 3759    1 0.0017889088 0.91629073 1.639161e-03
## 3760    1 0.0017889088 0.91629073 1.639161e-03
## 3761    1 0.0017889088 0.91629073 1.639161e-03
## 3762    5 0.0035310734 0.46430561 1.639497e-03
## 3763    2 0.0022779043 0.72213472 1.644954e-03
## 3764    1 0.0012121212 1.35812348 1.646210e-03
## 3765    1 0.0012121212 1.35812348 1.646210e-03
## 3766    1 0.0012121212 1.35812348 1.646210e-03
## 3767    1 0.0012121212 1.35812348 1.646210e-03
## 3768    1 0.0012121212 1.35812348 1.646210e-03
## 3769    1 0.0012121212 1.35812348 1.646210e-03
## 3770    1 0.0012121212 1.35812348 1.646210e-03
## 3771    1 0.0012121212 1.35812348 1.646210e-03
## 3772    1 0.0012121212 1.35812348 1.646210e-03
## 3773    1 0.0012121212 1.35812348 1.646210e-03
## 3774    1 0.0012121212 1.35812348 1.646210e-03
## 3775    1 0.0012121212 1.35812348 1.646210e-03
## 3776    1 0.0012121212 1.35812348 1.646210e-03
## 3777    1 0.0026954178 0.61090908 1.646655e-03
## 3778    2 0.0049140049 0.33647224 1.653426e-03
## 3779    2 0.0049140049 0.33647224 1.653426e-03
## 3780    6 0.0063829787 0.25951120 1.656454e-03
## 3781    8 0.0088105727 0.18805223 1.656848e-03
## 3782    1 0.0024937656 0.66497630 1.658295e-03
## 3783    1 0.0024937656 0.66497630 1.658295e-03
## 3784    1 0.0024937656 0.66497630 1.658295e-03
## 3785    1 0.0011235955 1.47590652 1.658322e-03
## 3786    1 0.0011235955 1.47590652 1.658322e-03
## 3787    1 0.0011235955 1.47590652 1.658322e-03
## 3788    1 0.0011235955 1.47590652 1.658322e-03
## 3789    1 0.0011235955 1.47590652 1.658322e-03
## 3790    1 0.0011235955 1.47590652 1.658322e-03
## 3791    1 0.0011235955 1.47590652 1.658322e-03
## 3792    1 0.0011235955 1.47590652 1.658322e-03
## 3793    1 0.0011235955 1.47590652 1.658322e-03
## 3794    1 0.0011235955 1.47590652 1.658322e-03
## 3795    1 0.0011235955 1.47590652 1.658322e-03
## 3796    1 0.0011235955 1.47590652 1.658322e-03
## 3797    1 0.0011235955 1.47590652 1.658322e-03
## 3798    1 0.0011235955 1.47590652 1.658322e-03
## 3799    3 0.0021186441 0.78275934 1.658388e-03
## 3800    3 0.0021186441 0.78275934 1.658388e-03
## 3801    2 0.0032467532 0.51082562 1.658525e-03
## 3802    3 0.0019595036 0.84729786 1.660283e-03
## 3803    1 0.0013280212 1.25276297 1.663696e-03
## 3804    1 0.0013280212 1.25276297 1.663696e-03
## 3805    1 0.0013280212 1.25276297 1.663696e-03
## 3806    1 0.0013280212 1.25276297 1.663696e-03
## 3807    1 0.0013280212 1.25276297 1.663696e-03
## 3808    1 0.0013280212 1.25276297 1.663696e-03
## 3809    1 0.0013280212 1.25276297 1.663696e-03
## 3810    1 0.0013280212 1.25276297 1.663696e-03
## 3811    1 0.0013280212 1.25276297 1.663696e-03
## 3812    1 0.0013280212 1.25276297 1.663696e-03
## 3813    1 0.0010341262 1.60943791 1.664362e-03
## 3814    1 0.0010341262 1.60943791 1.664362e-03
## 3815    1 0.0010341262 1.60943791 1.664362e-03
## 3816    1 0.0010341262 1.60943791 1.664362e-03
## 3817    1 0.0010341262 1.60943791 1.664362e-03
## 3818    1 0.0010341262 1.60943791 1.664362e-03
## 3819    1 0.0010341262 1.60943791 1.664362e-03
## 3820    1 0.0010341262 1.60943791 1.664362e-03
## 3821    1 0.0010341262 1.60943791 1.664362e-03
## 3822    1 0.0010341262 1.60943791 1.664362e-03
## 3823    1 0.0010341262 1.60943791 1.664362e-03
## 3824    1 0.0010341262 1.60943791 1.664362e-03
## 3825    1 0.0010341262 1.60943791 1.664362e-03
## 3826    1 0.0010341262 1.60943791 1.664362e-03
## 3827    1 0.0010341262 1.60943791 1.664362e-03
## 3828    1 0.0010341262 1.60943791 1.664362e-03
## 3829    1 0.0010341262 1.60943791 1.664362e-03
## 3830    1 0.0010341262 1.60943791 1.664362e-03
## 3831    1 0.0010341262 1.60943791 1.664362e-03
## 3832    1 0.0010341262 1.60943791 1.664362e-03
## 3833    1 0.0008561644 1.94591015 1.666019e-03
## 3834    1 0.0008561644 1.94591015 1.666019e-03
## 3835    1 0.0008561644 1.94591015 1.666019e-03
## 3836    1 0.0008561644 1.94591015 1.666019e-03
## 3837    1 0.0008561644 1.94591015 1.666019e-03
## 3838    1 0.0008561644 1.94591015 1.666019e-03
## 3839    1 0.0008561644 1.94591015 1.666019e-03
## 3840    1 0.0008561644 1.94591015 1.666019e-03
## 3841    1 0.0008561644 1.94591015 1.666019e-03
## 3842    1 0.0008561644 1.94591015 1.666019e-03
## 3843    1 0.0008561644 1.94591015 1.666019e-03
## 3844    1 0.0008561644 1.94591015 1.666019e-03
## 3845    1 0.0008561644 1.94591015 1.666019e-03
## 3846    1 0.0008561644 1.94591015 1.666019e-03
## 3847    1 0.0008561644 1.94591015 1.666019e-03
## 3848    1 0.0008561644 1.94591015 1.666019e-03
## 3849    1 0.0008561644 1.94591015 1.666019e-03
## 3850    1 0.0008561644 1.94591015 1.666019e-03
## 3851    1 0.0008561644 1.94591015 1.666019e-03
## 3852    9 0.0049532196 0.33647224 1.666621e-03
## 3853    5 0.0056179775 0.29725152 1.669952e-03
## 3854    1 0.0013333333 1.25276297 1.670351e-03
## 3855    1 0.0013333333 1.25276297 1.670351e-03
## 3856    1 0.0013333333 1.25276297 1.670351e-03
## 3857    1 0.0013333333 1.25276297 1.670351e-03
## 3858    1 0.0013333333 1.25276297 1.670351e-03
## 3859    1 0.0013333333 1.25276297 1.670351e-03
## 3860    1 0.0013333333 1.25276297 1.670351e-03
## 3861    1 0.0013333333 1.25276297 1.670351e-03
## 3862    1 0.0013333333 1.25276297 1.670351e-03
## 3863    1 0.0013333333 1.25276297 1.670351e-03
## 3864    1 0.0013333333 1.25276297 1.670351e-03
## 3865    1 0.0013333333 1.25276297 1.670351e-03
## 3866    1 0.0029850746 0.55961579 1.670495e-03
## 3867    1 0.0029850746 0.55961579 1.670495e-03
## 3868    8 0.0049751244 0.33647224 1.673991e-03
## 3869    2 0.0049875312 0.33647224 1.678166e-03
## 3870    1 0.0011389522 1.47590652 1.680987e-03
## 3871    1 0.0011389522 1.47590652 1.680987e-03
## 3872    1 0.0011389522 1.47590652 1.680987e-03
## 3873    1 0.0011389522 1.47590652 1.680987e-03
## 3874    1 0.0011389522 1.47590652 1.680987e-03
## 3875    1 0.0011389522 1.47590652 1.680987e-03
## 3876    1 0.0011389522 1.47590652 1.680987e-03
## 3877    1 0.0011389522 1.47590652 1.680987e-03
## 3878    1 0.0011389522 1.47590652 1.680987e-03
## 3879    1 0.0011389522 1.47590652 1.680987e-03
## 3880    1 0.0011389522 1.47590652 1.680987e-03
## 3881    1 0.0011389522 1.47590652 1.680987e-03
## 3882    1 0.0011389522 1.47590652 1.680987e-03
## 3883    1 0.0011389522 1.47590652 1.680987e-03
## 3884    1 0.0011389522 1.47590652 1.680987e-03
## 3885    1 0.0011389522 1.47590652 1.680987e-03
## 3886    5 0.0027517887 0.61090908 1.681093e-03
## 3887    5 0.0027517887 0.61090908 1.681093e-03
## 3888    2 0.0027548209 0.61090908 1.682945e-03
## 3889    2 0.0027548209 0.61090908 1.682945e-03
## 3890    2 0.0012437811 1.35812348 1.689208e-03
## 3891    2 0.0012437811 1.35812348 1.689208e-03
## 3892    2 0.0012437811 1.35812348 1.689208e-03
## 3893    2 0.0012437811 1.35812348 1.689208e-03
## 3894    2 0.0012437811 1.35812348 1.689208e-03
## 3895    2 0.0012437811 1.35812348 1.689208e-03
## 3896    2 0.0012437811 1.35812348 1.689208e-03
## 3897    2 0.0012437811 1.35812348 1.689208e-03
## 3898    2 0.0012437811 1.35812348 1.689208e-03
## 3899    8 0.0050314465 0.33647224 1.692942e-03
## 3900    1 0.0017123288 0.99039870 1.695888e-03
## 3901    1 0.0017123288 0.99039870 1.695888e-03
## 3902    1 0.0017123288 0.99039870 1.695888e-03
## 3903    1 0.0017123288 0.99039870 1.695888e-03
## 3904    1 0.0017123288 0.99039870 1.695888e-03
## 3905    1 0.0017123288 0.99039870 1.695888e-03
## 3906    1 0.0017123288 0.99039870 1.695888e-03
## 3907    2 0.0023529412 0.72213472 1.699141e-03
## 3908    3 0.0030364372 0.55961579 1.699238e-03
## 3909    4 0.0040485830 0.41985385 1.699813e-03
## 3910    1 0.0018552876 0.91629073 1.699983e-03
## 3911    1 0.0018552876 0.91629073 1.699983e-03
## 3912    1 0.0018552876 0.91629073 1.699983e-03
## 3913    6 0.0030456853 0.55961579 1.704414e-03
## 3914    8 0.0040609137 0.41985385 1.704990e-03
## 3915    1 0.0023640662 0.72213472 1.707174e-03
## 3916    1 0.0023640662 0.72213472 1.707174e-03
## 3917    1 0.0023640662 0.72213472 1.707174e-03
## 3918    3 0.0065789474 0.25951120 1.707310e-03
## 3919    2 0.0012578616 1.35812348 1.708331e-03
## 3920    2 0.0012578616 1.35812348 1.708331e-03
## 3921    2 0.0012578616 1.35812348 1.708331e-03
## 3922    2 0.0012578616 1.35812348 1.708331e-03
## 3923    2 0.0012578616 1.35812348 1.708331e-03
## 3924    2 0.0012578616 1.35812348 1.708331e-03
## 3925    2 0.0012578616 1.35812348 1.708331e-03
## 3926    3 0.0018656716 0.91629073 1.709498e-03
## 3927    3 0.0018656716 0.91629073 1.709498e-03
## 3928    3 0.0018656716 0.91629073 1.709498e-03
## 3929    1 0.0010638298 1.60943791 1.712168e-03
## 3930    1 0.0010638298 1.60943791 1.712168e-03
## 3931    1 0.0010638298 1.60943791 1.712168e-03
## 3932    1 0.0010638298 1.60943791 1.712168e-03
## 3933    1 0.0010638298 1.60943791 1.712168e-03
## 3934    1 0.0010638298 1.60943791 1.712168e-03
## 3935    1 0.0010638298 1.60943791 1.712168e-03
## 3936    1 0.0010638298 1.60943791 1.712168e-03
## 3937    1 0.0010638298 1.60943791 1.712168e-03
## 3938    1 0.0010638298 1.60943791 1.712168e-03
## 3939    1 0.0010638298 1.60943791 1.712168e-03
## 3940    1 0.0010638298 1.60943791 1.712168e-03
## 3941    1 0.0010638298 1.60943791 1.712168e-03
## 3942    1 0.0010638298 1.60943791 1.712168e-03
## 3943    1 0.0010638298 1.60943791 1.712168e-03
## 3944    1 0.0010638298 1.60943791 1.712168e-03
## 3945    1 0.0010638298 1.60943791 1.712168e-03
## 3946    1 0.0010638298 1.60943791 1.712168e-03
## 3947    1 0.0010638298 1.60943791 1.712168e-03
## 3948    1 0.0010638298 1.60943791 1.712168e-03
## 3949    9 0.0091093117 0.18805223 1.713026e-03
## 3950    1 0.0045454545 0.37729423 1.714974e-03
## 3951    2 0.0020242915 0.84729786 1.715178e-03
## 3952    1 0.0021929825 0.78275934 1.716577e-03
## 3953    1 0.0021929825 0.78275934 1.716577e-03
## 3954    1 0.0021929825 0.78275934 1.716577e-03
## 3955    4 0.0020304569 0.84729786 1.720402e-03
## 3956    2 0.0037105751 0.46430561 1.722841e-03
## 3957    4 0.0022014309 0.78275934 1.723191e-03
## 3958    2 0.0022026432 0.78275934 1.724140e-03
## 3959    1 0.0013774105 1.25276297 1.725569e-03
## 3960    1 0.0013774105 1.25276297 1.725569e-03
## 3961    1 0.0013774105 1.25276297 1.725569e-03
## 3962    1 0.0013774105 1.25276297 1.725569e-03
## 3963    1 0.0013774105 1.25276297 1.725569e-03
## 3964    1 0.0013774105 1.25276297 1.725569e-03
## 3965    1 0.0013774105 1.25276297 1.725569e-03
## 3966    1 0.0013774105 1.25276297 1.725569e-03
## 3967    1 0.0013774105 1.25276297 1.725569e-03
## 3968    1 0.0013774105 1.25276297 1.725569e-03
## 3969    1 0.0013774105 1.25276297 1.725569e-03
## 3970    1 0.0013774105 1.25276297 1.725569e-03
## 3971    1 0.0013774105 1.25276297 1.725569e-03
## 3972    1 0.0013774105 1.25276297 1.725569e-03
## 3973    4 0.0028248588 0.61090908 1.725732e-03
## 3974    4 0.0028248588 0.61090908 1.725732e-03
## 3975    1 0.0007062147 2.45673577 1.734983e-03
## 3976    1 0.0007062147 2.45673577 1.734983e-03
## 3977    1 0.0007062147 2.45673577 1.734983e-03
## 3978    1 0.0007062147 2.45673577 1.734983e-03
## 3979    1 0.0007062147 2.45673577 1.734983e-03
## 3980    1 0.0007062147 2.45673577 1.734983e-03
## 3981    1 0.0007062147 2.45673577 1.734983e-03
## 3982    1 0.0007062147 2.45673577 1.734983e-03
## 3983    1 0.0007062147 2.45673577 1.734983e-03
## 3984    1 0.0007062147 2.45673577 1.734983e-03
## 3985    1 0.0007062147 2.45673577 1.734983e-03
## 3986    1 0.0007062147 2.45673577 1.734983e-03
## 3987    1 0.0007062147 2.45673577 1.734983e-03
## 3988    1 0.0007062147 2.45673577 1.734983e-03
## 3989    1 0.0007062147 2.45673577 1.734983e-03
## 3990    1 0.0007062147 2.45673577 1.734983e-03
## 3991    1 0.0007062147 2.45673577 1.734983e-03
## 3992    1 0.0007062147 2.45673577 1.734983e-03
## 3993    1 0.0007062147 2.45673577 1.734983e-03
## 3994    1 0.0007062147 2.45673577 1.734983e-03
## 3995    1 0.0007062147 2.45673577 1.734983e-03
## 3996    1 0.0007062147 2.45673577 1.734983e-03
## 3997    1 0.0007062147 2.45673577 1.734983e-03
## 3998    1 0.0007062147 2.45673577 1.734983e-03
## 3999    1 0.0007062147 2.45673577 1.734983e-03
## 4000    1 0.0007062147 2.45673577 1.734983e-03
## 4001    1 0.0007062147 2.45673577 1.734983e-03
## 4002    1 0.0007062147 2.45673577 1.734983e-03
## 4003    1 0.0007062147 2.45673577 1.734983e-03
## 4004    1 0.0007062147 2.45673577 1.734983e-03
## 4005    1 0.0007062147 2.45673577 1.734983e-03
## 4006    1 0.0007062147 2.45673577 1.734983e-03
## 4007    1 0.0007062147 2.45673577 1.734983e-03
## 4008    1 0.0007062147 2.45673577 1.734983e-03
## 4009    1 0.0007062147 2.45673577 1.734983e-03
## 4010    1 0.0007062147 2.45673577 1.734983e-03
## 4011    1 0.0007062147 2.45673577 1.734983e-03
## 4012    1 0.0007062147 2.45673577 1.734983e-03
## 4013    1 0.0007062147 2.45673577 1.734983e-03
## 4014    1 0.0007062147 2.45673577 1.734983e-03
## 4015    1 0.0007062147 2.45673577 1.734983e-03
## 4016    1 0.0007062147 2.45673577 1.734983e-03
## 4017    1 0.0007062147 2.45673577 1.734983e-03
## 4018    1 0.0007062147 2.45673577 1.734983e-03
## 4019    1 0.0007062147 2.45673577 1.734983e-03
## 4020    1 0.0007062147 2.45673577 1.734983e-03
## 4021    1 0.0007062147 2.45673577 1.734983e-03
## 4022    1 0.0007062147 2.45673577 1.734983e-03
## 4023    1 0.0007062147 2.45673577 1.734983e-03
## 4024    1 0.0007062147 2.45673577 1.734983e-03
## 4025    1 0.0007062147 2.45673577 1.734983e-03
## 4026    3 0.0031023785 0.55961579 1.736140e-03
## 4027    3 0.0031023785 0.55961579 1.736140e-03
## 4028    3 0.0031023785 0.55961579 1.736140e-03
## 4029    1 0.0011764706 1.47590652 1.736361e-03
## 4030    1 0.0011764706 1.47590652 1.736361e-03
## 4031    1 0.0011764706 1.47590652 1.736361e-03
## 4032    1 0.0011764706 1.47590652 1.736361e-03
## 4033    1 0.0011764706 1.47590652 1.736361e-03
## 4034    1 0.0011764706 1.47590652 1.736361e-03
## 4035    1 0.0011764706 1.47590652 1.736361e-03
## 4036    1 0.0011764706 1.47590652 1.736361e-03
## 4037    1 0.0016233766 1.07044141 1.737730e-03
## 4038    1 0.0016233766 1.07044141 1.737730e-03
## 4039    1 0.0016233766 1.07044141 1.737730e-03
## 4040    1 0.0016233766 1.07044141 1.737730e-03
## 4041    1 0.0016233766 1.07044141 1.737730e-03
## 4042    1 0.0016233766 1.07044141 1.737730e-03
## 4043    5 0.0051706308 0.33647224 1.739774e-03
## 4044    2 0.0034246575 0.51082562 1.749403e-03
## 4045    1 0.0034246575 0.51082562 1.749403e-03
## 4046    2 0.0024242424 0.72213472 1.750630e-03
## 4047    2 0.0020682523 0.84729786 1.752426e-03
## 4048    2 0.0020682523 0.84729786 1.752426e-03
## 4049    2 0.0020682523 0.84729786 1.752426e-03
## 4050    1 0.0026385224 0.66497630 1.754555e-03
## 4051    1 0.0026385224 0.66497630 1.754555e-03
## 4052    1 0.0026385224 0.66497630 1.754555e-03
## 4053    1 0.0026385224 0.66497630 1.754555e-03
## 4054    7 0.0093333333 0.18805223 1.755154e-03
## 4055    2 0.0022471910 0.78275934 1.759010e-03
## 4056    5 0.0031446541 0.55961579 1.759798e-03
## 4057    5 0.0031446541 0.55961579 1.759798e-03
## 4058    3 0.0015228426 1.15745279 1.762618e-03
## 4059    3 0.0079155673 0.22314355 1.766308e-03
## 4060    3 0.0016510732 1.07044141 1.767377e-03
## 4061    2 0.0014124294 1.25276297 1.769439e-03
## 4062    2 0.0014124294 1.25276297 1.769439e-03
## 4063    2 0.0014124294 1.25276297 1.769439e-03
## 4064    2 0.0011007155 1.60943791 1.771533e-03
## 4065    2 0.0011007155 1.60943791 1.771533e-03
## 4066    2 0.0011007155 1.60943791 1.771533e-03
## 4067    2 0.0011007155 1.60943791 1.771533e-03
## 4068    2 0.0011007155 1.60943791 1.771533e-03
## 4069    2 0.0011007155 1.60943791 1.771533e-03
## 4070    2 0.0011007155 1.60943791 1.771533e-03
## 4071    2 0.0011007155 1.60943791 1.771533e-03
## 4072    2 0.0011007155 1.60943791 1.771533e-03
## 4073    2 0.0011007155 1.60943791 1.771533e-03
## 4074    2 0.0011007155 1.60943791 1.771533e-03
## 4075    2 0.0011007155 1.60943791 1.771533e-03
## 4076    2 0.0011007155 1.60943791 1.771533e-03
## 4077    1 0.0017889088 0.99039870 1.771733e-03
## 4078    1 0.0017889088 0.99039870 1.771733e-03
## 4079    1 0.0017889088 0.99039870 1.771733e-03
## 4080    1 0.0017889088 0.99039870 1.771733e-03
## 4081    1 0.0017889088 0.99039870 1.771733e-03
## 4082    1 0.0017889088 0.99039870 1.771733e-03
## 4083    1 0.0011013216 1.60943791 1.772509e-03
## 4084    1 0.0011013216 1.60943791 1.772509e-03
## 4085    1 0.0011013216 1.60943791 1.772509e-03
## 4086    1 0.0011013216 1.60943791 1.772509e-03
## 4087    1 0.0011013216 1.60943791 1.772509e-03
## 4088    1 0.0011013216 1.60943791 1.772509e-03
## 4089    2 0.0026666667 0.66497630 1.773270e-03
## 4090    2 0.0013063357 1.35812348 1.774165e-03
## 4091    2 0.0013063357 1.35812348 1.774165e-03
## 4092    2 0.0013063357 1.35812348 1.774165e-03
## 4093    1 0.0024570025 0.72213472 1.774287e-03
## 4094    1 0.0024570025 0.72213472 1.774287e-03
## 4095    1 0.0024570025 0.72213472 1.774287e-03
## 4096    1 0.0024570025 0.72213472 1.774287e-03
## 4097    2 0.0052770449 0.33647224 1.775579e-03
## 4098    1 0.0029069767 0.61090908 1.775898e-03
## 4099    1 0.0006218905 2.86220088 1.779976e-03
## 4100    1 0.0006218905 2.86220088 1.779976e-03
## 4101    1 0.0006218905 2.86220088 1.779976e-03
## 4102    1 0.0006218905 2.86220088 1.779976e-03
## 4103    1 0.0006218905 2.86220088 1.779976e-03
## 4104    1 0.0006218905 2.86220088 1.779976e-03
## 4105    1 0.0006218905 2.86220088 1.779976e-03
## 4106    1 0.0006218905 2.86220088 1.779976e-03
## 4107    1 0.0006218905 2.86220088 1.779976e-03
## 4108    1 0.0006218905 2.86220088 1.779976e-03
## 4109    1 0.0006218905 2.86220088 1.779976e-03
## 4110    1 0.0006218905 2.86220088 1.779976e-03
## 4111    1 0.0006218905 2.86220088 1.779976e-03
## 4112    1 0.0006218905 2.86220088 1.779976e-03
## 4113    1 0.0006218905 2.86220088 1.779976e-03
## 4114    1 0.0006218905 2.86220088 1.779976e-03
## 4115    1 0.0006218905 2.86220088 1.779976e-03
## 4116    1 0.0006218905 2.86220088 1.779976e-03
## 4117    1 0.0006218905 2.86220088 1.779976e-03
## 4118    1 0.0006218905 2.86220088 1.779976e-03
## 4119    1 0.0006218905 2.86220088 1.779976e-03
## 4120    1 0.0006218905 2.86220088 1.779976e-03
## 4121    1 0.0006218905 2.86220088 1.779976e-03
## 4122    1 0.0006218905 2.86220088 1.779976e-03
## 4123    1 0.0006218905 2.86220088 1.779976e-03
## 4124    1 0.0006218905 2.86220088 1.779976e-03
## 4125    1 0.0006218905 2.86220088 1.779976e-03
## 4126    1 0.0006218905 2.86220088 1.779976e-03
## 4127    1 0.0006218905 2.86220088 1.779976e-03
## 4128    1 0.0006218905 2.86220088 1.779976e-03
## 4129    1 0.0006218905 2.86220088 1.779976e-03
## 4130    1 0.0006218905 2.86220088 1.779976e-03
## 4131    1 0.0006218905 2.86220088 1.779976e-03
## 4132    1 0.0006218905 2.86220088 1.779976e-03
## 4133    1 0.0006218905 2.86220088 1.779976e-03
## 4134    1 0.0006218905 2.86220088 1.779976e-03
## 4135    1 0.0006218905 2.86220088 1.779976e-03
## 4136    1 0.0006218905 2.86220088 1.779976e-03
## 4137    1 0.0006218905 2.86220088 1.779976e-03
## 4138    1 0.0006218905 2.86220088 1.779976e-03
## 4139    1 0.0006218905 2.86220088 1.779976e-03
## 4140    1 0.0006218905 2.86220088 1.779976e-03
## 4141    1 0.0006218905 2.86220088 1.779976e-03
## 4142    1 0.0006218905 2.86220088 1.779976e-03
## 4143    1 0.0006218905 2.86220088 1.779976e-03
## 4144    1 0.0006218905 2.86220088 1.779976e-03
## 4145    1 0.0006218905 2.86220088 1.779976e-03
## 4146    1 0.0006218905 2.86220088 1.779976e-03
## 4147    1 0.0006218905 2.86220088 1.779976e-03
## 4148    1 0.0006218905 2.86220088 1.779976e-03
## 4149    1 0.0006218905 2.86220088 1.779976e-03
## 4150    1 0.0006218905 2.86220088 1.779976e-03
## 4151    1 0.0006218905 2.86220088 1.779976e-03
## 4152    1 0.0006218905 2.86220088 1.779976e-03
## 4153    1 0.0006218905 2.86220088 1.779976e-03
## 4154    1 0.0006218905 2.86220088 1.779976e-03
## 4155    1 0.0006218905 2.86220088 1.779976e-03
## 4156    1 0.0006218905 2.86220088 1.779976e-03
## 4157    1 0.0006218905 2.86220088 1.779976e-03
## 4158    1 0.0006218905 2.86220088 1.779976e-03
## 4159    1 0.0006218905 2.86220088 1.779976e-03
## 4160    1 0.0006218905 2.86220088 1.779976e-03
## 4161    1 0.0006218905 2.86220088 1.779976e-03
## 4162    1 0.0006218905 2.86220088 1.779976e-03
## 4163    1 0.0006218905 2.86220088 1.779976e-03
## 4164    1 0.0006218905 2.86220088 1.779976e-03
## 4165    1 0.0006218905 2.86220088 1.779976e-03
## 4166    1 0.0006218905 2.86220088 1.779976e-03
## 4167    1 0.0006218905 2.86220088 1.779976e-03
## 4168    1 0.0006218905 2.86220088 1.779976e-03
## 4169    2 0.0022779043 0.78275934 1.783051e-03
## 4170    2 0.0022779043 0.78275934 1.783051e-03
## 4171    2 0.0022779043 0.78275934 1.783051e-03
## 4172    2 0.0047281324 0.37729423 1.783897e-03
## 4173    1 0.0010121457 1.76358859 1.785009e-03
## 4174    1 0.0010121457 1.76358859 1.785009e-03
## 4175    1 0.0010121457 1.76358859 1.785009e-03
## 4176    1 0.0010121457 1.76358859 1.785009e-03
## 4177    1 0.0010121457 1.76358859 1.785009e-03
## 4178    1 0.0010121457 1.76358859 1.785009e-03
## 4179    1 0.0010121457 1.76358859 1.785009e-03
## 4180    1 0.0010121457 1.76358859 1.785009e-03
## 4181    1 0.0010121457 1.76358859 1.785009e-03
## 4182    1 0.0010121457 1.76358859 1.785009e-03
## 4183    1 0.0010121457 1.76358859 1.785009e-03
## 4184    1 0.0010121457 1.76358859 1.785009e-03
## 4185    1 0.0010121457 1.76358859 1.785009e-03
## 4186    1 0.0010121457 1.76358859 1.785009e-03
## 4187    1 0.0010121457 1.76358859 1.785009e-03
## 4188    1 0.0010121457 1.76358859 1.785009e-03
## 4189    1 0.0010121457 1.76358859 1.785009e-03
## 4190    3 0.0031914894 0.55961579 1.786008e-03
## 4191    5 0.0068870523 0.25951120 1.787267e-03
## 4192    7 0.0038525041 0.46430561 1.788739e-03
## 4193    1 0.0012121212 1.47590652 1.788978e-03
## 4194    1 0.0012121212 1.47590652 1.788978e-03
## 4195    1 0.0012121212 1.47590652 1.788978e-03
## 4196    1 0.0012121212 1.47590652 1.788978e-03
## 4197    1 0.0012121212 1.47590652 1.788978e-03
## 4198    1 0.0012121212 1.47590652 1.788978e-03
## 4199    1 0.0012121212 1.47590652 1.788978e-03
## 4200    1 0.0012121212 1.47590652 1.788978e-03
## 4201    5 0.0053191489 0.33647224 1.789746e-03
## 4202    2 0.0010152284 1.76358859 1.790445e-03
## 4203    2 0.0010152284 1.76358859 1.790445e-03
## 4204    2 0.0010152284 1.76358859 1.790445e-03
## 4205    2 0.0010152284 1.76358859 1.790445e-03
## 4206    1 0.0026954178 0.66497630 1.792389e-03
## 4207    1 0.0026954178 0.66497630 1.792389e-03
## 4208    4 0.0053333333 0.33647224 1.794519e-03
## 4209    3 0.0021186441 0.84729786 1.795123e-03
## 4210   11 0.0069182390 0.25951120 1.795360e-03
## 4211    3 0.0019595036 0.91629073 1.795475e-03
## 4212    2 0.0069204152 0.25951120 1.795925e-03
## 4213    2 0.0069204152 0.25951120 1.795925e-03
## 4214    4 0.0024875622 0.72213472 1.796355e-03
## 4215    1 0.0006289308 2.86220088 1.800126e-03
## 4216    1 0.0006289308 2.86220088 1.800126e-03
## 4217    1 0.0006289308 2.86220088 1.800126e-03
## 4218    1 0.0006289308 2.86220088 1.800126e-03
## 4219    1 0.0006289308 2.86220088 1.800126e-03
## 4220    1 0.0006289308 2.86220088 1.800126e-03
## 4221    1 0.0006289308 2.86220088 1.800126e-03
## 4222    1 0.0006289308 2.86220088 1.800126e-03
## 4223    1 0.0006289308 2.86220088 1.800126e-03
## 4224    1 0.0006289308 2.86220088 1.800126e-03
## 4225    1 0.0006289308 2.86220088 1.800126e-03
## 4226    1 0.0006289308 2.86220088 1.800126e-03
## 4227    1 0.0006289308 2.86220088 1.800126e-03
## 4228    1 0.0006289308 2.86220088 1.800126e-03
## 4229    1 0.0006289308 2.86220088 1.800126e-03
## 4230    1 0.0006289308 2.86220088 1.800126e-03
## 4231    1 0.0006289308 2.86220088 1.800126e-03
## 4232    1 0.0006289308 2.86220088 1.800126e-03
## 4233    1 0.0006289308 2.86220088 1.800126e-03
## 4234    1 0.0006289308 2.86220088 1.800126e-03
## 4235    1 0.0006289308 2.86220088 1.800126e-03
## 4236    1 0.0006289308 2.86220088 1.800126e-03
## 4237    1 0.0006289308 2.86220088 1.800126e-03
## 4238    1 0.0006289308 2.86220088 1.800126e-03
## 4239    1 0.0006289308 2.86220088 1.800126e-03
## 4240    1 0.0006289308 2.86220088 1.800126e-03
## 4241    1 0.0006289308 2.86220088 1.800126e-03
## 4242    1 0.0006289308 2.86220088 1.800126e-03
## 4243    1 0.0006289308 2.86220088 1.800126e-03
## 4244    1 0.0006289308 2.86220088 1.800126e-03
## 4245    1 0.0006289308 2.86220088 1.800126e-03
## 4246    1 0.0006289308 2.86220088 1.800126e-03
## 4247    1 0.0006289308 2.86220088 1.800126e-03
## 4248    1 0.0006289308 2.86220088 1.800126e-03
## 4249    1 0.0006289308 2.86220088 1.800126e-03
## 4250    1 0.0006289308 2.86220088 1.800126e-03
## 4251    1 0.0006289308 2.86220088 1.800126e-03
## 4252    1 0.0006289308 2.86220088 1.800126e-03
## 4253    1 0.0006289308 2.86220088 1.800126e-03
## 4254    1 0.0006289308 2.86220088 1.800126e-03
## 4255    1 0.0006289308 2.86220088 1.800126e-03
## 4256    1 0.0006289308 2.86220088 1.800126e-03
## 4257    1 0.0006289308 2.86220088 1.800126e-03
## 4258    1 0.0006289308 2.86220088 1.800126e-03
## 4259    1 0.0006289308 2.86220088 1.800126e-03
## 4260    1 0.0006289308 2.86220088 1.800126e-03
## 4261    1 0.0006289308 2.86220088 1.800126e-03
## 4262    1 0.0006289308 2.86220088 1.800126e-03
## 4263    1 0.0006289308 2.86220088 1.800126e-03
## 4264    1 0.0006289308 2.86220088 1.800126e-03
## 4265    1 0.0006289308 2.86220088 1.800126e-03
## 4266    1 0.0006289308 2.86220088 1.800126e-03
## 4267    1 0.0006289308 2.86220088 1.800126e-03
## 4268    1 0.0006289308 2.86220088 1.800126e-03
## 4269    1 0.0006289308 2.86220088 1.800126e-03
## 4270    1 0.0006289308 2.86220088 1.800126e-03
## 4271    1 0.0006289308 2.86220088 1.800126e-03
## 4272    1 0.0006289308 2.86220088 1.800126e-03
## 4273    1 0.0006289308 2.86220088 1.800126e-03
## 4274    1 0.0006289308 2.86220088 1.800126e-03
## 4275    1 0.0006289308 2.86220088 1.800126e-03
## 4276    1 0.0006289308 2.86220088 1.800126e-03
## 4277    1 0.0006289308 2.86220088 1.800126e-03
## 4278    1 0.0006289308 2.86220088 1.800126e-03
## 4279    1 0.0006289308 2.86220088 1.800126e-03
## 4280    1 0.0006289308 2.86220088 1.800126e-03
## 4281    1 0.0006289308 2.86220088 1.800126e-03
## 4282    1 0.0006289308 2.86220088 1.800126e-03
## 4283    1 0.0006289308 2.86220088 1.800126e-03
## 4284    1 0.0006289308 2.86220088 1.800126e-03
## 4285    1 0.0013280212 1.35812348 1.803617e-03
## 4286    1 0.0013280212 1.35812348 1.803617e-03
## 4287    1 0.0013280212 1.35812348 1.803617e-03
## 4288    1 0.0013280212 1.35812348 1.803617e-03
## 4289    1 0.0013280212 1.35812348 1.803617e-03
## 4290    1 0.0013280212 1.35812348 1.803617e-03
## 4291    1 0.0013280212 1.35812348 1.803617e-03
## 4292    1 0.0013280212 1.35812348 1.803617e-03
## 4293    1 0.0013280212 1.35812348 1.803617e-03
## 4294    1 0.0013280212 1.35812348 1.803617e-03
## 4295    1 0.0013280212 1.35812348 1.803617e-03
## 4296    1 0.0013280212 1.35812348 1.803617e-03
## 4297    1 0.0013280212 1.35812348 1.803617e-03
## 4298    1 0.0005076142 3.55534806 1.804745e-03
## 4299    1 0.0005076142 3.55534806 1.804745e-03
## 4300    1 0.0005076142 3.55534806 1.804745e-03
## 4301    1 0.0005076142 3.55534806 1.804745e-03
## 4302    1 0.0005076142 3.55534806 1.804745e-03
## 4303    1 0.0005076142 3.55534806 1.804745e-03
## 4304    1 0.0005076142 3.55534806 1.804745e-03
## 4305    1 0.0005076142 3.55534806 1.804745e-03
## 4306    1 0.0005076142 3.55534806 1.804745e-03
## 4307    1 0.0005076142 3.55534806 1.804745e-03
## 4308    1 0.0005076142 3.55534806 1.804745e-03
## 4309    1 0.0005076142 3.55534806 1.804745e-03
## 4310    1 0.0005076142 3.55534806 1.804745e-03
## 4311    1 0.0005076142 3.55534806 1.804745e-03
## 4312    1 0.0005076142 3.55534806 1.804745e-03
## 4313    1 0.0005076142 3.55534806 1.804745e-03
## 4314    1 0.0005076142 3.55534806 1.804745e-03
## 4315    1 0.0005076142 3.55534806 1.804745e-03
## 4316    1 0.0005076142 3.55534806 1.804745e-03
## 4317    1 0.0005076142 3.55534806 1.804745e-03
## 4318    1 0.0005076142 3.55534806 1.804745e-03
## 4319    1 0.0005076142 3.55534806 1.804745e-03
## 4320    1 0.0005076142 3.55534806 1.804745e-03
## 4321    1 0.0005076142 3.55534806 1.804745e-03
## 4322    1 0.0005076142 3.55534806 1.804745e-03
## 4323    1 0.0005076142 3.55534806 1.804745e-03
## 4324    1 0.0005076142 3.55534806 1.804745e-03
## 4325    1 0.0005076142 3.55534806 1.804745e-03
## 4326    1 0.0005076142 3.55534806 1.804745e-03
## 4327    1 0.0005076142 3.55534806 1.804745e-03
## 4328    1 0.0005076142 3.55534806 1.804745e-03
## 4329    1 0.0005076142 3.55534806 1.804745e-03
## 4330    1 0.0005076142 3.55534806 1.804745e-03
## 4331    1 0.0005076142 3.55534806 1.804745e-03
## 4332    1 0.0005076142 3.55534806 1.804745e-03
## 4333    1 0.0005076142 3.55534806 1.804745e-03
## 4334    1 0.0005076142 3.55534806 1.804745e-03
## 4335    1 0.0005076142 3.55534806 1.804745e-03
## 4336    1 0.0005076142 3.55534806 1.804745e-03
## 4337    1 0.0005076142 3.55534806 1.804745e-03
## 4338    1 0.0005076142 3.55534806 1.804745e-03
## 4339    1 0.0005076142 3.55534806 1.804745e-03
## 4340    1 0.0005076142 3.55534806 1.804745e-03
## 4341    1 0.0005076142 3.55534806 1.804745e-03
## 4342    1 0.0005076142 3.55534806 1.804745e-03
## 4343    1 0.0005076142 3.55534806 1.804745e-03
## 4344    1 0.0005076142 3.55534806 1.804745e-03
## 4345    1 0.0005076142 3.55534806 1.804745e-03
## 4346    1 0.0005076142 3.55534806 1.804745e-03
## 4347    1 0.0005076142 3.55534806 1.804745e-03
## 4348    1 0.0005076142 3.55534806 1.804745e-03
## 4349    1 0.0005076142 3.55534806 1.804745e-03
## 4350    1 0.0005076142 3.55534806 1.804745e-03
## 4351    1 0.0005076142 3.55534806 1.804745e-03
## 4352    1 0.0005076142 3.55534806 1.804745e-03
## 4353    1 0.0005076142 3.55534806 1.804745e-03
## 4354    1 0.0005076142 3.55534806 1.804745e-03
## 4355    1 0.0005076142 3.55534806 1.804745e-03
## 4356    1 0.0005076142 3.55534806 1.804745e-03
## 4357    1 0.0005076142 3.55534806 1.804745e-03
## 4358    1 0.0005076142 3.55534806 1.804745e-03
## 4359    1 0.0005076142 3.55534806 1.804745e-03
## 4360    1 0.0005076142 3.55534806 1.804745e-03
## 4361    1 0.0005076142 3.55534806 1.804745e-03
## 4362    1 0.0005076142 3.55534806 1.804745e-03
## 4363    1 0.0005076142 3.55534806 1.804745e-03
## 4364    1 0.0005076142 3.55534806 1.804745e-03
## 4365    1 0.0005076142 3.55534806 1.804745e-03
## 4366    1 0.0005076142 3.55534806 1.804745e-03
## 4367    1 0.0005076142 3.55534806 1.804745e-03
## 4368    1 0.0005076142 3.55534806 1.804745e-03
## 4369    1 0.0005076142 3.55534806 1.804745e-03
## 4370    1 0.0005076142 3.55534806 1.804745e-03
## 4371    1 0.0005076142 3.55534806 1.804745e-03
## 4372    1 0.0005076142 3.55534806 1.804745e-03
## 4373    1 0.0005076142 3.55534806 1.804745e-03
## 4374    1 0.0005076142 3.55534806 1.804745e-03
## 4375    1 0.0005076142 3.55534806 1.804745e-03
## 4376    1 0.0005076142 3.55534806 1.804745e-03
## 4377    1 0.0005076142 3.55534806 1.804745e-03
## 4378    1 0.0005076142 3.55534806 1.804745e-03
## 4379    1 0.0005076142 3.55534806 1.804745e-03
## 4380    1 0.0005076142 3.55534806 1.804745e-03
## 4381    1 0.0005076142 3.55534806 1.804745e-03
## 4382    1 0.0005076142 3.55534806 1.804745e-03
## 4383    1 0.0005076142 3.55534806 1.804745e-03
## 4384    1 0.0005076142 3.55534806 1.804745e-03
## 4385    1 0.0005076142 3.55534806 1.804745e-03
## 4386    1 0.0005076142 3.55534806 1.804745e-03
## 4387    1 0.0005076142 3.55534806 1.804745e-03
## 4388    1 0.0005076142 3.55534806 1.804745e-03
## 4389    1 0.0005076142 3.55534806 1.804745e-03
## 4390    1 0.0005076142 3.55534806 1.804745e-03
## 4391    1 0.0005076142 3.55534806 1.804745e-03
## 4392    1 0.0005076142 3.55534806 1.804745e-03
## 4393    1 0.0005076142 3.55534806 1.804745e-03
## 4394    1 0.0005076142 3.55534806 1.804745e-03
## 4395    1 0.0005076142 3.55534806 1.804745e-03
## 4396    1 0.0005076142 3.55534806 1.804745e-03
## 4397    1 0.0005076142 3.55534806 1.804745e-03
## 4398    1 0.0005076142 3.55534806 1.804745e-03
## 4399    1 0.0005076142 3.55534806 1.804745e-03
## 4400    1 0.0005076142 3.55534806 1.804745e-03
## 4401    1 0.0005076142 3.55534806 1.804745e-03
## 4402    1 0.0005076142 3.55534806 1.804745e-03
## 4403    1 0.0005076142 3.55534806 1.804745e-03
## 4404    1 0.0005076142 3.55534806 1.804745e-03
## 4405    1 0.0005076142 3.55534806 1.804745e-03
## 4406    1 0.0005076142 3.55534806 1.804745e-03
## 4407    1 0.0005076142 3.55534806 1.804745e-03
## 4408    1 0.0005076142 3.55534806 1.804745e-03
## 4409    1 0.0005076142 3.55534806 1.804745e-03
## 4410    1 0.0005076142 3.55534806 1.804745e-03
## 4411    1 0.0005076142 3.55534806 1.804745e-03
## 4412    1 0.0005076142 3.55534806 1.804745e-03
## 4413    1 0.0005076142 3.55534806 1.804745e-03
## 4414    1 0.0005076142 3.55534806 1.804745e-03
## 4415    1 0.0005076142 3.55534806 1.804745e-03
## 4416    1 0.0005076142 3.55534806 1.804745e-03
## 4417    1 0.0005076142 3.55534806 1.804745e-03
## 4418    1 0.0005076142 3.55534806 1.804745e-03
## 4419    1 0.0005076142 3.55534806 1.804745e-03
## 4420    1 0.0005076142 3.55534806 1.804745e-03
## 4421    1 0.0005076142 3.55534806 1.804745e-03
## 4422    1 0.0005076142 3.55534806 1.804745e-03
## 4423    1 0.0005076142 3.55534806 1.804745e-03
## 4424    1 0.0005076142 3.55534806 1.804745e-03
## 4425    1 0.0005076142 3.55534806 1.804745e-03
## 4426    1 0.0005076142 3.55534806 1.804745e-03
## 4427    1 0.0005076142 3.55534806 1.804745e-03
## 4428    1 0.0005076142 3.55534806 1.804745e-03
## 4429    1 0.0005076142 3.55534806 1.804745e-03
## 4430    1 0.0005076142 3.55534806 1.804745e-03
## 4431    1 0.0005076142 3.55534806 1.804745e-03
## 4432    1 0.0005076142 3.55534806 1.804745e-03
## 4433    1 0.0005076142 3.55534806 1.804745e-03
## 4434    1 0.0005076142 3.55534806 1.804745e-03
## 4435    1 0.0005076142 3.55534806 1.804745e-03
## 4436    1 0.0005076142 3.55534806 1.804745e-03
## 4437    1 0.0005076142 3.55534806 1.804745e-03
## 4438    1 0.0005076142 3.55534806 1.804745e-03
## 4439    1 0.0005076142 3.55534806 1.804745e-03
## 4440    1 0.0005076142 3.55534806 1.804745e-03
## 4441    1 0.0005076142 3.55534806 1.804745e-03
## 4442    1 0.0005076142 3.55534806 1.804745e-03
## 4443    1 0.0005076142 3.55534806 1.804745e-03
## 4444    1 0.0005076142 3.55534806 1.804745e-03
## 4445    1 0.0005076142 3.55534806 1.804745e-03
## 4446    1 0.0005076142 3.55534806 1.804745e-03
## 4447    1 0.0005076142 3.55534806 1.804745e-03
## 4448    1 0.0005076142 3.55534806 1.804745e-03
## 4449    1 0.0005076142 3.55534806 1.804745e-03
## 4450    1 0.0005076142 3.55534806 1.804745e-03
## 4451    1 0.0005076142 3.55534806 1.804745e-03
## 4452    1 0.0005076142 3.55534806 1.804745e-03
## 4453    1 0.0005076142 3.55534806 1.804745e-03
## 4454    1 0.0005076142 3.55534806 1.804745e-03
## 4455    1 0.0005076142 3.55534806 1.804745e-03
## 4456    1 0.0005076142 3.55534806 1.804745e-03
## 4457    1 0.0005076142 3.55534806 1.804745e-03
## 4458    1 0.0005076142 3.55534806 1.804745e-03
## 4459    1 0.0005076142 3.55534806 1.804745e-03
## 4460    1 0.0005076142 3.55534806 1.804745e-03
## 4461    1 0.0005076142 3.55534806 1.804745e-03
## 4462    1 0.0005076142 3.55534806 1.804745e-03
## 4463    1 0.0005076142 3.55534806 1.804745e-03
## 4464    1 0.0005076142 3.55534806 1.804745e-03
## 4465    1 0.0005076142 3.55534806 1.804745e-03
## 4466    1 0.0005076142 3.55534806 1.804745e-03
## 4467    1 0.0005076142 3.55534806 1.804745e-03
## 4468    1 0.0005076142 3.55534806 1.804745e-03
## 4469    1 0.0005076142 3.55534806 1.804745e-03
## 4470    1 0.0005076142 3.55534806 1.804745e-03
## 4471    1 0.0005076142 3.55534806 1.804745e-03
## 4472    1 0.0005076142 3.55534806 1.804745e-03
## 4473    1 0.0005076142 3.55534806 1.804745e-03
## 4474    1 0.0005076142 3.55534806 1.804745e-03
## 4475    1 0.0005076142 3.55534806 1.804745e-03
## 4476    1 0.0005076142 3.55534806 1.804745e-03
## 4477    1 0.0005076142 3.55534806 1.804745e-03
## 4478    1 0.0005076142 3.55534806 1.804745e-03
## 4479    1 0.0005076142 3.55534806 1.804745e-03
## 4480    1 0.0005076142 3.55534806 1.804745e-03
## 4481    1 0.0005076142 3.55534806 1.804745e-03
## 4482    1 0.0005076142 3.55534806 1.804745e-03
## 4483    1 0.0005076142 3.55534806 1.804745e-03
## 4484    1 0.0005076142 3.55534806 1.804745e-03
## 4485    1 0.0005076142 3.55534806 1.804745e-03
## 4486    1 0.0005076142 3.55534806 1.804745e-03
## 4487    1 0.0005076142 3.55534806 1.804745e-03
## 4488    1 0.0005076142 3.55534806 1.804745e-03
## 4489    1 0.0005076142 3.55534806 1.804745e-03
## 4490    1 0.0005076142 3.55534806 1.804745e-03
## 4491    1 0.0005076142 3.55534806 1.804745e-03
## 4492    1 0.0005076142 3.55534806 1.804745e-03
## 4493    1 0.0005076142 3.55534806 1.804745e-03
## 4494    1 0.0005076142 3.55534806 1.804745e-03
## 4495    1 0.0005076142 3.55534806 1.804745e-03
## 4496    1 0.0005076142 3.55534806 1.804745e-03
## 4497    1 0.0005076142 3.55534806 1.804745e-03
## 4498    1 0.0005076142 3.55534806 1.804745e-03
## 4499    1 0.0005076142 3.55534806 1.804745e-03
## 4500    1 0.0005076142 3.55534806 1.804745e-03
## 4501    1 0.0005076142 3.55534806 1.804745e-03
## 4502    1 0.0005076142 3.55534806 1.804745e-03
## 4503    1 0.0005076142 3.55534806 1.804745e-03
## 4504    1 0.0005076142 3.55534806 1.804745e-03
## 4505    1 0.0005076142 3.55534806 1.804745e-03
## 4506    1 0.0005076142 3.55534806 1.804745e-03
## 4507    1 0.0005076142 3.55534806 1.804745e-03
## 4508    1 0.0005076142 3.55534806 1.804745e-03
## 4509    1 0.0005076142 3.55534806 1.804745e-03
## 4510    1 0.0005076142 3.55534806 1.804745e-03
## 4511    1 0.0005076142 3.55534806 1.804745e-03
## 4512    1 0.0005076142 3.55534806 1.804745e-03
## 4513    1 0.0005076142 3.55534806 1.804745e-03
## 4514    1 0.0005076142 3.55534806 1.804745e-03
## 4515    1 0.0005076142 3.55534806 1.804745e-03
## 4516    1 0.0005076142 3.55534806 1.804745e-03
## 4517    1 0.0005076142 3.55534806 1.804745e-03
## 4518    1 0.0005076142 3.55534806 1.804745e-03
## 4519    1 0.0005076142 3.55534806 1.804745e-03
## 4520    1 0.0005076142 3.55534806 1.804745e-03
## 4521    1 0.0005076142 3.55534806 1.804745e-03
## 4522    1 0.0005076142 3.55534806 1.804745e-03
## 4523    1 0.0005076142 3.55534806 1.804745e-03
## 4524    1 0.0005076142 3.55534806 1.804745e-03
## 4525    1 0.0005076142 3.55534806 1.804745e-03
## 4526    1 0.0005076142 3.55534806 1.804745e-03
## 4527    1 0.0005076142 3.55534806 1.804745e-03
## 4528    1 0.0005076142 3.55534806 1.804745e-03
## 4529    1 0.0005076142 3.55534806 1.804745e-03
## 4530    1 0.0005076142 3.55534806 1.804745e-03
## 4531    1 0.0005076142 3.55534806 1.804745e-03
## 4532    1 0.0005076142 3.55534806 1.804745e-03
## 4533    1 0.0005076142 3.55534806 1.804745e-03
## 4534    1 0.0005076142 3.55534806 1.804745e-03
## 4535    1 0.0005076142 3.55534806 1.804745e-03
## 4536    1 0.0005076142 3.55534806 1.804745e-03
## 4537    1 0.0005076142 3.55534806 1.804745e-03
## 4538    1 0.0005076142 3.55534806 1.804745e-03
## 4539    1 0.0005076142 3.55534806 1.804745e-03
## 4540    1 0.0005076142 3.55534806 1.804745e-03
## 4541    1 0.0005076142 3.55534806 1.804745e-03
## 4542    1 0.0005076142 3.55534806 1.804745e-03
## 4543    1 0.0005076142 3.55534806 1.804745e-03
## 4544    1 0.0005076142 3.55534806 1.804745e-03
## 4545    1 0.0005076142 3.55534806 1.804745e-03
## 4546    1 0.0005076142 3.55534806 1.804745e-03
## 4547    1 0.0005076142 3.55534806 1.804745e-03
## 4548    1 0.0005076142 3.55534806 1.804745e-03
## 4549    1 0.0005076142 3.55534806 1.804745e-03
## 4550    1 0.0005076142 3.55534806 1.804745e-03
## 4551    1 0.0005076142 3.55534806 1.804745e-03
## 4552    1 0.0005076142 3.55534806 1.804745e-03
## 4553    1 0.0005076142 3.55534806 1.804745e-03
## 4554    1 0.0005076142 3.55534806 1.804745e-03
## 4555    1 0.0005076142 3.55534806 1.804745e-03
## 4556    1 0.0005076142 3.55534806 1.804745e-03
## 4557    1 0.0005076142 3.55534806 1.804745e-03
## 4558    1 0.0005076142 3.55534806 1.804745e-03
## 4559    1 0.0005076142 3.55534806 1.804745e-03
## 4560    1 0.0005076142 3.55534806 1.804745e-03
## 4561    1 0.0005076142 3.55534806 1.804745e-03
## 4562    1 0.0005076142 3.55534806 1.804745e-03
## 4563    1 0.0005076142 3.55534806 1.804745e-03
## 4564    1 0.0005076142 3.55534806 1.804745e-03
## 4565    1 0.0005076142 3.55534806 1.804745e-03
## 4566    1 0.0005076142 3.55534806 1.804745e-03
## 4567    1 0.0005076142 3.55534806 1.804745e-03
## 4568    1 0.0005076142 3.55534806 1.804745e-03
## 4569    1 0.0005076142 3.55534806 1.804745e-03
## 4570    1 0.0005076142 3.55534806 1.804745e-03
## 4571    1 0.0005076142 3.55534806 1.804745e-03
## 4572    1 0.0005076142 3.55534806 1.804745e-03
## 4573    1 0.0005076142 3.55534806 1.804745e-03
## 4574    1 0.0005076142 3.55534806 1.804745e-03
## 4575    1 0.0005076142 3.55534806 1.804745e-03
## 4576    1 0.0005076142 3.55534806 1.804745e-03
## 4577    1 0.0005076142 3.55534806 1.804745e-03
## 4578    1 0.0005076142 3.55534806 1.804745e-03
## 4579    1 0.0005076142 3.55534806 1.804745e-03
## 4580    1 0.0005076142 3.55534806 1.804745e-03
## 4581    1 0.0005076142 3.55534806 1.804745e-03
## 4582    1 0.0005076142 3.55534806 1.804745e-03
## 4583    1 0.0005076142 3.55534806 1.804745e-03
## 4584    1 0.0005076142 3.55534806 1.804745e-03
## 4585    1 0.0005076142 3.55534806 1.804745e-03
## 4586    1 0.0005076142 3.55534806 1.804745e-03
## 4587    1 0.0005076142 3.55534806 1.804745e-03
## 4588    1 0.0005076142 3.55534806 1.804745e-03
## 4589    1 0.0005076142 3.55534806 1.804745e-03
## 4590    1 0.0005076142 3.55534806 1.804745e-03
## 4591    1 0.0005076142 3.55534806 1.804745e-03
## 4592    1 0.0005076142 3.55534806 1.804745e-03
## 4593    1 0.0005076142 3.55534806 1.804745e-03
## 4594    1 0.0005076142 3.55534806 1.804745e-03
## 4595    1 0.0005076142 3.55534806 1.804745e-03
## 4596    1 0.0005076142 3.55534806 1.804745e-03
## 4597    1 0.0005076142 3.55534806 1.804745e-03
## 4598    1 0.0005076142 3.55534806 1.804745e-03
## 4599    1 0.0005076142 3.55534806 1.804745e-03
## 4600    1 0.0005076142 3.55534806 1.804745e-03
## 4601    1 0.0005076142 3.55534806 1.804745e-03
## 4602    1 0.0005076142 3.55534806 1.804745e-03
## 4603    1 0.0005076142 3.55534806 1.804745e-03
## 4604    1 0.0005076142 3.55534806 1.804745e-03
## 4605    1 0.0005076142 3.55534806 1.804745e-03
## 4606    1 0.0005076142 3.55534806 1.804745e-03
## 4607    1 0.0005076142 3.55534806 1.804745e-03
## 4608    1 0.0005076142 3.55534806 1.804745e-03
## 4609    1 0.0005076142 3.55534806 1.804745e-03
## 4610    1 0.0005076142 3.55534806 1.804745e-03
## 4611    1 0.0005076142 3.55534806 1.804745e-03
## 4612    1 0.0005076142 3.55534806 1.804745e-03
## 4613    1 0.0005076142 3.55534806 1.804745e-03
## 4614    1 0.0005076142 3.55534806 1.804745e-03
## 4615    1 0.0005076142 3.55534806 1.804745e-03
## 4616    1 0.0005076142 3.55534806 1.804745e-03
## 4617    1 0.0005076142 3.55534806 1.804745e-03
## 4618    1 0.0005076142 3.55534806 1.804745e-03
## 4619    1 0.0005076142 3.55534806 1.804745e-03
## 4620    1 0.0005076142 3.55534806 1.804745e-03
## 4621    1 0.0005076142 3.55534806 1.804745e-03
## 4622    1 0.0005076142 3.55534806 1.804745e-03
## 4623    1 0.0005076142 3.55534806 1.804745e-03
## 4624    1 0.0005076142 3.55534806 1.804745e-03
## 4625    1 0.0005076142 3.55534806 1.804745e-03
## 4626    1 0.0005076142 3.55534806 1.804745e-03
## 4627    1 0.0005076142 3.55534806 1.804745e-03
## 4628    1 0.0005076142 3.55534806 1.804745e-03
## 4629    1 0.0005076142 3.55534806 1.804745e-03
## 4630    1 0.0005076142 3.55534806 1.804745e-03
## 4631    1 0.0005076142 3.55534806 1.804745e-03
## 4632    1 0.0005076142 3.55534806 1.804745e-03
## 4633    1 0.0005076142 3.55534806 1.804745e-03
## 4634    1 0.0005076142 3.55534806 1.804745e-03
## 4635    1 0.0005076142 3.55534806 1.804745e-03
## 4636    1 0.0005076142 3.55534806 1.804745e-03
## 4637    1 0.0005076142 3.55534806 1.804745e-03
## 4638    1 0.0005076142 3.55534806 1.804745e-03
## 4639    1 0.0005076142 3.55534806 1.804745e-03
## 4640    1 0.0005076142 3.55534806 1.804745e-03
## 4641    1 0.0005076142 3.55534806 1.804745e-03
## 4642    1 0.0005076142 3.55534806 1.804745e-03
## 4643    1 0.0005076142 3.55534806 1.804745e-03
## 4644    1 0.0005076142 3.55534806 1.804745e-03
## 4645    1 0.0005076142 3.55534806 1.804745e-03
## 4646    1 0.0005076142 3.55534806 1.804745e-03
## 4647    1 0.0005076142 3.55534806 1.804745e-03
## 4648    1 0.0005076142 3.55534806 1.804745e-03
## 4649    1 0.0005076142 3.55534806 1.804745e-03
## 4650    1 0.0005076142 3.55534806 1.804745e-03
## 4651    1 0.0005076142 3.55534806 1.804745e-03
## 4652    1 0.0005076142 3.55534806 1.804745e-03
## 4653    1 0.0005076142 3.55534806 1.804745e-03
## 4654    1 0.0005076142 3.55534806 1.804745e-03
## 4655    1 0.0005076142 3.55534806 1.804745e-03
## 4656    1 0.0005076142 3.55534806 1.804745e-03
## 4657    1 0.0005076142 3.55534806 1.804745e-03
## 4658    1 0.0005076142 3.55534806 1.804745e-03
## 4659    1 0.0005076142 3.55534806 1.804745e-03
## 4660    1 0.0005076142 3.55534806 1.804745e-03
## 4661    1 0.0005076142 3.55534806 1.804745e-03
## 4662    1 0.0005076142 3.55534806 1.804745e-03
## 4663    1 0.0005076142 3.55534806 1.804745e-03
## 4664    1 0.0005076142 3.55534806 1.804745e-03
## 4665    1 0.0005076142 3.55534806 1.804745e-03
## 4666    1 0.0005076142 3.55534806 1.804745e-03
## 4667    1 0.0005076142 3.55534806 1.804745e-03
## 4668    1 0.0005076142 3.55534806 1.804745e-03
## 4669    1 0.0005076142 3.55534806 1.804745e-03
## 4670    1 0.0005076142 3.55534806 1.804745e-03
## 4671    1 0.0005076142 3.55534806 1.804745e-03
## 4672    1 0.0005076142 3.55534806 1.804745e-03
## 4673    1 0.0005076142 3.55534806 1.804745e-03
## 4674    1 0.0005076142 3.55534806 1.804745e-03
## 4675    1 0.0005076142 3.55534806 1.804745e-03
## 4676    1 0.0005076142 3.55534806 1.804745e-03
## 4677    1 0.0005076142 3.55534806 1.804745e-03
## 4678    1 0.0005076142 3.55534806 1.804745e-03
## 4679    1 0.0005076142 3.55534806 1.804745e-03
## 4680    1 0.0005076142 3.55534806 1.804745e-03
## 4681    1 0.0005076142 3.55534806 1.804745e-03
## 4682    1 0.0005076142 3.55534806 1.804745e-03
## 4683    1 0.0005076142 3.55534806 1.804745e-03
## 4684    1 0.0005076142 3.55534806 1.804745e-03
## 4685    1 0.0005076142 3.55534806 1.804745e-03
## 4686    1 0.0005076142 3.55534806 1.804745e-03
## 4687    1 0.0005076142 3.55534806 1.804745e-03
## 4688    1 0.0005076142 3.55534806 1.804745e-03
## 4689    1 0.0005076142 3.55534806 1.804745e-03
## 4690    1 0.0005076142 3.55534806 1.804745e-03
## 4691    1 0.0005076142 3.55534806 1.804745e-03
## 4692    1 0.0005076142 3.55534806 1.804745e-03
## 4693    1 0.0011235955 1.60943791 1.808357e-03
## 4694    1 0.0011235955 1.60943791 1.808357e-03
## 4695    1 0.0011235955 1.60943791 1.808357e-03
## 4696    1 0.0011235955 1.60943791 1.808357e-03
## 4697    1 0.0011235955 1.60943791 1.808357e-03
## 4698    1 0.0011235955 1.60943791 1.808357e-03
## 4699    1 0.0011235955 1.60943791 1.808357e-03
## 4700    1 0.0011235955 1.60943791 1.808357e-03
## 4701    1 0.0011235955 1.60943791 1.808357e-03
## 4702    1 0.0011235955 1.60943791 1.808357e-03
## 4703    1 0.0013333333 1.35812348 1.810831e-03
## 4704    1 0.0013333333 1.35812348 1.810831e-03
## 4705    1 0.0013333333 1.35812348 1.810831e-03
## 4706    1 0.0013333333 1.35812348 1.810831e-03
## 4707    1 0.0013333333 1.35812348 1.810831e-03
## 4708    1 0.0013333333 1.35812348 1.810831e-03
## 4709    1 0.0013333333 1.35812348 1.810831e-03
## 4710    1 0.0013333333 1.35812348 1.810831e-03
## 4711    1 0.0013333333 1.35812348 1.810831e-03
## 4712    1 0.0013333333 1.35812348 1.810831e-03
## 4713    2 0.0053908356 0.33647224 1.813867e-03
## 4714    4 0.0025157233 0.72213472 1.816691e-03
## 4715    4 0.0025157233 0.72213472 1.816691e-03
## 4716    2 0.0032467532 0.55961579 1.816934e-03
## 4717    2 0.0032467532 0.55961579 1.816934e-03
## 4718    2 0.0032467532 0.55961579 1.816934e-03
## 4719    1 0.0029850746 0.61090908 1.823609e-03
## 4720    1 0.0029850746 0.61090908 1.823609e-03
## 4721    1 0.0029850746 0.61090908 1.823609e-03
## 4722    1 0.0029850746 0.61090908 1.823609e-03
## 4723    1 0.0029850746 0.61090908 1.823609e-03
## 4724    1 0.0010341262 1.76358859 1.823773e-03
## 4725    1 0.0010341262 1.76358859 1.823773e-03
## 4726    1 0.0010341262 1.76358859 1.823773e-03
## 4727    1 0.0010341262 1.76358859 1.823773e-03
## 4728    1 0.0010341262 1.76358859 1.823773e-03
## 4729    1 0.0010341262 1.76358859 1.823773e-03
## 4730    1 0.0010341262 1.76358859 1.823773e-03
## 4731    1 0.0010341262 1.76358859 1.823773e-03
## 4732    1 0.0010341262 1.76358859 1.823773e-03
## 4733    1 0.0010341262 1.76358859 1.823773e-03
## 4734    1 0.0010341262 1.76358859 1.823773e-03
## 4735    1 0.0010341262 1.76358859 1.823773e-03
## 4736    1 0.0010341262 1.76358859 1.823773e-03
## 4737    1 0.0010341262 1.76358859 1.823773e-03
## 4738    1 0.0010341262 1.76358859 1.823773e-03
## 4739    1 0.0010341262 1.76358859 1.823773e-03
## 4740    5 0.0032658393 0.55961579 1.827615e-03
## 4741    4 0.0048484848 0.37729423 1.829305e-03
## 4742    2 0.0027548209 0.66497630 1.831891e-03
## 4743    2 0.0027548209 0.66497630 1.831891e-03
## 4744    2 0.0027548209 0.66497630 1.831891e-03
## 4745    2 0.0017123288 1.07044141 1.832948e-03
## 4746    2 0.0017123288 1.07044141 1.832948e-03
## 4747    2 0.0017123288 1.07044141 1.832948e-03
## 4748    2 0.0017123288 1.07044141 1.832948e-03
## 4749    1 0.0017123288 1.07044141 1.832948e-03
## 4750    1 0.0017123288 1.07044141 1.832948e-03
## 4751    1 0.0017123288 1.07044141 1.832948e-03
## 4752    1 0.0017123288 1.07044141 1.832948e-03
## 4753    1 0.0017123288 1.07044141 1.832948e-03
## 4754    1 0.0017123288 1.07044141 1.832948e-03
## 4755    1 0.0017123288 1.07044141 1.832948e-03
## 4756    1 0.0017123288 1.07044141 1.832948e-03
## 4757    1 0.0011389522 1.60943791 1.833073e-03
## 4758    1 0.0011389522 1.60943791 1.833073e-03
## 4759    1 0.0011389522 1.60943791 1.833073e-03
## 4760    1 0.0011389522 1.60943791 1.833073e-03
## 4761    1 0.0011389522 1.60943791 1.833073e-03
## 4762    1 0.0011389522 1.60943791 1.833073e-03
## 4763    1 0.0011389522 1.60943791 1.833073e-03
## 4764    1 0.0011389522 1.60943791 1.833073e-03
## 4765    1 0.0011389522 1.60943791 1.833073e-03
## 4766    1 0.0011389522 1.60943791 1.833073e-03
## 4767    1 0.0011389522 1.60943791 1.833073e-03
## 4768    1 0.0011389522 1.60943791 1.833073e-03
## 4769    1 0.0011389522 1.60943791 1.833073e-03
## 4770    1 0.0011389522 1.60943791 1.833073e-03
## 4771    1 0.0011389522 1.60943791 1.833073e-03
## 4772    2 0.0012437811 1.47590652 1.835705e-03
## 4773    2 0.0012437811 1.47590652 1.835705e-03
## 4774    2 0.0012437811 1.47590652 1.835705e-03
## 4775    1 0.0018552876 0.99039870 1.837474e-03
## 4776    1 0.0018552876 0.99039870 1.837474e-03
## 4777    1 0.0018552876 0.99039870 1.837474e-03
## 4778    1 0.0018552876 0.99039870 1.837474e-03
## 4779    1 0.0018552876 0.99039870 1.837474e-03
## 4780    1 0.0018552876 0.99039870 1.837474e-03
## 4781    2 0.0043859649 0.41985385 1.841464e-03
## 4782    2 0.0023529412 0.78275934 1.841787e-03
## 4783    3 0.0018656716 0.99039870 1.847759e-03
## 4784    6 0.0033021464 0.55961579 1.847933e-03
## 4785    3 0.0039840637 0.46430561 1.849823e-03
## 4786    1 0.0023640662 0.78275934 1.850495e-03
## 4787    1 0.0023640662 0.78275934 1.850495e-03
## 4788    1 0.0023640662 0.78275934 1.850495e-03
## 4789    1 0.0023640662 0.78275934 1.850495e-03
## 4790    1 0.0023640662 0.78275934 1.850495e-03
## 4791    4 0.0055096419 0.33647224 1.853842e-03
## 4792    4 0.0055096419 0.33647224 1.853842e-03
## 4793    2 0.0049140049 0.37729423 1.854026e-03
## 4794    2 0.0020242915 0.91629073 1.854840e-03
## 4795    2 0.0020242915 0.91629073 1.854840e-03
## 4796    2 0.0020242915 0.91629073 1.854840e-03
## 4797    2 0.0020242915 0.91629073 1.854840e-03
## 4798    2 0.0020242915 0.91629073 1.854840e-03
## 4799    2 0.0020242915 0.91629073 1.854840e-03
## 4800    2 0.0020242915 0.91629073 1.854840e-03
## 4801    2 0.0012578616 1.47590652 1.856486e-03
## 4802    2 0.0012578616 1.47590652 1.856486e-03
## 4803    2 0.0012578616 1.47590652 1.856486e-03
## 4804    2 0.0012578616 1.47590652 1.856486e-03
## 4805    2 0.0012578616 1.47590652 1.856486e-03
## 4806   13 0.0071546505 0.25951120 1.856712e-03
## 4807    1 0.0008561644 2.16905370 1.857067e-03
## 4808    1 0.0008561644 2.16905370 1.857067e-03
## 4809    1 0.0008561644 2.16905370 1.857067e-03
## 4810    1 0.0008561644 2.16905370 1.857067e-03
## 4811    1 0.0008561644 2.16905370 1.857067e-03
## 4812    1 0.0008561644 2.16905370 1.857067e-03
## 4813    1 0.0008561644 2.16905370 1.857067e-03
## 4814    1 0.0008561644 2.16905370 1.857067e-03
## 4815    1 0.0008561644 2.16905370 1.857067e-03
## 4816    1 0.0008561644 2.16905370 1.857067e-03
## 4817    1 0.0008561644 2.16905370 1.857067e-03
## 4818    1 0.0008561644 2.16905370 1.857067e-03
## 4819    1 0.0008561644 2.16905370 1.857067e-03
## 4820    1 0.0008561644 2.16905370 1.857067e-03
## 4821    1 0.0008561644 2.16905370 1.857067e-03
## 4822    1 0.0008561644 2.16905370 1.857067e-03
## 4823    1 0.0008561644 2.16905370 1.857067e-03
## 4824    1 0.0008561644 2.16905370 1.857067e-03
## 4825    1 0.0008561644 2.16905370 1.857067e-03
## 4826    1 0.0008561644 2.16905370 1.857067e-03
## 4827    1 0.0008561644 2.16905370 1.857067e-03
## 4828    1 0.0008561644 2.16905370 1.857067e-03
## 4829    1 0.0008561644 2.16905370 1.857067e-03
## 4830    1 0.0008561644 2.16905370 1.857067e-03
## 4831    1 0.0008561644 2.16905370 1.857067e-03
## 4832    1 0.0008561644 2.16905370 1.857067e-03
## 4833    1 0.0008561644 2.16905370 1.857067e-03
## 4834    1 0.0008561644 2.16905370 1.857067e-03
## 4835    1 0.0008561644 2.16905370 1.857067e-03
## 4836    1 0.0008561644 2.16905370 1.857067e-03
## 4837    1 0.0008561644 2.16905370 1.857067e-03
## 4838    1 0.0008561644 2.16905370 1.857067e-03
## 4839    1 0.0027932961 0.66497630 1.857476e-03
## 4840    1 0.0027932961 0.66497630 1.857476e-03
## 4841    1 0.0021929825 0.84729786 1.858109e-03
## 4842    1 0.0021929825 0.84729786 1.858109e-03
## 4843    4 0.0020304569 0.91629073 1.860489e-03
## 4844    4 0.0022014309 0.84729786 1.865268e-03
## 4845    3 0.0018867925 0.99039870 1.868677e-03
## 4846    1 0.0006531679 2.86220088 1.869498e-03
## 4847    1 0.0006531679 2.86220088 1.869498e-03
## 4848    1 0.0006531679 2.86220088 1.869498e-03
## 4849    1 0.0006531679 2.86220088 1.869498e-03
## 4850    1 0.0006531679 2.86220088 1.869498e-03
## 4851    1 0.0006531679 2.86220088 1.869498e-03
## 4852    1 0.0006531679 2.86220088 1.869498e-03
## 4853    1 0.0006531679 2.86220088 1.869498e-03
## 4854    1 0.0006531679 2.86220088 1.869498e-03
## 4855    1 0.0006531679 2.86220088 1.869498e-03
## 4856    1 0.0006531679 2.86220088 1.869498e-03
## 4857    1 0.0006531679 2.86220088 1.869498e-03
## 4858    1 0.0006531679 2.86220088 1.869498e-03
## 4859    1 0.0006531679 2.86220088 1.869498e-03
## 4860    1 0.0006531679 2.86220088 1.869498e-03
## 4861    1 0.0006531679 2.86220088 1.869498e-03
## 4862    1 0.0006531679 2.86220088 1.869498e-03
## 4863    1 0.0006531679 2.86220088 1.869498e-03
## 4864    1 0.0006531679 2.86220088 1.869498e-03
## 4865    1 0.0006531679 2.86220088 1.869498e-03
## 4866    1 0.0006531679 2.86220088 1.869498e-03
## 4867    1 0.0006531679 2.86220088 1.869498e-03
## 4868    1 0.0006531679 2.86220088 1.869498e-03
## 4869    1 0.0006531679 2.86220088 1.869498e-03
## 4870    1 0.0006531679 2.86220088 1.869498e-03
## 4871    1 0.0006531679 2.86220088 1.869498e-03
## 4872    1 0.0006531679 2.86220088 1.869498e-03
## 4873    1 0.0006531679 2.86220088 1.869498e-03
## 4874    1 0.0006531679 2.86220088 1.869498e-03
## 4875    1 0.0006531679 2.86220088 1.869498e-03
## 4876    1 0.0006531679 2.86220088 1.869498e-03
## 4877    1 0.0006531679 2.86220088 1.869498e-03
## 4878    1 0.0006531679 2.86220088 1.869498e-03
## 4879    1 0.0013774105 1.35812348 1.870694e-03
## 4880    1 0.0013774105 1.35812348 1.870694e-03
## 4881    1 0.0013774105 1.35812348 1.870694e-03
## 4882    1 0.0013774105 1.35812348 1.870694e-03
## 4883    1 0.0013774105 1.35812348 1.870694e-03
## 4884    1 0.0013774105 1.35812348 1.870694e-03
## 4885    1 0.0013774105 1.35812348 1.870694e-03
## 4886    1 0.0013774105 1.35812348 1.870694e-03
## 4887    1 0.0013774105 1.35812348 1.870694e-03
## 4888    1 0.0013774105 1.35812348 1.870694e-03
## 4889    1 0.0013774105 1.35812348 1.870694e-03
## 4890    1 0.0013774105 1.35812348 1.870694e-03
## 4891    1 0.0013774105 1.35812348 1.870694e-03
## 4892    1 0.0013774105 1.35812348 1.870694e-03
## 4893    1 0.0013774105 1.35812348 1.870694e-03
## 4894    1 0.0010638298 1.76358859 1.876158e-03
## 4895    1 0.0010638298 1.76358859 1.876158e-03
## 4896    1 0.0010638298 1.76358859 1.876158e-03
## 4897    1 0.0010638298 1.76358859 1.876158e-03
## 4898    1 0.0010638298 1.76358859 1.876158e-03
## 4899    1 0.0010638298 1.76358859 1.876158e-03
## 4900    1 0.0010638298 1.76358859 1.876158e-03
## 4901    1 0.0010638298 1.76358859 1.876158e-03
## 4902    1 0.0010638298 1.76358859 1.876158e-03
## 4903    1 0.0010638298 1.76358859 1.876158e-03
## 4904    1 0.0010638298 1.76358859 1.876158e-03
## 4905    1 0.0010638298 1.76358859 1.876158e-03
## 4906    1 0.0010638298 1.76358859 1.876158e-03
## 4907    1 0.0010638298 1.76358859 1.876158e-03
## 4908    1 0.0010638298 1.76358859 1.876158e-03
## 4909    4 0.0028248588 0.66497630 1.878464e-03
## 4910    4 0.0028248588 0.66497630 1.878464e-03
## 4911    4 0.0028248588 0.66497630 1.878464e-03
## 4912    4 0.0028248588 0.66497630 1.878464e-03
## 4913   11 0.0055837563 0.33647224 1.878779e-03
## 4914    1 0.0016233766 1.15745279 1.878982e-03
## 4915    1 0.0016233766 1.15745279 1.878982e-03
## 4916    1 0.0016233766 1.15745279 1.878982e-03
## 4917    1 0.0016233766 1.15745279 1.878982e-03
## 4918    1 0.0016233766 1.15745279 1.878982e-03
## 4919    1 0.0016233766 1.15745279 1.878982e-03
## 4920    1 0.0016233766 1.15745279 1.878982e-03
## 4921    1 0.0016233766 1.15745279 1.878982e-03
## 4922    1 0.0016233766 1.15745279 1.878982e-03
## 4923    2 0.0055865922 0.33647224 1.879733e-03
## 4924    4 0.0026126715 0.72213472 1.886701e-03
## 4925    1 0.0011764706 1.60943791 1.893456e-03
## 4926    1 0.0011764706 1.60943791 1.893456e-03
## 4927    1 0.0011764706 1.60943791 1.893456e-03
## 4928    1 0.0011764706 1.60943791 1.893456e-03
## 4929    1 0.0011764706 1.60943791 1.893456e-03
## 4930    1 0.0011764706 1.60943791 1.893456e-03
## 4931    1 0.0011764706 1.60943791 1.893456e-03
## 4932    1 0.0011764706 1.60943791 1.893456e-03
## 4933    1 0.0011764706 1.60943791 1.893456e-03
## 4934    1 0.0011764706 1.60943791 1.893456e-03
## 4935    1 0.0011764706 1.60943791 1.893456e-03
## 4936    2 0.0020682523 0.91629073 1.895120e-03
## 4937    2 0.0024242424 0.78275934 1.897598e-03
## 4938    5 0.0031094527 0.61090908 1.899593e-03
## 4939    8 0.0056497175 0.33647224 1.900973e-03
## 4940    2 0.0022471910 0.84729786 1.904040e-03
## 4941    2 0.0022471910 0.84729786 1.904040e-03
## 4942    2 0.0022471910 0.84729786 1.904040e-03
## 4943    2 0.0022471910 0.84729786 1.904040e-03
## 4944    1 0.0026385224 0.72213472 1.905369e-03
## 4945    1 0.0026385224 0.72213472 1.905369e-03
## 4946    1 0.0026385224 0.72213472 1.905369e-03
## 4947    3 0.0015228426 1.25276297 1.907761e-03
## 4948    3 0.0015228426 1.25276297 1.907761e-03
## 4949    1 0.0045454545 0.41985385 1.908427e-03
## 4950    3 0.0016510732 1.15745279 1.911039e-03
## 4951    3 0.0016510732 1.15745279 1.911039e-03
## 4952    3 0.0016510732 1.15745279 1.911039e-03
## 4953    3 0.0016510732 1.15745279 1.911039e-03
## 4954    1 0.0017889088 1.07044141 1.914922e-03
## 4955    1 0.0017889088 1.07044141 1.914922e-03
## 4956    1 0.0017889088 1.07044141 1.914922e-03
## 4957    1 0.0017889088 1.07044141 1.914922e-03
## 4958    1 0.0017889088 1.07044141 1.914922e-03
## 4959    1 0.0017889088 1.07044141 1.914922e-03
## 4960    1 0.0017889088 1.07044141 1.914922e-03
## 4961    1 0.0017889088 1.07044141 1.914922e-03
## 4962    1 0.0017889088 1.07044141 1.914922e-03
## 4963    1 0.0017889088 1.07044141 1.914922e-03
## 4964    5 0.0056947608 0.33647224 1.916129e-03
## 4965    2 0.0034246575 0.55961579 1.916492e-03
## 4966    2 0.0034246575 0.55961579 1.916492e-03
## 4967    1 0.0034246575 0.55961579 1.916492e-03
## 4968    1 0.0034246575 0.55961579 1.916492e-03
## 4969    1 0.0034246575 0.55961579 1.916492e-03
## 4970    2 0.0026560425 0.72213472 1.918020e-03
## 4971    2 0.0026560425 0.72213472 1.918020e-03
## 4972    2 0.0026560425 0.72213472 1.918020e-03
## 4973    2 0.0014124294 1.35812348 1.918254e-03
## 4974    2 0.0014124294 1.35812348 1.918254e-03
## 4975    2 0.0014124294 1.35812348 1.918254e-03
## 4976    2 0.0014124294 1.35812348 1.918254e-03
## 4977    2 0.0014124294 1.35812348 1.918254e-03
## 4978    4 0.0041365047 0.46430561 1.920602e-03
## 4979    1 0.0024570025 0.78275934 1.923242e-03
## 4980    1 0.0024570025 0.78275934 1.923242e-03
## 4981    1 0.0024570025 0.78275934 1.923242e-03
## 4982    1 0.0024570025 0.78275934 1.923242e-03
## 4983    1 0.0024570025 0.78275934 1.923242e-03
## 4984    1 0.0024570025 0.78275934 1.923242e-03
## 4985    1 0.0024570025 0.78275934 1.923242e-03
## 4986    4 0.0074211503 0.25951120 1.925872e-03
## 4987    2 0.0013063357 1.47590652 1.928029e-03
## 4988    2 0.0013063357 1.47590652 1.928029e-03
## 4989    2 0.0013063357 1.47590652 1.928029e-03
## 4990    2 0.0013063357 1.47590652 1.928029e-03
## 4991    2 0.0013063357 1.47590652 1.928029e-03
## 4992    2 0.0013063357 1.47590652 1.928029e-03
## 4993    2 0.0013063357 1.47590652 1.928029e-03
## 4994    2 0.0013063357 1.47590652 1.928029e-03
## 4995    2 0.0022779043 0.84729786 1.930063e-03
## 4996    2 0.0022779043 0.84729786 1.930063e-03
## 4997    2 0.0022779043 0.84729786 1.930063e-03
## 4998    4 0.0064935065 0.29725152 1.930205e-03
## 4999    1 0.0029069767 0.66497630 1.933071e-03
## 5000    1 0.0029069767 0.66497630 1.933071e-03
## 5001    1 0.0034602076 0.55961579 1.936387e-03
## 5002    1 0.0034602076 0.55961579 1.936387e-03
## 5003    1 0.0034602076 0.55961579 1.936387e-03
## 5004    1 0.0034602076 0.55961579 1.936387e-03
## 5005    3 0.0019595036 0.99039870 1.940690e-03
## 5006    2 0.0011007155 1.76358859 1.941209e-03
## 5007    2 0.0011007155 1.76358859 1.941209e-03
## 5008    2 0.0011007155 1.76358859 1.941209e-03
## 5009    2 0.0011007155 1.76358859 1.941209e-03
## 5010    2 0.0011007155 1.76358859 1.941209e-03
## 5011    2 0.0011007155 1.76358859 1.941209e-03
## 5012    2 0.0011007155 1.76358859 1.941209e-03
## 5013    2 0.0011007155 1.76358859 1.941209e-03
## 5014    2 0.0011007155 1.76358859 1.941209e-03
## 5015    3 0.0021186441 0.91629073 1.941294e-03
## 5016    3 0.0021186441 0.91629073 1.941294e-03
## 5017    1 0.0011013216 1.76358859 1.942278e-03
## 5018    1 0.0011013216 1.76358859 1.942278e-03
## 5019    1 0.0011013216 1.76358859 1.942278e-03
## 5020    1 0.0011013216 1.76358859 1.942278e-03
## 5021    1 0.0011013216 1.76358859 1.942278e-03
## 5022    1 0.0011013216 1.76358859 1.942278e-03
## 5023    1 0.0011013216 1.76358859 1.942278e-03
## 5024    1 0.0011013216 1.76358859 1.942278e-03
## 5025    1 0.0011013216 1.76358859 1.942278e-03
## 5026    1 0.0011013216 1.76358859 1.942278e-03
## 5027    1 0.0011013216 1.76358859 1.942278e-03
## 5028    1 0.0011013216 1.76358859 1.942278e-03
## 5029    1 0.0011013216 1.76358859 1.942278e-03
## 5030    1 0.0011013216 1.76358859 1.942278e-03
## 5031    3 0.0087209302 0.22314355 1.946019e-03
## 5032    1 0.0026954178 0.72213472 1.946455e-03
## 5033    1 0.0026954178 0.72213472 1.946455e-03
## 5034    4 0.0024875622 0.78275934 1.947163e-03
## 5035    2 0.0021276596 0.91629073 1.949555e-03
## 5036    2 0.0021276596 0.91629073 1.949555e-03
## 5037    3 0.0031914894 0.61090908 1.949710e-03
## 5038    1 0.0012121212 1.60943791 1.950834e-03
## 5039    1 0.0012121212 1.60943791 1.950834e-03
## 5040    1 0.0012121212 1.60943791 1.950834e-03
## 5041    1 0.0012121212 1.60943791 1.950834e-03
## 5042    1 0.0012121212 1.60943791 1.950834e-03
## 5043    1 0.0012121212 1.60943791 1.950834e-03
## 5044    1 0.0012121212 1.60943791 1.950834e-03
## 5045    1 0.0012121212 1.60943791 1.950834e-03
## 5046    1 0.0024937656 0.78275934 1.952018e-03
## 5047    1 0.0024937656 0.78275934 1.952018e-03
## 5048    1 0.0024937656 0.78275934 1.952018e-03
## 5049    3 0.0065789474 0.29725152 1.955602e-03
## 5050    2 0.0058139535 0.33647224 1.956234e-03
## 5051    1 0.0005503577 3.55534806 1.956713e-03
## 5052    1 0.0005503577 3.55534806 1.956713e-03
## 5053    1 0.0005503577 3.55534806 1.956713e-03
## 5054    1 0.0005503577 3.55534806 1.956713e-03
## 5055    1 0.0005503577 3.55534806 1.956713e-03
## 5056    1 0.0005503577 3.55534806 1.956713e-03
## 5057    1 0.0005503577 3.55534806 1.956713e-03
## 5058    1 0.0005503577 3.55534806 1.956713e-03
## 5059    1 0.0005503577 3.55534806 1.956713e-03
## 5060    1 0.0005503577 3.55534806 1.956713e-03
## 5061    1 0.0005503577 3.55534806 1.956713e-03
## 5062    1 0.0005503577 3.55534806 1.956713e-03
## 5063    1 0.0005503577 3.55534806 1.956713e-03
## 5064    1 0.0005503577 3.55534806 1.956713e-03
## 5065    1 0.0005503577 3.55534806 1.956713e-03
## 5066    1 0.0005503577 3.55534806 1.956713e-03
## 5067    1 0.0005503577 3.55534806 1.956713e-03
## 5068    1 0.0005503577 3.55534806 1.956713e-03
## 5069    1 0.0005503577 3.55534806 1.956713e-03
## 5070    1 0.0005503577 3.55534806 1.956713e-03
## 5071    1 0.0005503577 3.55534806 1.956713e-03
## 5072    1 0.0005503577 3.55534806 1.956713e-03
## 5073    1 0.0005503577 3.55534806 1.956713e-03
## 5074    1 0.0005503577 3.55534806 1.956713e-03
## 5075    1 0.0005503577 3.55534806 1.956713e-03
## 5076    1 0.0005503577 3.55534806 1.956713e-03
## 5077    1 0.0005503577 3.55534806 1.956713e-03
## 5078    1 0.0005503577 3.55534806 1.956713e-03
## 5079    1 0.0005503577 3.55534806 1.956713e-03
## 5080    1 0.0005503577 3.55534806 1.956713e-03
## 5081    1 0.0005503577 3.55534806 1.956713e-03
## 5082    1 0.0005503577 3.55534806 1.956713e-03
## 5083    1 0.0005503577 3.55534806 1.956713e-03
## 5084    1 0.0005503577 3.55534806 1.956713e-03
## 5085    1 0.0005503577 3.55534806 1.956713e-03
## 5086    1 0.0005503577 3.55534806 1.956713e-03
## 5087    1 0.0005503577 3.55534806 1.956713e-03
## 5088    1 0.0005503577 3.55534806 1.956713e-03
## 5089    1 0.0005503577 3.55534806 1.956713e-03
## 5090    1 0.0005503577 3.55534806 1.956713e-03
## 5091    1 0.0005503577 3.55534806 1.956713e-03
## 5092    1 0.0005503577 3.55534806 1.956713e-03
## 5093    1 0.0005503577 3.55534806 1.956713e-03
## 5094    1 0.0005503577 3.55534806 1.956713e-03
## 5095    1 0.0005503577 3.55534806 1.956713e-03
## 5096    1 0.0005503577 3.55534806 1.956713e-03
## 5097    1 0.0005503577 3.55534806 1.956713e-03
## 5098    1 0.0005503577 3.55534806 1.956713e-03
## 5099    1 0.0005503577 3.55534806 1.956713e-03
## 5100    1 0.0005503577 3.55534806 1.956713e-03
## 5101    1 0.0005503577 3.55534806 1.956713e-03
## 5102    1 0.0005503577 3.55534806 1.956713e-03
## 5103    1 0.0005503577 3.55534806 1.956713e-03
## 5104    1 0.0005503577 3.55534806 1.956713e-03
## 5105    1 0.0005503577 3.55534806 1.956713e-03
## 5106    1 0.0005503577 3.55534806 1.956713e-03
## 5107    1 0.0005503577 3.55534806 1.956713e-03
## 5108    1 0.0005503577 3.55534806 1.956713e-03
## 5109    1 0.0005503577 3.55534806 1.956713e-03
## 5110    1 0.0005503577 3.55534806 1.956713e-03
## 5111    1 0.0005503577 3.55534806 1.956713e-03
## 5112    1 0.0005503577 3.55534806 1.956713e-03
## 5113    1 0.0005503577 3.55534806 1.956713e-03
## 5114    1 0.0005503577 3.55534806 1.956713e-03
## 5115    1 0.0005503577 3.55534806 1.956713e-03
## 5116    1 0.0005503577 3.55534806 1.956713e-03
## 5117    1 0.0005503577 3.55534806 1.956713e-03
## 5118    1 0.0005503577 3.55534806 1.956713e-03
## 5119    1 0.0005503577 3.55534806 1.956713e-03
## 5120    1 0.0005503577 3.55534806 1.956713e-03
## 5121    1 0.0005503577 3.55534806 1.956713e-03
## 5122    1 0.0005503577 3.55534806 1.956713e-03
## 5123    1 0.0005503577 3.55534806 1.956713e-03
## 5124    1 0.0005503577 3.55534806 1.956713e-03
## 5125    1 0.0005503577 3.55534806 1.956713e-03
## 5126    1 0.0005503577 3.55534806 1.956713e-03
## 5127    1 0.0005503577 3.55534806 1.956713e-03
## 5128    1 0.0005503577 3.55534806 1.956713e-03
## 5129    1 0.0005503577 3.55534806 1.956713e-03
## 5130    1 0.0005503577 3.55534806 1.956713e-03
## 5131    1 0.0005503577 3.55534806 1.956713e-03
## 5132    1 0.0005503577 3.55534806 1.956713e-03
## 5133    1 0.0005503577 3.55534806 1.956713e-03
## 5134    1 0.0005503577 3.55534806 1.956713e-03
## 5135    1 0.0005503577 3.55534806 1.956713e-03
## 5136    1 0.0005503577 3.55534806 1.956713e-03
## 5137    1 0.0005503577 3.55534806 1.956713e-03
## 5138    1 0.0005503577 3.55534806 1.956713e-03
## 5139    1 0.0005503577 3.55534806 1.956713e-03
## 5140    1 0.0005503577 3.55534806 1.956713e-03
## 5141    1 0.0005503577 3.55534806 1.956713e-03
## 5142    1 0.0005503577 3.55534806 1.956713e-03
## 5143    1 0.0005503577 3.55534806 1.956713e-03
## 5144    1 0.0005503577 3.55534806 1.956713e-03
## 5145    1 0.0005503577 3.55534806 1.956713e-03
## 5146    1 0.0005503577 3.55534806 1.956713e-03
## 5147    1 0.0005503577 3.55534806 1.956713e-03
## 5148    1 0.0005503577 3.55534806 1.956713e-03
## 5149    1 0.0005503577 3.55534806 1.956713e-03
## 5150    1 0.0005503577 3.55534806 1.956713e-03
## 5151    1 0.0005503577 3.55534806 1.956713e-03
## 5152    1 0.0005503577 3.55534806 1.956713e-03
## 5153    1 0.0005503577 3.55534806 1.956713e-03
## 5154    1 0.0005503577 3.55534806 1.956713e-03
## 5155    1 0.0005503577 3.55534806 1.956713e-03
## 5156    1 0.0005503577 3.55534806 1.956713e-03
## 5157    1 0.0005503577 3.55534806 1.956713e-03
## 5158    1 0.0005503577 3.55534806 1.956713e-03
## 5159    1 0.0005503577 3.55534806 1.956713e-03
## 5160    1 0.0005503577 3.55534806 1.956713e-03
## 5161    1 0.0005503577 3.55534806 1.956713e-03
## 5162    1 0.0005503577 3.55534806 1.956713e-03
## 5163    1 0.0005503577 3.55534806 1.956713e-03
## 5164    1 0.0005503577 3.55534806 1.956713e-03
## 5165    1 0.0005503577 3.55534806 1.956713e-03
## 5166    1 0.0005503577 3.55534806 1.956713e-03
## 5167    1 0.0005503577 3.55534806 1.956713e-03
## 5168    1 0.0005503577 3.55534806 1.956713e-03
## 5169    1 0.0005503577 3.55534806 1.956713e-03
## 5170    1 0.0005503577 3.55534806 1.956713e-03
## 5171    1 0.0005503577 3.55534806 1.956713e-03
## 5172    1 0.0005503577 3.55534806 1.956713e-03
## 5173    1 0.0005503577 3.55534806 1.956713e-03
## 5174    1 0.0005503577 3.55534806 1.956713e-03
## 5175    1 0.0005503577 3.55534806 1.956713e-03
## 5176    1 0.0005503577 3.55534806 1.956713e-03
## 5177    1 0.0005503577 3.55534806 1.956713e-03
## 5178    1 0.0005503577 3.55534806 1.956713e-03
## 5179    1 0.0005503577 3.55534806 1.956713e-03
## 5180    1 0.0005503577 3.55534806 1.956713e-03
## 5181    1 0.0005503577 3.55534806 1.956713e-03
## 5182    1 0.0005503577 3.55534806 1.956713e-03
## 5183    1 0.0005503577 3.55534806 1.956713e-03
## 5184    1 0.0005503577 3.55534806 1.956713e-03
## 5185    1 0.0005503577 3.55534806 1.956713e-03
## 5186    1 0.0005503577 3.55534806 1.956713e-03
## 5187    1 0.0005503577 3.55534806 1.956713e-03
## 5188    1 0.0005503577 3.55534806 1.956713e-03
## 5189    1 0.0005503577 3.55534806 1.956713e-03
## 5190    1 0.0005503577 3.55534806 1.956713e-03
## 5191    1 0.0005503577 3.55534806 1.956713e-03
## 5192    1 0.0005503577 3.55534806 1.956713e-03
## 5193    1 0.0005503577 3.55534806 1.956713e-03
## 5194    1 0.0005503577 3.55534806 1.956713e-03
## 5195    1 0.0005503577 3.55534806 1.956713e-03
## 5196    1 0.0005503577 3.55534806 1.956713e-03
## 5197    1 0.0005503577 3.55534806 1.956713e-03
## 5198    1 0.0005503577 3.55534806 1.956713e-03
## 5199    1 0.0005503577 3.55534806 1.956713e-03
## 5200    1 0.0005503577 3.55534806 1.956713e-03
## 5201    1 0.0005503577 3.55534806 1.956713e-03
## 5202    1 0.0005503577 3.55534806 1.956713e-03
## 5203    1 0.0005503577 3.55534806 1.956713e-03
## 5204    1 0.0005503577 3.55534806 1.956713e-03
## 5205    1 0.0005503577 3.55534806 1.956713e-03
## 5206    1 0.0005503577 3.55534806 1.956713e-03
## 5207    1 0.0013280212 1.47590652 1.960035e-03
## 5208    1 0.0013280212 1.47590652 1.960035e-03
## 5209    1 0.0013280212 1.47590652 1.960035e-03
## 5210    1 0.0013280212 1.47590652 1.960035e-03
## 5211    1 0.0013280212 1.47590652 1.960035e-03
## 5212    1 0.0013280212 1.47590652 1.960035e-03
## 5213    1 0.0013280212 1.47590652 1.960035e-03
## 5214    1 0.0013280212 1.47590652 1.960035e-03
## 5215    1 0.0013280212 1.47590652 1.960035e-03
## 5216    6 0.0042372881 0.46430561 1.967397e-03
## 5217    1 0.0013333333 1.47590652 1.967875e-03
## 5218    1 0.0013333333 1.47590652 1.967875e-03
## 5219    1 0.0013333333 1.47590652 1.967875e-03
## 5220    1 0.0013333333 1.47590652 1.967875e-03
## 5221    1 0.0013333333 1.47590652 1.967875e-03
## 5222    1 0.0013333333 1.47590652 1.967875e-03
## 5223    1 0.0013333333 1.47590652 1.967875e-03
## 5224    1 0.0013333333 1.47590652 1.967875e-03
## 5225    1 0.0013333333 1.47590652 1.967875e-03
## 5226    1 0.0013333333 1.47590652 1.967875e-03
## 5227    1 0.0013333333 1.47590652 1.967875e-03
## 5228    1 0.0013333333 1.47590652 1.967875e-03
## 5229    1 0.0013333333 1.47590652 1.967875e-03
## 5230    1 0.0013333333 1.47590652 1.967875e-03
## 5231    4 0.0025157233 0.78275934 1.969206e-03
## 5232    1 0.0010121457 1.94591015 1.969545e-03
## 5233    1 0.0010121457 1.94591015 1.969545e-03
## 5234    1 0.0010121457 1.94591015 1.969545e-03
## 5235    1 0.0010121457 1.94591015 1.969545e-03
## 5236    1 0.0010121457 1.94591015 1.969545e-03
## 5237    1 0.0010121457 1.94591015 1.969545e-03
## 5238    1 0.0010121457 1.94591015 1.969545e-03
## 5239    1 0.0010121457 1.94591015 1.969545e-03
## 5240    1 0.0010121457 1.94591015 1.969545e-03
## 5241    1 0.0010121457 1.94591015 1.969545e-03
## 5242    1 0.0010121457 1.94591015 1.969545e-03
## 5243    1 0.0010121457 1.94591015 1.969545e-03
## 5244    1 0.0010121457 1.94591015 1.969545e-03
## 5245    1 0.0010121457 1.94591015 1.969545e-03
## 5246    1 0.0010121457 1.94591015 1.969545e-03
## 5247    1 0.0010121457 1.94591015 1.969545e-03
## 5248    1 0.0010121457 1.94591015 1.969545e-03
## 5249    1 0.0010121457 1.94591015 1.969545e-03
## 5250    1 0.0010121457 1.94591015 1.969545e-03
## 5251    1 0.0010121457 1.94591015 1.969545e-03
## 5252    1 0.0010121457 1.94591015 1.969545e-03
## 5253    1 0.0010121457 1.94591015 1.969545e-03
## 5254    1 0.0010121457 1.94591015 1.969545e-03
## 5255    1 0.0010121457 1.94591015 1.969545e-03
## 5256    8 0.0052253429 0.37729423 1.971492e-03
## 5257    3 0.0035294118 0.55961579 1.975115e-03
## 5258    3 0.0035294118 0.55961579 1.975115e-03
## 5259    2 0.0010152284 1.94591015 1.975543e-03
## 5260    2 0.0010152284 1.94591015 1.975543e-03
## 5261    2 0.0010152284 1.94591015 1.975543e-03
## 5262    2 0.0010152284 1.94591015 1.975543e-03
## 5263    2 0.0010152284 1.94591015 1.975543e-03
## 5264    2 0.0010152284 1.94591015 1.975543e-03
## 5265    2 0.0010152284 1.94591015 1.975543e-03
## 5266    2 0.0010152284 1.94591015 1.975543e-03
## 5267    2 0.0010152284 1.94591015 1.975543e-03
## 5268    2 0.0010152284 1.94591015 1.975543e-03
## 5269    4 0.0047058824 0.41985385 1.975783e-03
## 5270    1 0.0011235955 1.76358859 1.981560e-03
## 5271    1 0.0011235955 1.76358859 1.981560e-03
## 5272    1 0.0011235955 1.76358859 1.981560e-03
## 5273    1 0.0011235955 1.76358859 1.981560e-03
## 5274    1 0.0011235955 1.76358859 1.981560e-03
## 5275    1 0.0011235955 1.76358859 1.981560e-03
## 5276    1 0.0011235955 1.76358859 1.981560e-03
## 5277    1 0.0011235955 1.76358859 1.981560e-03
## 5278    1 0.0011235955 1.76358859 1.981560e-03
## 5279    1 0.0011235955 1.76358859 1.981560e-03
## 5280    1 0.0011235955 1.76358859 1.981560e-03
## 5281    1 0.0011235955 1.76358859 1.981560e-03
## 5282    1 0.0011235955 1.76358859 1.981560e-03
## 5283    1 0.0011235955 1.76358859 1.981560e-03
## 5284    1 0.0011235955 1.76358859 1.981560e-03
## 5285    1 0.0011235955 1.76358859 1.981560e-03
## 5286    1 0.0011235955 1.76358859 1.981560e-03
## 5287    1 0.0011235955 1.76358859 1.981560e-03
## 5288    1 0.0011235955 1.76358859 1.981560e-03
## 5289    1 0.0011235955 1.76358859 1.981560e-03
## 5290    1 0.0011235955 1.76358859 1.981560e-03
## 5291    1 0.0011235955 1.76358859 1.981560e-03
## 5292    5 0.0066666667 0.29725152 1.981677e-03
## 5293    2 0.0017123288 1.15745279 1.981940e-03
## 5294    2 0.0017123288 1.15745279 1.981940e-03
## 5295    2 0.0017123288 1.15745279 1.981940e-03
## 5296    2 0.0017123288 1.15745279 1.981940e-03
## 5297    2 0.0017123288 1.15745279 1.981940e-03
## 5298    1 0.0017123288 1.15745279 1.981940e-03
## 5299    1 0.0017123288 1.15745279 1.981940e-03
## 5300    1 0.0017123288 1.15745279 1.981940e-03
## 5301    1 0.0017123288 1.15745279 1.981940e-03
## 5302    1 0.0017123288 1.15745279 1.981940e-03
## 5303    1 0.0017123288 1.15745279 1.981940e-03
## 5304    1 0.0017123288 1.15745279 1.981940e-03
## 5305    1 0.0017123288 1.15745279 1.981940e-03
## 5306    2 0.0032467532 0.61090908 1.983471e-03
## 5307    2 0.0032467532 0.61090908 1.983471e-03
## 5308    1 0.0029850746 0.66497630 1.985004e-03
## 5309    1 0.0018552876 1.07044141 1.985977e-03
## 5310    1 0.0018552876 1.07044141 1.985977e-03
## 5311    1 0.0018552876 1.07044141 1.985977e-03
## 5312    5 0.0027517887 0.72213472 1.987162e-03
## 5313    5 0.0042808219 0.46430561 1.987610e-03
## 5314    2 0.0027548209 0.72213472 1.989352e-03
## 5315    2 0.0027548209 0.72213472 1.989352e-03
## 5316    3 0.0018656716 1.07044141 1.997092e-03
## 5317    3 0.0018656716 1.07044141 1.997092e-03
## 5318    3 0.0018656716 1.07044141 1.997092e-03
## 5319    3 0.0018656716 1.07044141 1.997092e-03
## 5320    8 0.0106241700 0.18805223 1.997899e-03
## 5321    2 0.0012437811 1.60943791 2.001788e-03
## 5322    2 0.0012437811 1.60943791 2.001788e-03
## 5323    2 0.0012437811 1.60943791 2.001788e-03
## 5324    2 0.0012437811 1.60943791 2.001788e-03
## 5325    2 0.0012437811 1.60943791 2.001788e-03
## 5326    2 0.0012437811 1.60943791 2.001788e-03
## 5327    2 0.0012437811 1.60943791 2.001788e-03
## 5328    2 0.0035778175 0.55961579 2.002203e-03
## 5329    2 0.0035778175 0.55961579 2.002203e-03
## 5330    2 0.0035778175 0.55961579 2.002203e-03
## 5331    2 0.0035778175 0.55961579 2.002203e-03
## 5332    1 0.0023640662 0.84729786 2.003068e-03
## 5333    1 0.0023640662 0.84729786 2.003068e-03
## 5334    2 0.0020242915 0.99039870 2.004856e-03
## 5335    2 0.0020242915 0.99039870 2.004856e-03
## 5336    1 0.0011389522 1.76358859 2.008643e-03
## 5337    1 0.0011389522 1.76358859 2.008643e-03
## 5338    1 0.0011389522 1.76358859 2.008643e-03
## 5339    1 0.0011389522 1.76358859 2.008643e-03
## 5340    1 0.0011389522 1.76358859 2.008643e-03
## 5341    1 0.0011389522 1.76358859 2.008643e-03
## 5342    1 0.0011389522 1.76358859 2.008643e-03
## 5343    1 0.0011389522 1.76358859 2.008643e-03
## 5344    1 0.0011389522 1.76358859 2.008643e-03
## 5345    1 0.0011389522 1.76358859 2.008643e-03
## 5346    1 0.0011389522 1.76358859 2.008643e-03
## 5347    1 0.0011389522 1.76358859 2.008643e-03
## 5348    1 0.0011389522 1.76358859 2.008643e-03
## 5349    1 0.0011389522 1.76358859 2.008643e-03
## 5350    1 0.0011389522 1.76358859 2.008643e-03
## 5351    1 0.0011389522 1.76358859 2.008643e-03
## 5352    1 0.0011389522 1.76358859 2.008643e-03
## 5353    2 0.0059701493 0.33647224 2.008789e-03
## 5354    2 0.0059701493 0.33647224 2.008789e-03
## 5355    1 0.0021929825 0.91629073 2.009409e-03
## 5356    1 0.0021929825 0.91629073 2.009409e-03
## 5357    1 0.0021929825 0.91629073 2.009409e-03
## 5358    3 0.0025684932 0.78275934 2.010512e-03
## 5359    4 0.0020304569 0.99039870 2.010962e-03
## 5360    4 0.0020304569 0.99039870 2.010962e-03
## 5361    1 0.0010341262 1.94591015 2.012317e-03
## 5362    1 0.0010341262 1.94591015 2.012317e-03
## 5363    1 0.0010341262 1.94591015 2.012317e-03
## 5364    1 0.0010341262 1.94591015 2.012317e-03
## 5365    1 0.0010341262 1.94591015 2.012317e-03
## 5366    1 0.0010341262 1.94591015 2.012317e-03
## 5367    1 0.0010341262 1.94591015 2.012317e-03
## 5368    1 0.0010341262 1.94591015 2.012317e-03
## 5369    1 0.0010341262 1.94591015 2.012317e-03
## 5370    1 0.0010341262 1.94591015 2.012317e-03
## 5371    1 0.0010341262 1.94591015 2.012317e-03
## 5372    1 0.0010341262 1.94591015 2.012317e-03
## 5373    1 0.0010341262 1.94591015 2.012317e-03
## 5374    1 0.0010341262 1.94591015 2.012317e-03
## 5375    1 0.0010341262 1.94591015 2.012317e-03
## 5376    1 0.0010341262 1.94591015 2.012317e-03
## 5377    1 0.0010341262 1.94591015 2.012317e-03
## 5378    1 0.0010341262 1.94591015 2.012317e-03
## 5379    1 0.0010341262 1.94591015 2.012317e-03
## 5380    1 0.0010341262 1.94591015 2.012317e-03
## 5381    1 0.0010341262 1.94591015 2.012317e-03
## 5382    1 0.0010341262 1.94591015 2.012317e-03
## 5383    1 0.0010341262 1.94591015 2.012317e-03
## 5384    1 0.0010341262 1.94591015 2.012317e-03
## 5385    1 0.0010341262 1.94591015 2.012317e-03
## 5386    1 0.0010341262 1.94591015 2.012317e-03
## 5387    1 0.0010341262 1.94591015 2.012317e-03
## 5388    1 0.0010341262 1.94591015 2.012317e-03
## 5389    1 0.0010341262 1.94591015 2.012317e-03
## 5390    1 0.0010341262 1.94591015 2.012317e-03
## 5391    1 0.0027932961 0.72213472 2.017136e-03
## 5392    1 0.0027932961 0.72213472 2.017136e-03
## 5393    1 0.0027932961 0.72213472 2.017136e-03
## 5394    1 0.0027932961 0.72213472 2.017136e-03
## 5395    4 0.0022014309 0.91629073 2.017151e-03
## 5396    6 0.0033021464 0.61090908 2.017311e-03
## 5397    2 0.0022026432 0.91629073 2.018262e-03
## 5398    3 0.0030364372 0.66497630 2.019159e-03
## 5399    3 0.0018867925 1.07044141 2.019701e-03
## 5400    3 0.0018867925 1.07044141 2.019701e-03
## 5401    1 0.0007062147 2.86220088 2.021328e-03
## 5402    1 0.0007062147 2.86220088 2.021328e-03
## 5403    1 0.0007062147 2.86220088 2.021328e-03
## 5404    1 0.0007062147 2.86220088 2.021328e-03
## 5405    1 0.0007062147 2.86220088 2.021328e-03
## 5406    1 0.0007062147 2.86220088 2.021328e-03
## 5407    1 0.0007062147 2.86220088 2.021328e-03
## 5408    1 0.0007062147 2.86220088 2.021328e-03
## 5409    1 0.0007062147 2.86220088 2.021328e-03
## 5410    1 0.0007062147 2.86220088 2.021328e-03
## 5411    1 0.0007062147 2.86220088 2.021328e-03
## 5412    1 0.0007062147 2.86220088 2.021328e-03
## 5413    1 0.0007062147 2.86220088 2.021328e-03
## 5414    1 0.0007062147 2.86220088 2.021328e-03
## 5415    1 0.0007062147 2.86220088 2.021328e-03
## 5416    1 0.0007062147 2.86220088 2.021328e-03
## 5417    1 0.0007062147 2.86220088 2.021328e-03
## 5418    1 0.0007062147 2.86220088 2.021328e-03
## 5419    1 0.0007062147 2.86220088 2.021328e-03
## 5420    1 0.0007062147 2.86220088 2.021328e-03
## 5421    1 0.0007062147 2.86220088 2.021328e-03
## 5422    1 0.0007062147 2.86220088 2.021328e-03
## 5423    1 0.0007062147 2.86220088 2.021328e-03
## 5424    1 0.0007062147 2.86220088 2.021328e-03
## 5425    1 0.0007062147 2.86220088 2.021328e-03
## 5426    1 0.0007062147 2.86220088 2.021328e-03
## 5427    1 0.0007062147 2.86220088 2.021328e-03
## 5428    1 0.0007062147 2.86220088 2.021328e-03
## 5429    1 0.0007062147 2.86220088 2.021328e-03
## 5430    1 0.0007062147 2.86220088 2.021328e-03
## 5431    1 0.0007062147 2.86220088 2.021328e-03
## 5432    1 0.0007062147 2.86220088 2.021328e-03
## 5433    1 0.0007062147 2.86220088 2.021328e-03
## 5434    1 0.0007062147 2.86220088 2.021328e-03
## 5435    1 0.0007062147 2.86220088 2.021328e-03
## 5436    1 0.0007062147 2.86220088 2.021328e-03
## 5437    1 0.0007062147 2.86220088 2.021328e-03
## 5438    1 0.0007062147 2.86220088 2.021328e-03
## 5439    1 0.0007062147 2.86220088 2.021328e-03
## 5440    1 0.0007062147 2.86220088 2.021328e-03
## 5441    1 0.0007062147 2.86220088 2.021328e-03
## 5442    1 0.0007062147 2.86220088 2.021328e-03
## 5443    1 0.0007062147 2.86220088 2.021328e-03
## 5444    1 0.0007062147 2.86220088 2.021328e-03
## 5445    1 0.0007062147 2.86220088 2.021328e-03
## 5446    1 0.0007062147 2.86220088 2.021328e-03
## 5447    1 0.0007062147 2.86220088 2.021328e-03
## 5448    1 0.0007062147 2.86220088 2.021328e-03
## 5449    1 0.0007062147 2.86220088 2.021328e-03
## 5450    2 0.0012578616 1.60943791 2.024450e-03
## 5451    2 0.0012578616 1.60943791 2.024450e-03
## 5452    2 0.0012578616 1.60943791 2.024450e-03
## 5453    2 0.0012578616 1.60943791 2.024450e-03
## 5454    2 0.0012578616 1.60943791 2.024450e-03
## 5455    2 0.0012578616 1.60943791 2.024450e-03
## 5456    2 0.0012578616 1.60943791 2.024450e-03
## 5457    2 0.0012578616 1.60943791 2.024450e-03
## 5458    4 0.0107816712 0.18805223 2.027517e-03
## 5459    4 0.0107816712 0.18805223 2.027517e-03
## 5460    1 0.0013774105 1.47590652 2.032929e-03
## 5461    1 0.0013774105 1.47590652 2.032929e-03
## 5462    1 0.0013774105 1.47590652 2.032929e-03
## 5463    1 0.0013774105 1.47590652 2.032929e-03
## 5464    1 0.0013774105 1.47590652 2.032929e-03
## 5465    1 0.0013774105 1.47590652 2.032929e-03
## 5466    1 0.0013774105 1.47590652 2.032929e-03
## 5467    1 0.0013774105 1.47590652 2.032929e-03
## 5468    1 0.0013774105 1.47590652 2.032929e-03
## 5469    1 0.0016233766 1.25276297 2.033706e-03
## 5470    1 0.0016233766 1.25276297 2.033706e-03
## 5471    1 0.0016233766 1.25276297 2.033706e-03
## 5472    1 0.0016233766 1.25276297 2.033706e-03
## 5473    1 0.0016233766 1.25276297 2.033706e-03
## 5474    1 0.0016233766 1.25276297 2.033706e-03
## 5475    1 0.0016233766 1.25276297 2.033706e-03
## 5476    1 0.0016233766 1.25276297 2.033706e-03
## 5477    3 0.0036363636 0.55961579 2.034967e-03
## 5478    3 0.0039840637 0.51082562 2.035162e-03
## 5479    4 0.0048484848 0.41985385 2.035655e-03
## 5480    2 0.0043859649 0.46430561 2.036428e-03
## 5481   11 0.0060539351 0.33647224 2.036981e-03
## 5482    4 0.0028248588 0.72213472 2.039929e-03
## 5483    4 0.0028248588 0.72213472 2.039929e-03
## 5484    8 0.0044028619 0.46430561 2.044273e-03
## 5485    3 0.0048701299 0.41985385 2.044743e-03
## 5486    3 0.0048701299 0.41985385 2.044743e-03
## 5487    2 0.0020682523 0.99039870 2.048394e-03
## 5488    2 0.0020682523 0.99039870 2.048394e-03
## 5489    2 0.0020682523 0.99039870 2.048394e-03
## 5490    2 0.0020682523 0.99039870 2.048394e-03
## 5491    1 0.0060975610 0.33647224 2.051660e-03
## 5492    1 0.0060975610 0.33647224 2.051660e-03
## 5493    1 0.0060975610 0.33647224 2.051660e-03
## 5494    2 0.0069204152 0.29725152 2.057104e-03
## 5495    2 0.0022471910 0.91629073 2.059080e-03
## 5496    2 0.0022471910 0.91629073 2.059080e-03
## 5497    3 0.0033707865 0.61090908 2.059244e-03
## 5498    3 0.0031023785 0.66497630 2.063008e-03
## 5499    2 0.0049140049 0.41985385 2.063164e-03
## 5500    2 0.0049140049 0.41985385 2.063164e-03
## 5501    1 0.0026385224 0.78275934 2.065328e-03
## 5502    1 0.0026385224 0.78275934 2.065328e-03
## 5503    1 0.0026385224 0.78275934 2.065328e-03
## 5504    1 0.0026385224 0.78275934 2.065328e-03
## 5505    3 0.0015228426 1.35812348 2.068208e-03
## 5506    3 0.0016510732 1.25276297 2.068403e-03
## 5507    3 0.0016510732 1.25276297 2.068403e-03
## 5508    1 0.0010638298 1.94591015 2.070117e-03
## 5509    1 0.0010638298 1.94591015 2.070117e-03
## 5510    1 0.0010638298 1.94591015 2.070117e-03
## 5511    1 0.0010638298 1.94591015 2.070117e-03
## 5512    1 0.0010638298 1.94591015 2.070117e-03
## 5513    1 0.0010638298 1.94591015 2.070117e-03
## 5514    1 0.0010638298 1.94591015 2.070117e-03
## 5515    1 0.0010638298 1.94591015 2.070117e-03
## 5516    1 0.0010638298 1.94591015 2.070117e-03
## 5517    1 0.0010638298 1.94591015 2.070117e-03
## 5518    1 0.0010638298 1.94591015 2.070117e-03
## 5519    1 0.0010638298 1.94591015 2.070117e-03
## 5520    1 0.0010638298 1.94591015 2.070117e-03
## 5521    1 0.0010638298 1.94591015 2.070117e-03
## 5522    1 0.0010638298 1.94591015 2.070117e-03
## 5523    1 0.0010638298 1.94591015 2.070117e-03
## 5524    1 0.0010638298 1.94591015 2.070117e-03
## 5525    1 0.0010638298 1.94591015 2.070117e-03
## 5526    1 0.0010638298 1.94591015 2.070117e-03
## 5527    1 0.0010638298 1.94591015 2.070117e-03
## 5528    1 0.0017889088 1.15745279 2.070577e-03
## 5529    1 0.0017889088 1.15745279 2.070577e-03
## 5530    1 0.0017889088 1.15745279 2.070577e-03
## 5531    1 0.0011764706 1.76358859 2.074810e-03
## 5532    1 0.0011764706 1.76358859 2.074810e-03
## 5533    1 0.0011764706 1.76358859 2.074810e-03
## 5534    1 0.0011764706 1.76358859 2.074810e-03
## 5535    1 0.0011764706 1.76358859 2.074810e-03
## 5536    1 0.0011764706 1.76358859 2.074810e-03
## 5537    1 0.0011764706 1.76358859 2.074810e-03
## 5538    1 0.0011764706 1.76358859 2.074810e-03
## 5539    2 0.0026560425 0.78275934 2.079042e-03
## 5540    2 0.0026560425 0.78275934 2.079042e-03
## 5541    1 0.0024570025 0.84729786 2.081813e-03
## 5542    1 0.0024570025 0.84729786 2.081813e-03
## 5543    1 0.0024570025 0.84729786 2.081813e-03
## 5544    2 0.0014124294 1.47590652 2.084614e-03
## 5545    2 0.0014124294 1.47590652 2.084614e-03
## 5546    2 0.0014124294 1.47590652 2.084614e-03
## 5547    2 0.0014124294 1.47590652 2.084614e-03
## 5548    2 0.0014124294 1.47590652 2.084614e-03
## 5549    2 0.0014124294 1.47590652 2.084614e-03
## 5550    2 0.0014124294 1.47590652 2.084614e-03
## 5551    2 0.0014124294 1.47590652 2.084614e-03
## 5552    2 0.0014124294 1.47590652 2.084614e-03
## 5553    2 0.0022779043 0.91629073 2.087223e-03
## 5554    2 0.0022779043 0.91629073 2.087223e-03
## 5555    2 0.0022779043 0.91629073 2.087223e-03
## 5556    2 0.0022779043 0.91629073 2.087223e-03
## 5557    2 0.0026666667 0.78275934 2.087358e-03
## 5558    2 0.0026666667 0.78275934 2.087358e-03
## 5559    3 0.0034168565 0.61090908 2.087389e-03
## 5560    3 0.0034168565 0.61090908 2.087389e-03
## 5561    2 0.0034246575 0.61090908 2.092154e-03
## 5562    1 0.0034246575 0.61090908 2.092154e-03
## 5563    1 0.0034246575 0.61090908 2.092154e-03
## 5564    1 0.0034246575 0.61090908 2.092154e-03
## 5565    3 0.0021186441 0.99039870 2.098302e-03
## 5566    3 0.0021186441 0.99039870 2.098302e-03
## 5567    3 0.0021186441 0.99039870 2.098302e-03
## 5568    1 0.0029069767 0.72213472 2.099229e-03
## 5569    2 0.0013063357 1.60943791 2.102466e-03
## 5570    2 0.0013063357 1.60943791 2.102466e-03
## 5571    2 0.0013063357 1.60943791 2.102466e-03
## 5572    2 0.0013063357 1.60943791 2.102466e-03
## 5573    2 0.0013063357 1.60943791 2.102466e-03
## 5574    1 0.0008561644 2.45673577 2.103370e-03
## 5575    1 0.0008561644 2.45673577 2.103370e-03
## 5576    1 0.0008561644 2.45673577 2.103370e-03
## 5577    1 0.0008561644 2.45673577 2.103370e-03
## 5578    1 0.0008561644 2.45673577 2.103370e-03
## 5579    1 0.0008561644 2.45673577 2.103370e-03
## 5580    1 0.0008561644 2.45673577 2.103370e-03
## 5581    1 0.0008561644 2.45673577 2.103370e-03
## 5582    1 0.0008561644 2.45673577 2.103370e-03
## 5583    1 0.0008561644 2.45673577 2.103370e-03
## 5584    1 0.0008561644 2.45673577 2.103370e-03
## 5585    1 0.0008561644 2.45673577 2.103370e-03
## 5586    1 0.0008561644 2.45673577 2.103370e-03
## 5587    1 0.0008561644 2.45673577 2.103370e-03
## 5588    1 0.0008561644 2.45673577 2.103370e-03
## 5589    1 0.0008561644 2.45673577 2.103370e-03
## 5590    1 0.0008561644 2.45673577 2.103370e-03
## 5591    1 0.0008561644 2.45673577 2.103370e-03
## 5592    1 0.0008561644 2.45673577 2.103370e-03
## 5593    1 0.0008561644 2.45673577 2.103370e-03
## 5594    1 0.0008561644 2.45673577 2.103370e-03
## 5595    1 0.0008561644 2.45673577 2.103370e-03
## 5596    1 0.0008561644 2.45673577 2.103370e-03
## 5597    1 0.0008561644 2.45673577 2.103370e-03
## 5598    1 0.0008561644 2.45673577 2.103370e-03
## 5599    1 0.0008561644 2.45673577 2.103370e-03
## 5600    1 0.0008561644 2.45673577 2.103370e-03
## 5601    1 0.0008561644 2.45673577 2.103370e-03
## 5602    1 0.0008561644 2.45673577 2.103370e-03
## 5603    7 0.0070850202 0.29725152 2.106033e-03
## 5604    2 0.0021276596 0.99039870 2.107231e-03
## 5605    2 0.0021276596 0.99039870 2.107231e-03
## 5606    2 0.0021276596 0.99039870 2.107231e-03
## 5607    4 0.0024875622 0.84729786 2.107706e-03
## 5608    4 0.0024875622 0.84729786 2.107706e-03
## 5609    1 0.0026954178 0.78275934 2.109863e-03
## 5610    1 0.0026954178 0.78275934 2.109863e-03
## 5611    1 0.0026954178 0.78275934 2.109863e-03
## 5612    3 0.0041322314 0.51082562 2.110850e-03
## 5613    3 0.0041322314 0.51082562 2.110850e-03
## 5614    6 0.0037735849 0.55961579 2.111758e-03
## 5615    1 0.0024937656 0.84729786 2.112962e-03
## 5616    1 0.0024937656 0.84729786 2.112962e-03
## 5617    1 0.0024937656 0.84729786 2.112962e-03
## 5618    4 0.0041365047 0.51082562 2.113033e-03
## 5619    1 0.0034602076 0.61090908 2.113872e-03
## 5620    1 0.0034602076 0.61090908 2.113872e-03
## 5621    1 0.0034602076 0.61090908 2.113872e-03
## 5622    4 0.0045558087 0.46430561 2.115288e-03
## 5623   10 0.0062893082 0.33647224 2.116178e-03
## 5624    5 0.0056179775 0.37729423 2.119631e-03
## 5625    3 0.0031914894 0.66497630 2.122265e-03
## 5626    3 0.0031914894 0.66497630 2.122265e-03
## 5627    4 0.0025157233 0.84729786 2.131567e-03
## 5628    4 0.0025157233 0.84729786 2.131567e-03
## 5629    7 0.0113636364 0.18805223 2.136957e-03
## 5630    1 0.0013280212 1.60943791 2.137368e-03
## 5631    1 0.0013280212 1.60943791 2.137368e-03
## 5632    1 0.0013280212 1.60943791 2.137368e-03
## 5633    1 0.0013280212 1.60943791 2.137368e-03
## 5634    1 0.0013280212 1.60943791 2.137368e-03
## 5635    1 0.0013280212 1.60943791 2.137368e-03
## 5636    1 0.0013280212 1.60943791 2.137368e-03
## 5637    1 0.0013280212 1.60943791 2.137368e-03
## 5638    1 0.0013280212 1.60943791 2.137368e-03
## 5639    1 0.0013280212 1.60943791 2.137368e-03
## 5640    1 0.0013280212 1.60943791 2.137368e-03
## 5641    1 0.0013280212 1.60943791 2.137368e-03
## 5642    1 0.0013280212 1.60943791 2.137368e-03
## 5643    1 0.0013280212 1.60943791 2.137368e-03
## 5644    1 0.0013280212 1.60943791 2.137368e-03
## 5645    1 0.0012121212 1.76358859 2.137683e-03
## 5646    1 0.0012121212 1.76358859 2.137683e-03
## 5647    1 0.0012121212 1.76358859 2.137683e-03
## 5648    1 0.0012121212 1.76358859 2.137683e-03
## 5649    1 0.0012121212 1.76358859 2.137683e-03
## 5650    1 0.0012121212 1.76358859 2.137683e-03
## 5651    1 0.0012121212 1.76358859 2.137683e-03
## 5652    1 0.0012121212 1.76358859 2.137683e-03
## 5653    1 0.0012121212 1.76358859 2.137683e-03
## 5654    1 0.0012121212 1.76358859 2.137683e-03
## 5655    1 0.0012121212 1.76358859 2.137683e-03
## 5656    1 0.0012121212 1.76358859 2.137683e-03
## 5657    1 0.0012121212 1.76358859 2.137683e-03
## 5658    1 0.0012121212 1.76358859 2.137683e-03
## 5659    1 0.0012121212 1.76358859 2.137683e-03
## 5660    1 0.0012121212 1.76358859 2.137683e-03
## 5661    1 0.0012121212 1.76358859 2.137683e-03
## 5662    1 0.0012121212 1.76358859 2.137683e-03
## 5663    2 0.0011007155 1.94591015 2.141893e-03
## 5664    2 0.0011007155 1.94591015 2.141893e-03
## 5665    2 0.0011007155 1.94591015 2.141893e-03
## 5666    2 0.0011007155 1.94591015 2.141893e-03
## 5667    2 0.0011007155 1.94591015 2.141893e-03
## 5668    2 0.0011007155 1.94591015 2.141893e-03
## 5669    2 0.0011007155 1.94591015 2.141893e-03
## 5670    2 0.0011007155 1.94591015 2.141893e-03
## 5671    2 0.0011007155 1.94591015 2.141893e-03
## 5672    2 0.0011007155 1.94591015 2.141893e-03
## 5673    2 0.0011007155 1.94591015 2.141893e-03
## 5674    2 0.0011007155 1.94591015 2.141893e-03
## 5675    2 0.0011007155 1.94591015 2.141893e-03
## 5676    2 0.0011007155 1.94591015 2.141893e-03
## 5677    2 0.0011007155 1.94591015 2.141893e-03
## 5678    2 0.0011007155 1.94591015 2.141893e-03
## 5679    2 0.0011007155 1.94591015 2.141893e-03
## 5680    2 0.0011007155 1.94591015 2.141893e-03
## 5681    2 0.0011007155 1.94591015 2.141893e-03
## 5682    2 0.0011007155 1.94591015 2.141893e-03
## 5683    2 0.0011007155 1.94591015 2.141893e-03
## 5684    2 0.0011007155 1.94591015 2.141893e-03
## 5685    2 0.0011007155 1.94591015 2.141893e-03
## 5686    1 0.0011013216 1.94591015 2.143073e-03
## 5687    1 0.0011013216 1.94591015 2.143073e-03
## 5688    1 0.0011013216 1.94591015 2.143073e-03
## 5689    1 0.0011013216 1.94591015 2.143073e-03
## 5690    1 0.0011013216 1.94591015 2.143073e-03
## 5691    1 0.0011013216 1.94591015 2.143073e-03
## 5692    1 0.0011013216 1.94591015 2.143073e-03
## 5693    1 0.0011013216 1.94591015 2.143073e-03
## 5694    1 0.0011013216 1.94591015 2.143073e-03
## 5695    1 0.0011013216 1.94591015 2.143073e-03
## 5696    2 0.0017123288 1.25276297 2.145142e-03
## 5697    2 0.0017123288 1.25276297 2.145142e-03
## 5698    2 0.0017123288 1.25276297 2.145142e-03
## 5699    2 0.0017123288 1.25276297 2.145142e-03
## 5700    1 0.0017123288 1.25276297 2.145142e-03
## 5701    1 0.0017123288 1.25276297 2.145142e-03
## 5702    1 0.0017123288 1.25276297 2.145142e-03
## 5703    1 0.0017123288 1.25276297 2.145142e-03
## 5704    1 0.0017123288 1.25276297 2.145142e-03
## 5705    1 0.0017123288 1.25276297 2.145142e-03
## 5706    1 0.0017123288 1.25276297 2.145142e-03
## 5707    1 0.0017123288 1.25276297 2.145142e-03
## 5708    1 0.0017123288 1.25276297 2.145142e-03
## 5709    1 0.0017123288 1.25276297 2.145142e-03
## 5710    1 0.0017123288 1.25276297 2.145142e-03
## 5711    1 0.0013333333 1.60943791 2.145917e-03
## 5712    1 0.0013333333 1.60943791 2.145917e-03
## 5713    1 0.0013333333 1.60943791 2.145917e-03
## 5714    1 0.0013333333 1.60943791 2.145917e-03
## 5715    1 0.0013333333 1.60943791 2.145917e-03
## 5716    1 0.0013333333 1.60943791 2.145917e-03
## 5717    1 0.0013333333 1.60943791 2.145917e-03
## 5718    1 0.0013333333 1.60943791 2.145917e-03
## 5719    1 0.0013333333 1.60943791 2.145917e-03
## 5720    1 0.0013333333 1.60943791 2.145917e-03
## 5721    1 0.0013333333 1.60943791 2.145917e-03
## 5722    1 0.0013333333 1.60943791 2.145917e-03
## 5723    1 0.0013333333 1.60943791 2.145917e-03
## 5724    1 0.0013333333 1.60943791 2.145917e-03
## 5725    1 0.0013333333 1.60943791 2.145917e-03
## 5726    1 0.0013333333 1.60943791 2.145917e-03
## 5727    1 0.0013333333 1.60943791 2.145917e-03
## 5728    1 0.0013333333 1.60943791 2.145917e-03
## 5729    1 0.0013333333 1.60943791 2.145917e-03
## 5730    1 0.0013333333 1.60943791 2.145917e-03
## 5731    1 0.0013333333 1.60943791 2.145917e-03
## 5732    1 0.0013333333 1.60943791 2.145917e-03
## 5733    1 0.0013333333 1.60943791 2.145917e-03
## 5734    1 0.0018552876 1.15745279 2.147408e-03
## 5735    1 0.0018552876 1.15745279 2.147408e-03
## 5736    1 0.0018552876 1.15745279 2.147408e-03
## 5737    7 0.0096418733 0.22314355 2.151522e-03
## 5738    5 0.0027517887 0.78275934 2.153988e-03
## 5739    1 0.0029850746 0.72213472 2.155626e-03
## 5740    1 0.0029850746 0.72213472 2.155626e-03
## 5741    1 0.0029850746 0.72213472 2.155626e-03
## 5742    7 0.0038525041 0.55961579 2.155922e-03
## 5743    2 0.0023529412 0.91629073 2.155978e-03
## 5744    2 0.0023529412 0.91629073 2.155978e-03
## 5745    2 0.0027548209 0.78275934 2.156362e-03
## 5746    6 0.0051369863 0.41985385 2.156783e-03
## 5747    5 0.0035310734 0.61090908 2.157165e-03
## 5748    2 0.0032467532 0.66497630 2.159014e-03
## 5749    3 0.0018656716 1.15745279 2.159427e-03
## 5750    3 0.0018656716 1.15745279 2.159427e-03
## 5751    3 0.0018656716 1.15745279 2.159427e-03
## 5752    3 0.0018656716 1.15745279 2.159427e-03
## 5753    3 0.0018656716 1.15745279 2.159427e-03
## 5754    3 0.0018656716 1.15745279 2.159427e-03
## 5755    6 0.0072727273 0.29725152 2.161829e-03
## 5756    6 0.0042372881 0.51082562 2.164515e-03
## 5757    1 0.0023640662 0.91629073 2.166172e-03
## 5758    1 0.0023640662 0.91629073 2.166172e-03
## 5759    1 0.0023640662 0.91629073 2.166172e-03
## 5760    1 0.0023640662 0.91629073 2.166172e-03
## 5761    1 0.0023640662 0.91629073 2.166172e-03
## 5762    2 0.0020242915 1.07044141 2.166885e-03
## 5763    2 0.0020242915 1.07044141 2.166885e-03
## 5764    2 0.0020242915 1.07044141 2.166885e-03
## 5765    1 0.0021929825 0.99039870 2.171927e-03
## 5766    1 0.0021929825 0.99039870 2.171927e-03
## 5767    1 0.0021929825 0.99039870 2.171927e-03
## 5768    1 0.0021929825 0.99039870 2.171927e-03
## 5769    1 0.0021929825 0.99039870 2.171927e-03
## 5770    1 0.0021929825 0.99039870 2.171927e-03
## 5771    1 0.0021929825 0.99039870 2.171927e-03
## 5772    1 0.0021929825 0.99039870 2.171927e-03
## 5773    4 0.0020304569 1.07044141 2.173485e-03
## 5774    3 0.0025684932 0.84729786 2.176279e-03
## 5775    4 0.0022014309 0.99039870 2.180294e-03
## 5776    2 0.0022026432 0.99039870 2.181495e-03
## 5777    2 0.0022026432 0.99039870 2.181495e-03
## 5778    3 0.0018867925 1.15745279 2.183873e-03
## 5779    3 0.0018867925 1.15745279 2.183873e-03
## 5780    4 0.0064935065 0.33647224 2.184885e-03
## 5781    2 0.0035778175 0.61090908 2.185721e-03
## 5782    2 0.0035778175 0.61090908 2.185721e-03
## 5783    1 0.0011235955 1.94591015 2.186416e-03
## 5784    1 0.0011235955 1.94591015 2.186416e-03
## 5785    1 0.0011235955 1.94591015 2.186416e-03
## 5786    1 0.0011235955 1.94591015 2.186416e-03
## 5787    1 0.0011235955 1.94591015 2.186416e-03
## 5788    1 0.0011235955 1.94591015 2.186416e-03
## 5789    1 0.0011235955 1.94591015 2.186416e-03
## 5790    1 0.0011235955 1.94591015 2.186416e-03
## 5791    1 0.0011235955 1.94591015 2.186416e-03
## 5792    1 0.0011235955 1.94591015 2.186416e-03
## 5793    1 0.0011235955 1.94591015 2.186416e-03
## 5794    1 0.0011235955 1.94591015 2.186416e-03
## 5795    1 0.0011235955 1.94591015 2.186416e-03
## 5796    1 0.0011235955 1.94591015 2.186416e-03
## 5797    1 0.0011235955 1.94591015 2.186416e-03
## 5798    1 0.0011235955 1.94591015 2.186416e-03
## 5799    1 0.0027932961 0.78275934 2.186479e-03
## 5800    1 0.0027932961 0.78275934 2.186479e-03
## 5801    1 0.0027932961 0.78275934 2.186479e-03
## 5802    1 0.0027932961 0.78275934 2.186479e-03
## 5803    1 0.0027932961 0.78275934 2.186479e-03
## 5804    1 0.0027932961 0.78275934 2.186479e-03
## 5805    2 0.0012437811 1.76358859 2.193518e-03
## 5806    2 0.0012437811 1.76358859 2.193518e-03
## 5807    2 0.0012437811 1.76358859 2.193518e-03
## 5808    2 0.0012437811 1.76358859 2.193518e-03
## 5809    2 0.0012437811 1.76358859 2.193518e-03
## 5810    2 0.0012437811 1.76358859 2.193518e-03
## 5811    2 0.0012437811 1.76358859 2.193518e-03
## 5812    2 0.0012437811 1.76358859 2.193518e-03
## 5813    2 0.0012437811 1.76358859 2.193518e-03
## 5814    2 0.0012437811 1.76358859 2.193518e-03
## 5815    2 0.0012437811 1.76358859 2.193518e-03
## 5816    2 0.0012437811 1.76358859 2.193518e-03
## 5817    2 0.0012437811 1.76358859 2.193518e-03
## 5818    2 0.0058139535 0.37729423 2.193571e-03
## 5819    2 0.0047281324 0.46430561 2.195298e-03
## 5820    1 0.0010121457 2.16905370 2.195398e-03
## 5821    1 0.0010121457 2.16905370 2.195398e-03
## 5822    1 0.0010121457 2.16905370 2.195398e-03
## 5823    1 0.0010121457 2.16905370 2.195398e-03
## 5824    1 0.0010121457 2.16905370 2.195398e-03
## 5825    1 0.0010121457 2.16905370 2.195398e-03
## 5826    1 0.0010121457 2.16905370 2.195398e-03
## 5827    1 0.0010121457 2.16905370 2.195398e-03
## 5828    1 0.0010121457 2.16905370 2.195398e-03
## 5829    1 0.0010121457 2.16905370 2.195398e-03
## 5830    1 0.0010121457 2.16905370 2.195398e-03
## 5831    1 0.0010121457 2.16905370 2.195398e-03
## 5832    1 0.0010121457 2.16905370 2.195398e-03
## 5833    1 0.0010121457 2.16905370 2.195398e-03
## 5834    1 0.0010121457 2.16905370 2.195398e-03
## 5835    1 0.0010121457 2.16905370 2.195398e-03
## 5836    1 0.0010121457 2.16905370 2.195398e-03
## 5837    1 0.0010121457 2.16905370 2.195398e-03
## 5838    1 0.0010121457 2.16905370 2.195398e-03
## 5839    1 0.0010121457 2.16905370 2.195398e-03
## 5840    1 0.0010121457 2.16905370 2.195398e-03
## 5841    1 0.0010121457 2.16905370 2.195398e-03
## 5842    1 0.0010121457 2.16905370 2.195398e-03
## 5843    1 0.0010121457 2.16905370 2.195398e-03
## 5844    1 0.0010121457 2.16905370 2.195398e-03
## 5845    1 0.0010121457 2.16905370 2.195398e-03
## 5846    1 0.0010121457 2.16905370 2.195398e-03
## 5847    1 0.0010121457 2.16905370 2.195398e-03
## 5848    1 0.0010121457 2.16905370 2.195398e-03
## 5849    1 0.0010121457 2.16905370 2.195398e-03
## 5850    1 0.0010121457 2.16905370 2.195398e-03
## 5851    1 0.0010121457 2.16905370 2.195398e-03
## 5852    1 0.0010121457 2.16905370 2.195398e-03
## 5853    1 0.0010121457 2.16905370 2.195398e-03
## 5854    1 0.0010121457 2.16905370 2.195398e-03
## 5855    1 0.0010121457 2.16905370 2.195398e-03
## 5856    1 0.0010121457 2.16905370 2.195398e-03
## 5857    3 0.0033039648 0.66497630 2.197058e-03
## 5858    6 0.0030456853 0.72213472 2.199395e-03
## 5859    2 0.0010152284 2.16905370 2.202085e-03
## 5860    2 0.0010152284 2.16905370 2.202085e-03
## 5861    2 0.0010152284 2.16905370 2.202085e-03
## 5862    2 0.0010152284 2.16905370 2.202085e-03
## 5863    2 0.0010152284 2.16905370 2.202085e-03
## 5864    2 0.0010152284 2.16905370 2.202085e-03
## 5865    2 0.0010152284 2.16905370 2.202085e-03
## 5866    2 0.0010152284 2.16905370 2.202085e-03
## 5867    2 0.0010152284 2.16905370 2.202085e-03
## 5868    2 0.0010152284 2.16905370 2.202085e-03
## 5869    2 0.0010152284 2.16905370 2.202085e-03
## 5870    2 0.0010152284 2.16905370 2.202085e-03
## 5871    2 0.0010152284 2.16905370 2.202085e-03
## 5872    2 0.0010152284 2.16905370 2.202085e-03
## 5873    1 0.0016233766 1.35812348 2.204746e-03
## 5874    1 0.0016233766 1.35812348 2.204746e-03
## 5875    1 0.0016233766 1.35812348 2.204746e-03
## 5876    1 0.0016233766 1.35812348 2.204746e-03
## 5877    1 0.0016233766 1.35812348 2.204746e-03
## 5878    1 0.0016233766 1.35812348 2.204746e-03
## 5879    1 0.0016233766 1.35812348 2.204746e-03
## 5880    1 0.0016233766 1.35812348 2.204746e-03
## 5881    1 0.0016233766 1.35812348 2.204746e-03
## 5882    1 0.0016233766 1.35812348 2.204746e-03
## 5883    1 0.0016233766 1.35812348 2.204746e-03
## 5884    1 0.0016233766 1.35812348 2.204746e-03
## 5885    1 0.0016233766 1.35812348 2.204746e-03
## 5886    1 0.0006218905 3.55534806 2.211037e-03
## 5887    1 0.0006218905 3.55534806 2.211037e-03
## 5888    1 0.0006218905 3.55534806 2.211037e-03
## 5889    1 0.0006218905 3.55534806 2.211037e-03
## 5890    1 0.0006218905 3.55534806 2.211037e-03
## 5891    1 0.0006218905 3.55534806 2.211037e-03
## 5892    1 0.0006218905 3.55534806 2.211037e-03
## 5893    1 0.0006218905 3.55534806 2.211037e-03
## 5894    1 0.0006218905 3.55534806 2.211037e-03
## 5895    1 0.0006218905 3.55534806 2.211037e-03
## 5896    1 0.0006218905 3.55534806 2.211037e-03
## 5897    1 0.0006218905 3.55534806 2.211037e-03
## 5898    1 0.0006218905 3.55534806 2.211037e-03
## 5899    1 0.0006218905 3.55534806 2.211037e-03
## 5900    1 0.0006218905 3.55534806 2.211037e-03
## 5901    1 0.0006218905 3.55534806 2.211037e-03
## 5902    1 0.0006218905 3.55534806 2.211037e-03
## 5903    1 0.0006218905 3.55534806 2.211037e-03
## 5904    1 0.0006218905 3.55534806 2.211037e-03
## 5905    1 0.0006218905 3.55534806 2.211037e-03
## 5906    1 0.0006218905 3.55534806 2.211037e-03
## 5907    1 0.0006218905 3.55534806 2.211037e-03
## 5908    1 0.0006218905 3.55534806 2.211037e-03
## 5909    1 0.0006218905 3.55534806 2.211037e-03
## 5910    1 0.0006218905 3.55534806 2.211037e-03
## 5911    1 0.0006218905 3.55534806 2.211037e-03
## 5912    1 0.0006218905 3.55534806 2.211037e-03
## 5913    1 0.0006218905 3.55534806 2.211037e-03
## 5914    1 0.0006218905 3.55534806 2.211037e-03
## 5915    1 0.0006218905 3.55534806 2.211037e-03
## 5916    1 0.0006218905 3.55534806 2.211037e-03
## 5917    1 0.0006218905 3.55534806 2.211037e-03
## 5918    1 0.0006218905 3.55534806 2.211037e-03
## 5919    1 0.0006218905 3.55534806 2.211037e-03
## 5920    1 0.0006218905 3.55534806 2.211037e-03
## 5921    1 0.0006218905 3.55534806 2.211037e-03
## 5922    1 0.0006218905 3.55534806 2.211037e-03
## 5923    1 0.0006218905 3.55534806 2.211037e-03
## 5924    1 0.0006218905 3.55534806 2.211037e-03
## 5925    1 0.0006218905 3.55534806 2.211037e-03
## 5926    1 0.0006218905 3.55534806 2.211037e-03
## 5927    1 0.0006218905 3.55534806 2.211037e-03
## 5928    1 0.0006218905 3.55534806 2.211037e-03
## 5929    1 0.0006218905 3.55534806 2.211037e-03
## 5930    1 0.0006218905 3.55534806 2.211037e-03
## 5931    1 0.0006218905 3.55534806 2.211037e-03
## 5932    1 0.0006218905 3.55534806 2.211037e-03
## 5933    1 0.0006218905 3.55534806 2.211037e-03
## 5934    1 0.0006218905 3.55534806 2.211037e-03
## 5935    1 0.0006218905 3.55534806 2.211037e-03
## 5936    1 0.0006218905 3.55534806 2.211037e-03
## 5937    1 0.0006218905 3.55534806 2.211037e-03
## 5938    1 0.0006218905 3.55534806 2.211037e-03
## 5939    1 0.0006218905 3.55534806 2.211037e-03
## 5940    1 0.0006218905 3.55534806 2.211037e-03
## 5941    1 0.0006218905 3.55534806 2.211037e-03
## 5942    1 0.0006218905 3.55534806 2.211037e-03
## 5943    1 0.0006218905 3.55534806 2.211037e-03
## 5944    1 0.0006218905 3.55534806 2.211037e-03
## 5945    1 0.0006218905 3.55534806 2.211037e-03
## 5946    1 0.0006218905 3.55534806 2.211037e-03
## 5947    1 0.0006218905 3.55534806 2.211037e-03
## 5948    1 0.0006218905 3.55534806 2.211037e-03
## 5949    1 0.0006218905 3.55534806 2.211037e-03
## 5950    1 0.0006218905 3.55534806 2.211037e-03
## 5951    1 0.0006218905 3.55534806 2.211037e-03
## 5952    1 0.0006218905 3.55534806 2.211037e-03
## 5953    1 0.0006218905 3.55534806 2.211037e-03
## 5954    1 0.0006218905 3.55534806 2.211037e-03
## 5955    1 0.0006218905 3.55534806 2.211037e-03
## 5956    1 0.0006218905 3.55534806 2.211037e-03
## 5957    1 0.0006218905 3.55534806 2.211037e-03
## 5958    1 0.0006218905 3.55534806 2.211037e-03
## 5959    1 0.0006218905 3.55534806 2.211037e-03
## 5960    1 0.0006218905 3.55534806 2.211037e-03
## 5961    1 0.0006218905 3.55534806 2.211037e-03
## 5962    1 0.0006218905 3.55534806 2.211037e-03
## 5963    1 0.0006218905 3.55534806 2.211037e-03
## 5964    1 0.0006218905 3.55534806 2.211037e-03
## 5965    1 0.0006218905 3.55534806 2.211037e-03
## 5966    1 0.0006218905 3.55534806 2.211037e-03
## 5967    1 0.0006218905 3.55534806 2.211037e-03
## 5968    1 0.0006218905 3.55534806 2.211037e-03
## 5969    1 0.0006218905 3.55534806 2.211037e-03
## 5970    1 0.0006218905 3.55534806 2.211037e-03
## 5971    2 0.0020682523 1.07044141 2.213943e-03
## 5972    2 0.0052770449 0.41985385 2.215588e-03
## 5973    1 0.0011389522 1.94591015 2.216299e-03
## 5974    1 0.0011389522 1.94591015 2.216299e-03
## 5975    1 0.0011389522 1.94591015 2.216299e-03
## 5976    1 0.0011389522 1.94591015 2.216299e-03
## 5977    1 0.0011389522 1.94591015 2.216299e-03
## 5978    1 0.0011389522 1.94591015 2.216299e-03
## 5979    1 0.0011389522 1.94591015 2.216299e-03
## 5980    1 0.0011389522 1.94591015 2.216299e-03
## 5981    1 0.0011389522 1.94591015 2.216299e-03
## 5982    1 0.0011389522 1.94591015 2.216299e-03
## 5983    1 0.0011389522 1.94591015 2.216299e-03
## 5984    1 0.0011389522 1.94591015 2.216299e-03
## 5985    1 0.0011389522 1.94591015 2.216299e-03
## 5986    1 0.0011389522 1.94591015 2.216299e-03
## 5987    1 0.0011389522 1.94591015 2.216299e-03
## 5988    1 0.0013774105 1.60943791 2.216857e-03
## 5989    1 0.0013774105 1.60943791 2.216857e-03
## 5990    1 0.0013774105 1.60943791 2.216857e-03
## 5991    1 0.0013774105 1.60943791 2.216857e-03
## 5992    1 0.0013774105 1.60943791 2.216857e-03
## 5993    1 0.0013774105 1.60943791 2.216857e-03
## 5994    1 0.0013774105 1.60943791 2.216857e-03
## 5995    1 0.0013774105 1.60943791 2.216857e-03
## 5996    1 0.0013774105 1.60943791 2.216857e-03
## 5997    1 0.0013774105 1.60943791 2.216857e-03
## 5998    1 0.0013774105 1.60943791 2.216857e-03
## 5999    2 0.0012578616 1.76358859 2.218350e-03
## 6000    2 0.0012578616 1.76358859 2.218350e-03
## 6001    2 0.0012578616 1.76358859 2.218350e-03
## 6002    2 0.0012578616 1.76358859 2.218350e-03
## 6003    2 0.0024242424 0.91629073 2.221311e-03
## 6004    5 0.0118203310 0.18805223 2.222840e-03
## 6005    2 0.0022471910 0.99039870 2.225615e-03
## 6006    2 0.0022471910 0.99039870 2.225615e-03
## 6007    1 0.0026385224 0.84729786 2.235614e-03
## 6008    1 0.0026385224 0.84729786 2.235614e-03
## 6009    1 0.0006289308 3.55534806 2.236068e-03
## 6010    1 0.0006289308 3.55534806 2.236068e-03
## 6011    1 0.0006289308 3.55534806 2.236068e-03
## 6012    1 0.0006289308 3.55534806 2.236068e-03
## 6013    1 0.0006289308 3.55534806 2.236068e-03
## 6014    1 0.0006289308 3.55534806 2.236068e-03
## 6015    1 0.0006289308 3.55534806 2.236068e-03
## 6016    1 0.0006289308 3.55534806 2.236068e-03
## 6017    1 0.0006289308 3.55534806 2.236068e-03
## 6018    1 0.0006289308 3.55534806 2.236068e-03
## 6019    1 0.0006289308 3.55534806 2.236068e-03
## 6020    1 0.0006289308 3.55534806 2.236068e-03
## 6021    1 0.0006289308 3.55534806 2.236068e-03
## 6022    1 0.0006289308 3.55534806 2.236068e-03
## 6023    1 0.0006289308 3.55534806 2.236068e-03
## 6024    1 0.0006289308 3.55534806 2.236068e-03
## 6025    1 0.0006289308 3.55534806 2.236068e-03
## 6026    1 0.0006289308 3.55534806 2.236068e-03
## 6027    1 0.0006289308 3.55534806 2.236068e-03
## 6028    1 0.0006289308 3.55534806 2.236068e-03
## 6029    1 0.0006289308 3.55534806 2.236068e-03
## 6030    1 0.0006289308 3.55534806 2.236068e-03
## 6031    1 0.0006289308 3.55534806 2.236068e-03
## 6032    1 0.0006289308 3.55534806 2.236068e-03
## 6033    1 0.0006289308 3.55534806 2.236068e-03
## 6034    1 0.0006289308 3.55534806 2.236068e-03
## 6035    1 0.0006289308 3.55534806 2.236068e-03
## 6036    1 0.0006289308 3.55534806 2.236068e-03
## 6037    1 0.0006289308 3.55534806 2.236068e-03
## 6038    1 0.0006289308 3.55534806 2.236068e-03
## 6039    1 0.0006289308 3.55534806 2.236068e-03
## 6040    1 0.0006289308 3.55534806 2.236068e-03
## 6041    1 0.0006289308 3.55534806 2.236068e-03
## 6042    1 0.0006289308 3.55534806 2.236068e-03
## 6043    1 0.0006289308 3.55534806 2.236068e-03
## 6044    1 0.0006289308 3.55534806 2.236068e-03
## 6045    1 0.0006289308 3.55534806 2.236068e-03
## 6046    1 0.0006289308 3.55534806 2.236068e-03
## 6047    1 0.0006289308 3.55534806 2.236068e-03
## 6048    1 0.0006289308 3.55534806 2.236068e-03
## 6049    1 0.0006289308 3.55534806 2.236068e-03
## 6050    1 0.0006289308 3.55534806 2.236068e-03
## 6051    1 0.0006289308 3.55534806 2.236068e-03
## 6052    1 0.0006289308 3.55534806 2.236068e-03
## 6053    1 0.0006289308 3.55534806 2.236068e-03
## 6054    1 0.0006289308 3.55534806 2.236068e-03
## 6055    1 0.0006289308 3.55534806 2.236068e-03
## 6056    1 0.0006289308 3.55534806 2.236068e-03
## 6057    1 0.0006289308 3.55534806 2.236068e-03
## 6058    1 0.0006289308 3.55534806 2.236068e-03
## 6059    1 0.0006289308 3.55534806 2.236068e-03
## 6060    1 0.0006289308 3.55534806 2.236068e-03
## 6061    1 0.0006289308 3.55534806 2.236068e-03
## 6062    1 0.0006289308 3.55534806 2.236068e-03
## 6063    1 0.0006289308 3.55534806 2.236068e-03
## 6064    1 0.0006289308 3.55534806 2.236068e-03
## 6065    1 0.0006289308 3.55534806 2.236068e-03
## 6066    1 0.0006289308 3.55534806 2.236068e-03
## 6067    1 0.0006289308 3.55534806 2.236068e-03
## 6068    1 0.0006289308 3.55534806 2.236068e-03
## 6069    1 0.0006289308 3.55534806 2.236068e-03
## 6070    1 0.0006289308 3.55534806 2.236068e-03
## 6071    1 0.0006289308 3.55534806 2.236068e-03
## 6072    1 0.0006289308 3.55534806 2.236068e-03
## 6073    1 0.0006289308 3.55534806 2.236068e-03
## 6074    1 0.0006289308 3.55534806 2.236068e-03
## 6075    1 0.0006289308 3.55534806 2.236068e-03
## 6076    1 0.0006289308 3.55534806 2.236068e-03
## 6077    1 0.0006289308 3.55534806 2.236068e-03
## 6078    1 0.0006289308 3.55534806 2.236068e-03
## 6079    1 0.0006289308 3.55534806 2.236068e-03
## 6080    1 0.0006289308 3.55534806 2.236068e-03
## 6081    1 0.0006289308 3.55534806 2.236068e-03
## 6082    1 0.0006289308 3.55534806 2.236068e-03
## 6083    1 0.0006289308 3.55534806 2.236068e-03
## 6084    1 0.0006289308 3.55534806 2.236068e-03
## 6085    1 0.0006289308 3.55534806 2.236068e-03
## 6086    1 0.0006289308 3.55534806 2.236068e-03
## 6087    1 0.0006289308 3.55534806 2.236068e-03
## 6088    1 0.0006289308 3.55534806 2.236068e-03
## 6089    1 0.0006289308 3.55534806 2.236068e-03
## 6090    1 0.0006289308 3.55534806 2.236068e-03
## 6091    1 0.0006289308 3.55534806 2.236068e-03
## 6092    1 0.0006289308 3.55534806 2.236068e-03
## 6093    1 0.0006289308 3.55534806 2.236068e-03
## 6094    1 0.0006289308 3.55534806 2.236068e-03
## 6095    1 0.0006289308 3.55534806 2.236068e-03
## 6096    1 0.0006289308 3.55534806 2.236068e-03
## 6097    1 0.0006289308 3.55534806 2.236068e-03
## 6098    1 0.0006289308 3.55534806 2.236068e-03
## 6099    1 0.0006289308 3.55534806 2.236068e-03
## 6100    1 0.0006289308 3.55534806 2.236068e-03
## 6101    1 0.0006289308 3.55534806 2.236068e-03
## 6102    1 0.0006289308 3.55534806 2.236068e-03
## 6103    1 0.0006289308 3.55534806 2.236068e-03
## 6104    1 0.0006289308 3.55534806 2.236068e-03
## 6105    1 0.0006289308 3.55534806 2.236068e-03
## 6106    1 0.0006289308 3.55534806 2.236068e-03
## 6107    1 0.0006289308 3.55534806 2.236068e-03
## 6108    1 0.0006289308 3.55534806 2.236068e-03
## 6109    1 0.0006289308 3.55534806 2.236068e-03
## 6110    1 0.0006289308 3.55534806 2.236068e-03
## 6111    1 0.0006289308 3.55534806 2.236068e-03
## 6112    1 0.0006289308 3.55534806 2.236068e-03
## 6113    1 0.0006289308 3.55534806 2.236068e-03
## 6114    1 0.0006289308 3.55534806 2.236068e-03
## 6115    1 0.0006289308 3.55534806 2.236068e-03
## 6116    1 0.0006289308 3.55534806 2.236068e-03
## 6117    1 0.0006289308 3.55534806 2.236068e-03
## 6118    1 0.0006289308 3.55534806 2.236068e-03
## 6119    1 0.0006289308 3.55534806 2.236068e-03
## 6120    1 0.0006289308 3.55534806 2.236068e-03
## 6121    1 0.0006289308 3.55534806 2.236068e-03
## 6122    1 0.0006289308 3.55534806 2.236068e-03
## 6123    1 0.0006289308 3.55534806 2.236068e-03
## 6124    1 0.0006289308 3.55534806 2.236068e-03
## 6125    1 0.0006289308 3.55534806 2.236068e-03
## 6126    1 0.0006289308 3.55534806 2.236068e-03
## 6127    1 0.0006289308 3.55534806 2.236068e-03
## 6128    1 0.0006289308 3.55534806 2.236068e-03
## 6129    1 0.0006289308 3.55534806 2.236068e-03
## 6130    1 0.0006289308 3.55534806 2.236068e-03
## 6131    1 0.0006289308 3.55534806 2.236068e-03
## 6132    1 0.0006289308 3.55534806 2.236068e-03
## 6133    1 0.0006289308 3.55534806 2.236068e-03
## 6134    1 0.0006289308 3.55534806 2.236068e-03
## 6135    1 0.0006289308 3.55534806 2.236068e-03
## 6136    1 0.0006289308 3.55534806 2.236068e-03
## 6137    1 0.0006289308 3.55534806 2.236068e-03
## 6138    1 0.0006289308 3.55534806 2.236068e-03
## 6139    1 0.0006289308 3.55534806 2.236068e-03
## 6140    3 0.0040000000 0.55961579 2.238463e-03
## 6141   17 0.0086294416 0.25951120 2.239437e-03
## 6142    3 0.0031023785 0.72213472 2.240335e-03
## 6143    3 0.0031023785 0.72213472 2.240335e-03
## 6144    3 0.0031023785 0.72213472 2.240335e-03
## 6145    3 0.0031023785 0.72213472 2.240335e-03
## 6146    3 0.0031023785 0.72213472 2.240335e-03
## 6147    2 0.0043859649 0.51082562 2.240463e-03
## 6148    1 0.0017889088 1.25276297 2.241079e-03
## 6149    1 0.0017889088 1.25276297 2.241079e-03
## 6150    1 0.0017889088 1.25276297 2.241079e-03
## 6151    1 0.0017889088 1.25276297 2.241079e-03
## 6152    1 0.0017889088 1.25276297 2.241079e-03
## 6153    1 0.0017889088 1.25276297 2.241079e-03
## 6154    3 0.0033707865 0.66497630 2.241493e-03
## 6155    3 0.0016510732 1.35812348 2.242361e-03
## 6156    3 0.0016510732 1.35812348 2.242361e-03
## 6157    3 0.0016510732 1.35812348 2.242361e-03
## 6158    1 0.0010341262 2.16905370 2.243075e-03
## 6159    1 0.0010341262 2.16905370 2.243075e-03
## 6160    1 0.0010341262 2.16905370 2.243075e-03
## 6161    1 0.0010341262 2.16905370 2.243075e-03
## 6162    1 0.0010341262 2.16905370 2.243075e-03
## 6163    1 0.0010341262 2.16905370 2.243075e-03
## 6164    1 0.0010341262 2.16905370 2.243075e-03
## 6165    1 0.0010341262 2.16905370 2.243075e-03
## 6166    1 0.0010341262 2.16905370 2.243075e-03
## 6167    1 0.0010341262 2.16905370 2.243075e-03
## 6168    1 0.0010341262 2.16905370 2.243075e-03
## 6169    1 0.0010341262 2.16905370 2.243075e-03
## 6170    1 0.0010341262 2.16905370 2.243075e-03
## 6171    1 0.0010341262 2.16905370 2.243075e-03
## 6172    1 0.0010341262 2.16905370 2.243075e-03
## 6173    1 0.0010341262 2.16905370 2.243075e-03
## 6174    1 0.0010341262 2.16905370 2.243075e-03
## 6175    1 0.0010341262 2.16905370 2.243075e-03
## 6176    1 0.0010341262 2.16905370 2.243075e-03
## 6177    1 0.0010341262 2.16905370 2.243075e-03
## 6178    1 0.0010341262 2.16905370 2.243075e-03
## 6179    1 0.0010341262 2.16905370 2.243075e-03
## 6180    1 0.0010341262 2.16905370 2.243075e-03
## 6181    3 0.0015228426 1.47590652 2.247573e-03
## 6182    8 0.0044028619 0.51082562 2.249095e-03
## 6183    2 0.0026560425 0.84729786 2.250459e-03
## 6184    2 0.0026560425 0.84729786 2.250459e-03
## 6185    1 0.0024570025 0.91629073 2.251329e-03
## 6186    1 0.0024570025 0.91629073 2.251329e-03
## 6187    1 0.0024570025 0.91629073 2.251329e-03
## 6188    1 0.0024570025 0.91629073 2.251329e-03
## 6189    1 0.0024570025 0.91629073 2.251329e-03
## 6190    1 0.0024570025 0.91629073 2.251329e-03
## 6191    3 0.0053667263 0.41985385 2.253241e-03
## 6192    2 0.0022779043 0.99039870 2.256033e-03
## 6193    2 0.0022779043 0.99039870 2.256033e-03
## 6194    2 0.0022779043 0.99039870 2.256033e-03
## 6195    2 0.0026666667 0.84729786 2.259461e-03
## 6196    2 0.0026666667 0.84729786 2.259461e-03
## 6197    7 0.0059931507 0.37729423 2.261181e-03
## 6198    3 0.0048701299 0.46430561 2.261229e-03
## 6199    2 0.0037105751 0.61090908 2.266824e-03
## 6200    2 0.0037105751 0.61090908 2.266824e-03
## 6201    3 0.0021186441 1.07044141 2.267884e-03
## 6202    3 0.0021186441 1.07044141 2.267884e-03
## 6203    3 0.0019595036 1.15745279 2.268033e-03
## 6204    2 0.0014124294 1.60943791 2.273217e-03
## 6205    2 0.0014124294 1.60943791 2.273217e-03
## 6206    2 0.0014124294 1.60943791 2.273217e-03
## 6207    2 0.0014124294 1.60943791 2.273217e-03
## 6208    2 0.0014124294 1.60943791 2.273217e-03
## 6209    2 0.0014124294 1.60943791 2.273217e-03
## 6210    2 0.0014124294 1.60943791 2.273217e-03
## 6211    2 0.0014124294 1.60943791 2.273217e-03
## 6212    1 0.0029069767 0.78275934 2.275463e-03
## 6213    1 0.0029069767 0.78275934 2.275463e-03
## 6214    1 0.0029069767 0.78275934 2.275463e-03
## 6215    4 0.0034246575 0.66497630 2.277316e-03
## 6216    2 0.0034246575 0.66497630 2.277316e-03
## 6217    1 0.0034246575 0.66497630 2.277316e-03
## 6218    2 0.0021276596 1.07044141 2.277535e-03
## 6219    2 0.0021276596 1.07044141 2.277535e-03
## 6220    2 0.0021276596 1.07044141 2.277535e-03
## 6221    1 0.0026954178 0.84729786 2.283822e-03
## 6222    1 0.0026954178 0.84729786 2.283822e-03
## 6223    1 0.0026954178 0.84729786 2.283822e-03
## 6224    1 0.0026954178 0.84729786 2.283822e-03
## 6225    1 0.0026954178 0.84729786 2.283822e-03
## 6226    1 0.0026954178 0.84729786 2.283822e-03
## 6227    1 0.0024937656 0.91629073 2.285014e-03
## 6228    1 0.0024937656 0.91629073 2.285014e-03
## 6229    1 0.0024937656 0.91629073 2.285014e-03
## 6230    1 0.0024937656 0.91629073 2.285014e-03
## 6231    1 0.0011764706 1.94591015 2.289306e-03
## 6232    1 0.0011764706 1.94591015 2.289306e-03
## 6233    1 0.0011764706 1.94591015 2.289306e-03
## 6234    1 0.0011764706 1.94591015 2.289306e-03
## 6235    1 0.0011764706 1.94591015 2.289306e-03
## 6236    1 0.0011764706 1.94591015 2.289306e-03
## 6237    4 0.0044943820 0.51082562 2.295846e-03
## 6238    6 0.0068337130 0.33647224 2.299355e-03
## 6239    1 0.0060975610 0.37729423 2.300575e-03
## 6240    1 0.0060975610 0.37729423 2.300575e-03
## 6241    1 0.0034602076 0.66497630 2.300956e-03
## 6242    2 0.0013063357 1.76358859 2.303839e-03
## 6243    2 0.0013063357 1.76358859 2.303839e-03
## 6244    2 0.0013063357 1.76358859 2.303839e-03
## 6245    2 0.0013063357 1.76358859 2.303839e-03
## 6246    2 0.0013063357 1.76358859 2.303839e-03
## 6247    2 0.0013063357 1.76358859 2.303839e-03
## 6248    2 0.0068493151 0.33647224 2.304604e-03
## 6249    2 0.0068493151 0.33647224 2.304604e-03
## 6250    4 0.0025157233 0.91629073 2.305134e-03
## 6251    1 0.0010638298 2.16905370 2.307504e-03
## 6252    1 0.0010638298 2.16905370 2.307504e-03
## 6253    1 0.0010638298 2.16905370 2.307504e-03
## 6254    1 0.0010638298 2.16905370 2.307504e-03
## 6255    1 0.0010638298 2.16905370 2.307504e-03
## 6256    1 0.0010638298 2.16905370 2.307504e-03
## 6257    1 0.0010638298 2.16905370 2.307504e-03
## 6258    1 0.0010638298 2.16905370 2.307504e-03
## 6259    1 0.0010638298 2.16905370 2.307504e-03
## 6260    1 0.0010638298 2.16905370 2.307504e-03
## 6261    1 0.0010638298 2.16905370 2.307504e-03
## 6262    1 0.0010638298 2.16905370 2.307504e-03
## 6263    1 0.0010638298 2.16905370 2.307504e-03
## 6264    1 0.0010638298 2.16905370 2.307504e-03
## 6265    1 0.0010638298 2.16905370 2.307504e-03
## 6266    1 0.0010638298 2.16905370 2.307504e-03
## 6267    1 0.0010638298 2.16905370 2.307504e-03
## 6268    1 0.0010638298 2.16905370 2.307504e-03
## 6269    1 0.0010638298 2.16905370 2.307504e-03
## 6270    3 0.0041322314 0.55961579 2.312462e-03
## 6271    5 0.0089445438 0.25951120 2.321209e-03
## 6272    1 0.0045454545 0.51082562 2.321935e-03
## 6273    1 0.0006531679 3.55534806 2.322239e-03
## 6274    1 0.0006531679 3.55534806 2.322239e-03
## 6275    1 0.0006531679 3.55534806 2.322239e-03
## 6276    1 0.0006531679 3.55534806 2.322239e-03
## 6277    1 0.0006531679 3.55534806 2.322239e-03
## 6278    1 0.0006531679 3.55534806 2.322239e-03
## 6279    1 0.0006531679 3.55534806 2.322239e-03
## 6280    1 0.0006531679 3.55534806 2.322239e-03
## 6281    1 0.0006531679 3.55534806 2.322239e-03
## 6282    1 0.0006531679 3.55534806 2.322239e-03
## 6283    1 0.0006531679 3.55534806 2.322239e-03
## 6284    1 0.0006531679 3.55534806 2.322239e-03
## 6285    1 0.0006531679 3.55534806 2.322239e-03
## 6286    1 0.0006531679 3.55534806 2.322239e-03
## 6287    1 0.0006531679 3.55534806 2.322239e-03
## 6288    1 0.0006531679 3.55534806 2.322239e-03
## 6289    1 0.0006531679 3.55534806 2.322239e-03
## 6290    1 0.0006531679 3.55534806 2.322239e-03
## 6291    1 0.0006531679 3.55534806 2.322239e-03
## 6292    1 0.0006531679 3.55534806 2.322239e-03
## 6293    1 0.0006531679 3.55534806 2.322239e-03
## 6294    1 0.0006531679 3.55534806 2.322239e-03
## 6295    1 0.0006531679 3.55534806 2.322239e-03
## 6296    1 0.0006531679 3.55534806 2.322239e-03
## 6297    1 0.0006531679 3.55534806 2.322239e-03
## 6298    1 0.0006531679 3.55534806 2.322239e-03
## 6299    1 0.0006531679 3.55534806 2.322239e-03
## 6300    1 0.0006531679 3.55534806 2.322239e-03
## 6301    1 0.0006531679 3.55534806 2.322239e-03
## 6302    1 0.0006531679 3.55534806 2.322239e-03
## 6303    1 0.0006531679 3.55534806 2.322239e-03
## 6304    1 0.0006531679 3.55534806 2.322239e-03
## 6305    1 0.0006531679 3.55534806 2.322239e-03
## 6306    1 0.0006531679 3.55534806 2.322239e-03
## 6307    1 0.0006531679 3.55534806 2.322239e-03
## 6308    1 0.0006531679 3.55534806 2.322239e-03
## 6309    1 0.0006531679 3.55534806 2.322239e-03
## 6310    1 0.0006531679 3.55534806 2.322239e-03
## 6311    1 0.0006531679 3.55534806 2.322239e-03
## 6312    1 0.0006531679 3.55534806 2.322239e-03
## 6313    1 0.0006531679 3.55534806 2.322239e-03
## 6314    1 0.0006531679 3.55534806 2.322239e-03
## 6315    1 0.0006531679 3.55534806 2.322239e-03
## 6316    1 0.0006531679 3.55534806 2.322239e-03
## 6317    1 0.0006531679 3.55534806 2.322239e-03
## 6318    1 0.0006531679 3.55534806 2.322239e-03
## 6319    1 0.0006531679 3.55534806 2.322239e-03
## 6320    1 0.0006531679 3.55534806 2.322239e-03
## 6321    1 0.0006531679 3.55534806 2.322239e-03
## 6322    1 0.0006531679 3.55534806 2.322239e-03
## 6323    1 0.0006531679 3.55534806 2.322239e-03
## 6324    1 0.0006531679 3.55534806 2.322239e-03
## 6325    1 0.0006531679 3.55534806 2.322239e-03
## 6326    1 0.0006531679 3.55534806 2.322239e-03
## 6327    1 0.0006531679 3.55534806 2.322239e-03
## 6328    1 0.0006531679 3.55534806 2.322239e-03
## 6329    1 0.0006531679 3.55534806 2.322239e-03
## 6330    1 0.0006531679 3.55534806 2.322239e-03
## 6331    1 0.0006531679 3.55534806 2.322239e-03
## 6332    1 0.0006531679 3.55534806 2.322239e-03
## 6333    1 0.0006531679 3.55534806 2.322239e-03
## 6334    1 0.0006531679 3.55534806 2.322239e-03
## 6335    1 0.0006531679 3.55534806 2.322239e-03
## 6336    1 0.0006531679 3.55534806 2.322239e-03
## 6337    1 0.0006531679 3.55534806 2.322239e-03
## 6338    1 0.0006531679 3.55534806 2.322239e-03
## 6339    1 0.0006531679 3.55534806 2.322239e-03
## 6340    1 0.0006531679 3.55534806 2.322239e-03
## 6341    1 0.0006531679 3.55534806 2.322239e-03
## 6342    1 0.0006531679 3.55534806 2.322239e-03
## 6343    1 0.0006531679 3.55534806 2.322239e-03
## 6344    1 0.0006531679 3.55534806 2.322239e-03
## 6345    1 0.0006531679 3.55534806 2.322239e-03
## 6346    1 0.0006531679 3.55534806 2.322239e-03
## 6347    1 0.0006531679 3.55534806 2.322239e-03
## 6348    1 0.0006531679 3.55534806 2.322239e-03
## 6349    1 0.0006531679 3.55534806 2.322239e-03
## 6350    1 0.0006531679 3.55534806 2.322239e-03
## 6351    1 0.0006531679 3.55534806 2.322239e-03
## 6352    1 0.0006531679 3.55534806 2.322239e-03
## 6353    1 0.0006531679 3.55534806 2.322239e-03
## 6354    1 0.0006531679 3.55534806 2.322239e-03
## 6355    1 0.0006531679 3.55534806 2.322239e-03
## 6356    1 0.0006531679 3.55534806 2.322239e-03
## 6357    1 0.0006531679 3.55534806 2.322239e-03
## 6358    1 0.0006531679 3.55534806 2.322239e-03
## 6359    1 0.0006531679 3.55534806 2.322239e-03
## 6360    1 0.0006531679 3.55534806 2.322239e-03
## 6361    1 0.0006531679 3.55534806 2.322239e-03
## 6362    1 0.0006531679 3.55534806 2.322239e-03
## 6363    1 0.0006531679 3.55534806 2.322239e-03
## 6364    1 0.0006531679 3.55534806 2.322239e-03
## 6365    1 0.0006531679 3.55534806 2.322239e-03
## 6366    1 0.0006531679 3.55534806 2.322239e-03
## 6367    1 0.0006531679 3.55534806 2.322239e-03
## 6368    1 0.0006531679 3.55534806 2.322239e-03
## 6369    1 0.0006531679 3.55534806 2.322239e-03
## 6370    1 0.0006531679 3.55534806 2.322239e-03
## 6371    1 0.0006531679 3.55534806 2.322239e-03
## 6372    1 0.0006531679 3.55534806 2.322239e-03
## 6373    1 0.0006531679 3.55534806 2.322239e-03
## 6374    1 0.0006531679 3.55534806 2.322239e-03
## 6375    1 0.0006531679 3.55534806 2.322239e-03
## 6376    1 0.0006531679 3.55534806 2.322239e-03
## 6377    1 0.0006531679 3.55534806 2.322239e-03
## 6378    1 0.0006531679 3.55534806 2.322239e-03
## 6379    1 0.0006531679 3.55534806 2.322239e-03
## 6380    1 0.0006531679 3.55534806 2.322239e-03
## 6381    1 0.0006531679 3.55534806 2.322239e-03
## 6382    1 0.0006531679 3.55534806 2.322239e-03
## 6383    1 0.0006531679 3.55534806 2.322239e-03
## 6384    1 0.0006531679 3.55534806 2.322239e-03
## 6385    1 0.0006531679 3.55534806 2.322239e-03
## 6386    1 0.0006531679 3.55534806 2.322239e-03
## 6387    1 0.0006531679 3.55534806 2.322239e-03
## 6388    1 0.0006531679 3.55534806 2.322239e-03
## 6389    1 0.0006531679 3.55534806 2.322239e-03
## 6390    1 0.0006531679 3.55534806 2.322239e-03
## 6391    1 0.0006531679 3.55534806 2.322239e-03
## 6392    1 0.0006531679 3.55534806 2.322239e-03
## 6393    1 0.0006531679 3.55534806 2.322239e-03
## 6394    1 0.0006531679 3.55534806 2.322239e-03
## 6395    1 0.0006531679 3.55534806 2.322239e-03
## 6396    1 0.0006531679 3.55534806 2.322239e-03
## 6397    1 0.0006531679 3.55534806 2.322239e-03
## 6398    1 0.0006531679 3.55534806 2.322239e-03
## 6399    1 0.0006531679 3.55534806 2.322239e-03
## 6400    1 0.0006531679 3.55534806 2.322239e-03
## 6401    1 0.0006531679 3.55534806 2.322239e-03
## 6402    1 0.0006531679 3.55534806 2.322239e-03
## 6403    1 0.0006531679 3.55534806 2.322239e-03
## 6404    1 0.0006531679 3.55534806 2.322239e-03
## 6405    1 0.0006531679 3.55534806 2.322239e-03
## 6406    1 0.0006531679 3.55534806 2.322239e-03
## 6407    1 0.0006531679 3.55534806 2.322239e-03
## 6408    1 0.0006531679 3.55534806 2.322239e-03
## 6409    1 0.0006531679 3.55534806 2.322239e-03
## 6410    1 0.0006531679 3.55534806 2.322239e-03
## 6411    1 0.0006531679 3.55534806 2.322239e-03
## 6412    1 0.0006531679 3.55534806 2.322239e-03
## 6413    1 0.0006531679 3.55534806 2.322239e-03
## 6414    1 0.0006531679 3.55534806 2.322239e-03
## 6415    1 0.0006531679 3.55534806 2.322239e-03
## 6416    1 0.0006531679 3.55534806 2.322239e-03
## 6417    1 0.0018552876 1.25276297 2.324236e-03
## 6418    1 0.0018552876 1.25276297 2.324236e-03
## 6419    1 0.0018552876 1.25276297 2.324236e-03
## 6420    1 0.0018552876 1.25276297 2.324236e-03
## 6421    1 0.0018552876 1.25276297 2.324236e-03
## 6422    1 0.0018552876 1.25276297 2.324236e-03
## 6423    2 0.0017123288 1.35812348 2.325554e-03
## 6424    2 0.0017123288 1.35812348 2.325554e-03
## 6425    2 0.0017123288 1.35812348 2.325554e-03
## 6426    1 0.0017123288 1.35812348 2.325554e-03
## 6427    1 0.0017123288 1.35812348 2.325554e-03
## 6428    1 0.0017123288 1.35812348 2.325554e-03
## 6429    1 0.0017123288 1.35812348 2.325554e-03
## 6430    1 0.0017123288 1.35812348 2.325554e-03
## 6431    1 0.0017123288 1.35812348 2.325554e-03
## 6432    1 0.0017123288 1.35812348 2.325554e-03
## 6433    1 0.0017123288 1.35812348 2.325554e-03
## 6434    1 0.0017123288 1.35812348 2.325554e-03
## 6435    5 0.0025380711 0.91629073 2.325611e-03
## 6436    2 0.0069204152 0.33647224 2.328528e-03
## 6437    2 0.0023529412 0.99039870 2.330350e-03
## 6438    2 0.0023529412 0.99039870 2.330350e-03
## 6439    5 0.0027517887 0.84729786 2.331585e-03
## 6440    1 0.0029850746 0.78275934 2.336595e-03
## 6441    1 0.0029850746 0.78275934 2.336595e-03
## 6442    3 0.0018656716 1.25276297 2.337244e-03
## 6443    1 0.0023640662 0.99039870 2.341368e-03
## 6444    1 0.0023640662 0.99039870 2.341368e-03
## 6445    1 0.0013280212 1.76358859 2.342083e-03
## 6446    1 0.0013280212 1.76358859 2.342083e-03
## 6447    1 0.0013280212 1.76358859 2.342083e-03
## 6448    1 0.0013280212 1.76358859 2.342083e-03
## 6449    1 0.0013280212 1.76358859 2.342083e-03
## 6450    1 0.0013280212 1.76358859 2.342083e-03
## 6451    2 0.0020242915 1.15745279 2.343022e-03
## 6452    2 0.0020242915 1.15745279 2.343022e-03
## 6453    2 0.0032467532 0.72213472 2.344593e-03
## 6454    2 0.0032467532 0.72213472 2.344593e-03
## 6455    3 0.0035294118 0.66497630 2.346975e-03
## 6456    3 0.0035294118 0.66497630 2.346975e-03
## 6457    1 0.0021929825 1.07044141 2.347459e-03
## 6458    1 0.0021929825 1.07044141 2.347459e-03
## 6459    1 0.0021929825 1.07044141 2.347459e-03
## 6460    1 0.0021929825 1.07044141 2.347459e-03
## 6461    1 0.0021929825 1.07044141 2.347459e-03
## 6462    1 0.0021929825 1.07044141 2.347459e-03
## 6463    1 0.0021929825 1.07044141 2.347459e-03
## 6464    1 0.0021929825 1.07044141 2.347459e-03
## 6465    5 0.0050607287 0.46430561 2.349725e-03
## 6466    5 0.0050607287 0.46430561 2.349725e-03
## 6467    1 0.0013333333 1.76358859 2.351451e-03
## 6468    1 0.0013333333 1.76358859 2.351451e-03
## 6469    1 0.0013333333 1.76358859 2.351451e-03
## 6470    1 0.0013333333 1.76358859 2.351451e-03
## 6471    1 0.0013333333 1.76358859 2.351451e-03
## 6472    1 0.0013333333 1.76358859 2.351451e-03
## 6473    1 0.0013333333 1.76358859 2.351451e-03
## 6474    1 0.0013333333 1.76358859 2.351451e-03
## 6475    1 0.0013333333 1.76358859 2.351451e-03
## 6476    1 0.0013333333 1.76358859 2.351451e-03
## 6477    1 0.0013333333 1.76358859 2.351451e-03
## 6478    1 0.0013333333 1.76358859 2.351451e-03
## 6479    1 0.0013333333 1.76358859 2.351451e-03
## 6480    1 0.0013333333 1.76358859 2.351451e-03
## 6481    1 0.0013333333 1.76358859 2.351451e-03
## 6482    1 0.0013333333 1.76358859 2.351451e-03
## 6483    3 0.0025684932 0.91629073 2.353486e-03
## 6484    4 0.0022014309 1.07044141 2.356503e-03
## 6485    2 0.0022026432 1.07044141 2.357800e-03
## 6486    2 0.0022026432 1.07044141 2.357800e-03
## 6487    2 0.0022026432 1.07044141 2.357800e-03
## 6488    1 0.0012121212 1.94591015 2.358679e-03
## 6489    1 0.0012121212 1.94591015 2.358679e-03
## 6490    1 0.0012121212 1.94591015 2.358679e-03
## 6491    1 0.0012121212 1.94591015 2.358679e-03
## 6492    1 0.0012121212 1.94591015 2.358679e-03
## 6493    1 0.0012121212 1.94591015 2.358679e-03
## 6494    1 0.0012121212 1.94591015 2.358679e-03
## 6495    1 0.0012121212 1.94591015 2.358679e-03
## 6496    1 0.0012121212 1.94591015 2.358679e-03
## 6497    1 0.0012121212 1.94591015 2.358679e-03
## 6498    1 0.0012121212 1.94591015 2.358679e-03
## 6499    1 0.0012121212 1.94591015 2.358679e-03
## 6500    1 0.0012121212 1.94591015 2.358679e-03
## 6501    3 0.0018867925 1.25276297 2.363704e-03
## 6502    3 0.0018867925 1.25276297 2.363704e-03
## 6503    1 0.0027932961 0.84729786 2.366754e-03
## 6504    1 0.0027932961 0.84729786 2.366754e-03
## 6505    1 0.0027932961 0.84729786 2.366754e-03
## 6506    1 0.0027932961 0.84729786 2.366754e-03
## 6507    6 0.0079681275 0.29725152 2.368538e-03
## 6508   10 0.0070621469 0.33647224 2.376216e-03
## 6509    3 0.0030364372 0.78275934 2.376800e-03
## 6510    2 0.0035778175 0.66497630 2.379164e-03
## 6511    2 0.0035778175 0.66497630 2.379164e-03
## 6512    2 0.0035778175 0.66497630 2.379164e-03
## 6513    6 0.0033021464 0.72213472 2.384595e-03
## 6514    3 0.0051369863 0.46430561 2.385132e-03
## 6515    2 0.0011007155 2.16905370 2.387511e-03
## 6516    2 0.0011007155 2.16905370 2.387511e-03
## 6517    2 0.0011007155 2.16905370 2.387511e-03
## 6518    2 0.0011007155 2.16905370 2.387511e-03
## 6519    2 0.0011007155 2.16905370 2.387511e-03
## 6520    2 0.0011007155 2.16905370 2.387511e-03
## 6521    2 0.0011007155 2.16905370 2.387511e-03
## 6522    2 0.0011007155 2.16905370 2.387511e-03
## 6523    2 0.0011007155 2.16905370 2.387511e-03
## 6524    2 0.0011007155 2.16905370 2.387511e-03
## 6525    2 0.0011007155 2.16905370 2.387511e-03
## 6526    2 0.0011007155 2.16905370 2.387511e-03
## 6527    2 0.0011007155 2.16905370 2.387511e-03
## 6528    2 0.0011007155 2.16905370 2.387511e-03
## 6529    1 0.0011013216 2.16905370 2.388826e-03
## 6530    1 0.0011013216 2.16905370 2.388826e-03
## 6531    1 0.0011013216 2.16905370 2.388826e-03
## 6532    1 0.0011013216 2.16905370 2.388826e-03
## 6533    1 0.0011013216 2.16905370 2.388826e-03
## 6534    1 0.0011013216 2.16905370 2.388826e-03
## 6535    1 0.0011013216 2.16905370 2.388826e-03
## 6536    1 0.0011013216 2.16905370 2.388826e-03
## 6537    1 0.0011013216 2.16905370 2.388826e-03
## 6538    1 0.0011013216 2.16905370 2.388826e-03
## 6539    1 0.0011013216 2.16905370 2.388826e-03
## 6540    1 0.0011013216 2.16905370 2.388826e-03
## 6541    1 0.0011013216 2.16905370 2.388826e-03
## 6542    1 0.0011013216 2.16905370 2.388826e-03
## 6543    1 0.0011013216 2.16905370 2.388826e-03
## 6544    1 0.0011013216 2.16905370 2.388826e-03
## 6545    1 0.0011013216 2.16905370 2.388826e-03
## 6546    1 0.0011013216 2.16905370 2.388826e-03
## 6547    5 0.0056947608 0.41985385 2.390967e-03
## 6548    5 0.0056947608 0.41985385 2.390967e-03
## 6549    4 0.0028248588 0.84729786 2.393497e-03
## 6550    4 0.0028248588 0.84729786 2.393497e-03
## 6551    2 0.0020682523 1.15745279 2.393904e-03
## 6552    2 0.0020682523 1.15745279 2.393904e-03
## 6553    2 0.0020682523 1.15745279 2.393904e-03
## 6554    2 0.0020682523 1.15745279 2.393904e-03
## 6555    2 0.0020682523 1.15745279 2.393904e-03
## 6556    4 0.0026126715 0.91629073 2.393967e-03
## 6557    4 0.0026126715 0.91629073 2.393967e-03
## 6558    1 0.0016233766 1.47590652 2.395952e-03
## 6559    1 0.0016233766 1.47590652 2.395952e-03
## 6560    1 0.0016233766 1.47590652 2.395952e-03
## 6561    1 0.0016233766 1.47590652 2.395952e-03
## 6562    1 0.0016233766 1.47590652 2.395952e-03
## 6563    1 0.0016233766 1.47590652 2.395952e-03
## 6564    1 0.0016233766 1.47590652 2.395952e-03
## 6565    1 0.0016233766 1.47590652 2.395952e-03
## 6566    1 0.0016233766 1.47590652 2.395952e-03
## 6567    1 0.0016233766 1.47590652 2.395952e-03
## 6568    1 0.0016233766 1.47590652 2.395952e-03
## 6569    1 0.0016233766 1.47590652 2.395952e-03
## 6570    2 0.0024242424 0.99039870 2.400967e-03
## 6571    2 0.0024242424 0.99039870 2.400967e-03
## 6572    2 0.0022471910 1.07044141 2.405486e-03
## 6573    2 0.0022471910 1.07044141 2.405486e-03
## 6574    2 0.0047281324 0.51082562 2.415251e-03
## 6575    2 0.0047281324 0.51082562 2.415251e-03
## 6576   11 0.0071848465 0.33647224 2.417501e-03
## 6577    1 0.0026385224 0.91629073 2.417654e-03
## 6578    1 0.0026385224 0.91629073 2.417654e-03
## 6579    1 0.0026385224 0.91629073 2.417654e-03
## 6580    1 0.0026385224 0.91629073 2.417654e-03
## 6581    1 0.0026385224 0.91629073 2.417654e-03
## 6582    3 0.0036363636 0.66497630 2.418096e-03
## 6583    2 0.0012437811 1.94591015 2.420286e-03
## 6584    2 0.0012437811 1.94591015 2.420286e-03
## 6585    2 0.0012437811 1.94591015 2.420286e-03
## 6586    2 0.0012437811 1.94591015 2.420286e-03
## 6587    2 0.0012437811 1.94591015 2.420286e-03
## 6588    2 0.0012437811 1.94591015 2.420286e-03
## 6589    2 0.0012437811 1.94591015 2.420286e-03
## 6590    2 0.0012437811 1.94591015 2.420286e-03
## 6591    2 0.0012437811 1.94591015 2.420286e-03
## 6592    2 0.0012437811 1.94591015 2.420286e-03
## 6593    2 0.0012437811 1.94591015 2.420286e-03
## 6594    2 0.0012437811 1.94591015 2.420286e-03
## 6595    2 0.0012437811 1.94591015 2.420286e-03
## 6596    2 0.0012437811 1.94591015 2.420286e-03
## 6597    3 0.0031023785 0.78275934 2.428416e-03
## 6598    3 0.0031023785 0.78275934 2.428416e-03
## 6599    1 0.0013774105 1.76358859 2.429185e-03
## 6600    1 0.0013774105 1.76358859 2.429185e-03
## 6601    1 0.0013774105 1.76358859 2.429185e-03
## 6602    1 0.0013774105 1.76358859 2.429185e-03
## 6603    1 0.0013774105 1.76358859 2.429185e-03
## 6604    1 0.0013774105 1.76358859 2.429185e-03
## 6605    1 0.0013774105 1.76358859 2.429185e-03
## 6606    1 0.0013774105 1.76358859 2.429185e-03
## 6607    1 0.0013774105 1.76358859 2.429185e-03
## 6608    1 0.0013774105 1.76358859 2.429185e-03
## 6609    1 0.0013774105 1.76358859 2.429185e-03
## 6610    1 0.0013774105 1.76358859 2.429185e-03
## 6611    1 0.0013774105 1.76358859 2.429185e-03
## 6612    1 0.0013774105 1.76358859 2.429185e-03
## 6613    1 0.0013774105 1.76358859 2.429185e-03
## 6614    1 0.0013774105 1.76358859 2.429185e-03
## 6615    1 0.0013774105 1.76358859 2.429185e-03
## 6616    1 0.0013774105 1.76358859 2.429185e-03
## 6617    1 0.0013774105 1.76358859 2.429185e-03
## 6618    1 0.0017889088 1.35812348 2.429559e-03
## 6619    1 0.0017889088 1.35812348 2.429559e-03
## 6620    1 0.0017889088 1.35812348 2.429559e-03
## 6621    1 0.0017889088 1.35812348 2.429559e-03
## 6622    1 0.0017889088 1.35812348 2.429559e-03
## 6623    1 0.0017889088 1.35812348 2.429559e-03
## 6624    1 0.0017889088 1.35812348 2.429559e-03
## 6625    1 0.0017889088 1.35812348 2.429559e-03
## 6626    1 0.0017889088 1.35812348 2.429559e-03
## 6627    1 0.0024570025 0.99039870 2.433412e-03
## 6628    1 0.0024570025 0.99039870 2.433412e-03
## 6629    1 0.0024570025 0.99039870 2.433412e-03
## 6630    1 0.0024570025 0.99039870 2.433412e-03
## 6631    1 0.0024570025 0.99039870 2.433412e-03
## 6632    1 0.0024570025 0.99039870 2.433412e-03
## 6633    1 0.0024570025 0.99039870 2.433412e-03
## 6634    5 0.0031094527 0.78275934 2.433953e-03
## 6635    3 0.0033707865 0.72213472 2.434162e-03
## 6636    3 0.0016510732 1.47590652 2.436830e-03
## 6637    3 0.0016510732 1.47590652 2.436830e-03
## 6638    3 0.0016510732 1.47590652 2.436830e-03
## 6639    3 0.0016510732 1.47590652 2.436830e-03
## 6640    3 0.0016510732 1.47590652 2.436830e-03
## 6641    1 0.0011235955 2.16905370 2.437139e-03
## 6642    1 0.0011235955 2.16905370 2.437139e-03
## 6643    1 0.0011235955 2.16905370 2.437139e-03
## 6644    1 0.0011235955 2.16905370 2.437139e-03
## 6645    1 0.0011235955 2.16905370 2.437139e-03
## 6646    1 0.0011235955 2.16905370 2.437139e-03
## 6647    1 0.0011235955 2.16905370 2.437139e-03
## 6648    1 0.0011235955 2.16905370 2.437139e-03
## 6649    1 0.0011235955 2.16905370 2.437139e-03
## 6650    1 0.0011235955 2.16905370 2.437139e-03
## 6651    1 0.0011235955 2.16905370 2.437139e-03
## 6652    1 0.0011235955 2.16905370 2.437139e-03
## 6653    1 0.0011235955 2.16905370 2.437139e-03
## 6654    1 0.0011235955 2.16905370 2.437139e-03
## 6655    1 0.0011235955 2.16905370 2.437139e-03
## 6656    1 0.0011235955 2.16905370 2.437139e-03
## 6657    1 0.0011235955 2.16905370 2.437139e-03
## 6658    1 0.0011235955 2.16905370 2.437139e-03
## 6659    1 0.0011235955 2.16905370 2.437139e-03
## 6660    1 0.0011235955 2.16905370 2.437139e-03
## 6661    1 0.0011235955 2.16905370 2.437139e-03
## 6662    1 0.0011235955 2.16905370 2.437139e-03
## 6663    1 0.0011235955 2.16905370 2.437139e-03
## 6664    1 0.0011235955 2.16905370 2.437139e-03
## 6665    1 0.0011235955 2.16905370 2.437139e-03
## 6666    1 0.0011235955 2.16905370 2.437139e-03
## 6667    1 0.0011235955 2.16905370 2.437139e-03
## 6668    1 0.0011235955 2.16905370 2.437139e-03
## 6669    2 0.0022779043 1.07044141 2.438363e-03
## 6670    2 0.0022779043 1.07044141 2.438363e-03
## 6671    2 0.0022779043 1.07044141 2.438363e-03
## 6672    2 0.0022779043 1.07044141 2.438363e-03
## 6673    2 0.0022779043 1.07044141 2.438363e-03
## 6674    2 0.0022779043 1.07044141 2.438363e-03
## 6675    2 0.0022779043 1.07044141 2.438363e-03
## 6676    2 0.0022779043 1.07044141 2.438363e-03
## 6677    2 0.0022779043 1.07044141 2.438363e-03
## 6678    2 0.0022779043 1.07044141 2.438363e-03
## 6679    2 0.0026666667 0.91629073 2.443442e-03
## 6680    2 0.0012578616 1.94591015 2.447686e-03
## 6681    2 0.0012578616 1.94591015 2.447686e-03
## 6682    2 0.0012578616 1.94591015 2.447686e-03
## 6683    2 0.0012578616 1.94591015 2.447686e-03
## 6684    2 0.0012578616 1.94591015 2.447686e-03
## 6685    2 0.0012578616 1.94591015 2.447686e-03
## 6686    2 0.0012578616 1.94591015 2.447686e-03
## 6687    2 0.0012578616 1.94591015 2.447686e-03
## 6688    2 0.0012578616 1.94591015 2.447686e-03
## 6689    2 0.0012578616 1.94591015 2.447686e-03
## 6690    1 0.0008561644 2.86220088 2.450514e-03
## 6691    1 0.0008561644 2.86220088 2.450514e-03
## 6692    1 0.0008561644 2.86220088 2.450514e-03
## 6693    1 0.0008561644 2.86220088 2.450514e-03
## 6694    1 0.0008561644 2.86220088 2.450514e-03
## 6695    1 0.0008561644 2.86220088 2.450514e-03
## 6696    1 0.0008561644 2.86220088 2.450514e-03
## 6697    1 0.0008561644 2.86220088 2.450514e-03
## 6698    1 0.0008561644 2.86220088 2.450514e-03
## 6699    1 0.0008561644 2.86220088 2.450514e-03
## 6700    1 0.0008561644 2.86220088 2.450514e-03
## 6701    1 0.0008561644 2.86220088 2.450514e-03
## 6702    1 0.0008561644 2.86220088 2.450514e-03
## 6703    1 0.0008561644 2.86220088 2.450514e-03
## 6704    1 0.0008561644 2.86220088 2.450514e-03
## 6705    1 0.0008561644 2.86220088 2.450514e-03
## 6706    1 0.0008561644 2.86220088 2.450514e-03
## 6707    1 0.0008561644 2.86220088 2.450514e-03
## 6708    1 0.0008561644 2.86220088 2.450514e-03
## 6709    1 0.0008561644 2.86220088 2.450514e-03
## 6710    1 0.0008561644 2.86220088 2.450514e-03
## 6711    1 0.0008561644 2.86220088 2.450514e-03
## 6712    1 0.0008561644 2.86220088 2.450514e-03
## 6713    1 0.0008561644 2.86220088 2.450514e-03
## 6714    1 0.0008561644 2.86220088 2.450514e-03
## 6715    1 0.0008561644 2.86220088 2.450514e-03
## 6716    1 0.0008561644 2.86220088 2.450514e-03
## 6717    1 0.0008561644 2.86220088 2.450514e-03
## 6718    1 0.0008561644 2.86220088 2.450514e-03
## 6719    1 0.0008561644 2.86220088 2.450514e-03
## 6720    1 0.0008561644 2.86220088 2.450514e-03
## 6721    1 0.0008561644 2.86220088 2.450514e-03
## 6722    1 0.0008561644 2.86220088 2.450514e-03
## 6723    1 0.0008561644 2.86220088 2.450514e-03
## 6724    1 0.0008561644 2.86220088 2.450514e-03
## 6725    1 0.0008561644 2.86220088 2.450514e-03
## 6726    1 0.0008561644 2.86220088 2.450514e-03
## 6727    1 0.0008561644 2.86220088 2.450514e-03
## 6728    1 0.0008561644 2.86220088 2.450514e-03
## 6729    1 0.0008561644 2.86220088 2.450514e-03
## 6730    1 0.0008561644 2.86220088 2.450514e-03
## 6731    1 0.0008561644 2.86220088 2.450514e-03
## 6732    1 0.0008561644 2.86220088 2.450514e-03
## 6733    1 0.0008561644 2.86220088 2.450514e-03
## 6734    1 0.0008561644 2.86220088 2.450514e-03
## 6735    1 0.0008561644 2.86220088 2.450514e-03
## 6736    1 0.0008561644 2.86220088 2.450514e-03
## 6737    1 0.0008561644 2.86220088 2.450514e-03
## 6738    1 0.0008561644 2.86220088 2.450514e-03
## 6739    1 0.0008561644 2.86220088 2.450514e-03
## 6740    3 0.0015228426 1.60943791 2.450921e-03
## 6741    3 0.0021186441 1.15745279 2.452230e-03
## 6742    3 0.0021186441 1.15745279 2.452230e-03
## 6743    3 0.0021186441 1.15745279 2.452230e-03
## 6744    3 0.0021186441 1.15745279 2.452230e-03
## 6745    3 0.0021186441 1.15745279 2.452230e-03
## 6746    2 0.0043859649 0.55961579 2.454455e-03
## 6747    3 0.0019595036 1.25276297 2.454794e-03
## 6748    3 0.0019595036 1.25276297 2.454794e-03
## 6749    5 0.0031446541 0.78275934 2.461507e-03
## 6750    2 0.0021276596 1.15745279 2.462666e-03
## 6751    2 0.0021276596 1.15745279 2.462666e-03
## 6752    2 0.0021276596 1.15745279 2.462666e-03
## 6753    2 0.0021276596 1.15745279 2.462666e-03
## 6754    1 0.0029069767 0.84729786 2.463075e-03
## 6755    2 0.0037105751 0.66497630 2.467445e-03
## 6756    2 0.0037105751 0.66497630 2.467445e-03
## 6757    1 0.0026954178 0.91629073 2.469786e-03
## 6758    1 0.0026954178 0.91629073 2.469786e-03
## 6759    1 0.0026954178 0.91629073 2.469786e-03
## 6760    1 0.0024937656 0.99039870 2.469822e-03
## 6761    1 0.0024937656 0.99039870 2.469822e-03
## 6762    1 0.0024937656 0.99039870 2.469822e-03
## 6763    1 0.0024937656 0.99039870 2.469822e-03
## 6764    1 0.0024937656 0.99039870 2.469822e-03
## 6765    1 0.0024937656 0.99039870 2.469822e-03
## 6766    1 0.0024937656 0.99039870 2.469822e-03
## 6767    1 0.0011389522 2.16905370 2.470448e-03
## 6768    1 0.0011389522 2.16905370 2.470448e-03
## 6769    1 0.0011389522 2.16905370 2.470448e-03
## 6770    1 0.0011389522 2.16905370 2.470448e-03
## 6771    1 0.0011389522 2.16905370 2.470448e-03
## 6772    1 0.0011389522 2.16905370 2.470448e-03
## 6773    1 0.0011389522 2.16905370 2.470448e-03
## 6774    1 0.0011389522 2.16905370 2.470448e-03
## 6775    1 0.0011389522 2.16905370 2.470448e-03
## 6776    1 0.0011389522 2.16905370 2.470448e-03
## 6777    1 0.0011389522 2.16905370 2.470448e-03
## 6778    1 0.0011389522 2.16905370 2.470448e-03
## 6779    1 0.0011389522 2.16905370 2.470448e-03
## 6780    1 0.0011389522 2.16905370 2.470448e-03
## 6781    1 0.0011389522 2.16905370 2.470448e-03
## 6782    1 0.0011389522 2.16905370 2.470448e-03
## 6783    1 0.0011389522 2.16905370 2.470448e-03
## 6784    1 0.0011389522 2.16905370 2.470448e-03
## 6785    1 0.0011389522 2.16905370 2.470448e-03
## 6786    1 0.0011389522 2.16905370 2.470448e-03
## 6787    1 0.0011389522 2.16905370 2.470448e-03
## 6788    1 0.0011389522 2.16905370 2.470448e-03
## 6789    1 0.0011389522 2.16905370 2.470448e-03
## 6790    1 0.0011389522 2.16905370 2.470448e-03
## 6791    1 0.0011389522 2.16905370 2.470448e-03
## 6792    1 0.0011389522 2.16905370 2.470448e-03
## 6793    1 0.0011389522 2.16905370 2.470448e-03
## 6794    4 0.0034246575 0.72213472 2.473064e-03
## 6795    4 0.0034246575 0.72213472 2.473064e-03
## 6796    2 0.0034246575 0.72213472 2.473064e-03
## 6797    2 0.0034246575 0.72213472 2.473064e-03
## 6798    1 0.0034246575 0.72213472 2.473064e-03
## 6799    1 0.0034246575 0.72213472 2.473064e-03
## 6800    1 0.0034246575 0.72213472 2.473064e-03
## 6801    1 0.0034246575 0.72213472 2.473064e-03
## 6802    4 0.0040485830 0.61090908 2.473316e-03
## 6803    1 0.0010121457 2.45673577 2.486575e-03
## 6804    1 0.0010121457 2.45673577 2.486575e-03
## 6805    1 0.0010121457 2.45673577 2.486575e-03
## 6806    1 0.0010121457 2.45673577 2.486575e-03
## 6807    1 0.0010121457 2.45673577 2.486575e-03
## 6808    1 0.0010121457 2.45673577 2.486575e-03
## 6809    1 0.0010121457 2.45673577 2.486575e-03
## 6810    1 0.0010121457 2.45673577 2.486575e-03
## 6811    1 0.0010121457 2.45673577 2.486575e-03
## 6812    1 0.0010121457 2.45673577 2.486575e-03
## 6813    1 0.0010121457 2.45673577 2.486575e-03
## 6814    1 0.0010121457 2.45673577 2.486575e-03
## 6815    1 0.0010121457 2.45673577 2.486575e-03
## 6816    1 0.0010121457 2.45673577 2.486575e-03
## 6817    1 0.0010121457 2.45673577 2.486575e-03
## 6818    1 0.0010121457 2.45673577 2.486575e-03
## 6819    1 0.0010121457 2.45673577 2.486575e-03
## 6820    1 0.0010121457 2.45673577 2.486575e-03
## 6821    1 0.0010121457 2.45673577 2.486575e-03
## 6822    1 0.0010121457 2.45673577 2.486575e-03
## 6823    1 0.0010121457 2.45673577 2.486575e-03
## 6824    1 0.0010121457 2.45673577 2.486575e-03
## 6825    1 0.0010121457 2.45673577 2.486575e-03
## 6826    1 0.0010121457 2.45673577 2.486575e-03
## 6827    1 0.0010121457 2.45673577 2.486575e-03
## 6828    1 0.0010121457 2.45673577 2.486575e-03
## 6829    1 0.0010121457 2.45673577 2.486575e-03
## 6830    1 0.0010121457 2.45673577 2.486575e-03
## 6831    1 0.0010121457 2.45673577 2.486575e-03
## 6832    1 0.0010121457 2.45673577 2.486575e-03
## 6833    1 0.0010121457 2.45673577 2.486575e-03
## 6834    1 0.0010121457 2.45673577 2.486575e-03
## 6835    1 0.0010121457 2.45673577 2.486575e-03
## 6836    1 0.0010121457 2.45673577 2.486575e-03
## 6837    1 0.0010121457 2.45673577 2.486575e-03
## 6838    1 0.0010121457 2.45673577 2.486575e-03
## 6839    1 0.0010121457 2.45673577 2.486575e-03
## 6840    1 0.0010121457 2.45673577 2.486575e-03
## 6841    1 0.0010121457 2.45673577 2.486575e-03
## 6842    1 0.0010121457 2.45673577 2.486575e-03
## 6843    1 0.0010121457 2.45673577 2.486575e-03
## 6844    1 0.0010121457 2.45673577 2.486575e-03
## 6845    1 0.0010121457 2.45673577 2.486575e-03
## 6846    2 0.0014124294 1.76358859 2.490944e-03
## 6847    2 0.0014124294 1.76358859 2.490944e-03
## 6848    2 0.0014124294 1.76358859 2.490944e-03
## 6849    2 0.0014124294 1.76358859 2.490944e-03
## 6850    2 0.0014124294 1.76358859 2.490944e-03
## 6851    2 0.0014124294 1.76358859 2.490944e-03
## 6852    2 0.0014124294 1.76358859 2.490944e-03
## 6853    2 0.0014124294 1.76358859 2.490944e-03
## 6854    2 0.0014124294 1.76358859 2.490944e-03
## 6855    2 0.0014124294 1.76358859 2.490944e-03
## 6856    4 0.0025157233 0.99039870 2.491569e-03
## 6857    3 0.0053667263 0.46430561 2.491801e-03
## 6858    2 0.0010152284 2.45673577 2.494148e-03
## 6859    2 0.0010152284 2.45673577 2.494148e-03
## 6860    2 0.0010152284 2.45673577 2.494148e-03
## 6861    2 0.0010152284 2.45673577 2.494148e-03
## 6862    2 0.0010152284 2.45673577 2.494148e-03
## 6863    2 0.0010152284 2.45673577 2.494148e-03
## 6864    2 0.0010152284 2.45673577 2.494148e-03
## 6865    2 0.0010152284 2.45673577 2.494148e-03
## 6866    2 0.0010152284 2.45673577 2.494148e-03
## 6867    2 0.0010152284 2.45673577 2.494148e-03
## 6868    2 0.0010152284 2.45673577 2.494148e-03
## 6869    2 0.0010152284 2.45673577 2.494148e-03
## 6870    2 0.0010152284 2.45673577 2.494148e-03
## 6871    2 0.0010152284 2.45673577 2.494148e-03
## 6872    2 0.0010152284 2.45673577 2.494148e-03
## 6873    2 0.0010152284 2.45673577 2.494148e-03
## 6874    2 0.0010152284 2.45673577 2.494148e-03
## 6875    2 0.0010152284 2.45673577 2.494148e-03
## 6876    2 0.0010152284 2.45673577 2.494148e-03
## 6877    2 0.0010152284 2.45673577 2.494148e-03
## 6878    1 0.0034602076 0.72213472 2.498736e-03
## 6879    2 0.0049140049 0.51082562 2.510200e-03
## 6880    1 0.0007062147 3.55534806 2.510839e-03
## 6881    1 0.0007062147 3.55534806 2.510839e-03
## 6882    1 0.0007062147 3.55534806 2.510839e-03
## 6883    1 0.0007062147 3.55534806 2.510839e-03
## 6884    1 0.0007062147 3.55534806 2.510839e-03
## 6885    1 0.0007062147 3.55534806 2.510839e-03
## 6886    1 0.0007062147 3.55534806 2.510839e-03
## 6887    1 0.0007062147 3.55534806 2.510839e-03
## 6888    1 0.0007062147 3.55534806 2.510839e-03
## 6889    1 0.0007062147 3.55534806 2.510839e-03
## 6890    1 0.0007062147 3.55534806 2.510839e-03
## 6891    1 0.0007062147 3.55534806 2.510839e-03
## 6892    1 0.0007062147 3.55534806 2.510839e-03
## 6893    1 0.0007062147 3.55534806 2.510839e-03
## 6894    1 0.0007062147 3.55534806 2.510839e-03
## 6895    1 0.0007062147 3.55534806 2.510839e-03
## 6896    1 0.0007062147 3.55534806 2.510839e-03
## 6897    1 0.0007062147 3.55534806 2.510839e-03
## 6898    1 0.0007062147 3.55534806 2.510839e-03
## 6899    1 0.0007062147 3.55534806 2.510839e-03
## 6900    1 0.0007062147 3.55534806 2.510839e-03
## 6901    1 0.0007062147 3.55534806 2.510839e-03
## 6902    1 0.0007062147 3.55534806 2.510839e-03
## 6903    1 0.0007062147 3.55534806 2.510839e-03
## 6904    1 0.0007062147 3.55534806 2.510839e-03
## 6905    1 0.0007062147 3.55534806 2.510839e-03
## 6906    1 0.0007062147 3.55534806 2.510839e-03
## 6907    1 0.0007062147 3.55534806 2.510839e-03
## 6908    1 0.0007062147 3.55534806 2.510839e-03
## 6909    1 0.0007062147 3.55534806 2.510839e-03
## 6910    1 0.0007062147 3.55534806 2.510839e-03
## 6911    1 0.0007062147 3.55534806 2.510839e-03
## 6912    1 0.0007062147 3.55534806 2.510839e-03
## 6913    1 0.0007062147 3.55534806 2.510839e-03
## 6914    1 0.0007062147 3.55534806 2.510839e-03
## 6915    1 0.0007062147 3.55534806 2.510839e-03
## 6916    1 0.0007062147 3.55534806 2.510839e-03
## 6917    1 0.0007062147 3.55534806 2.510839e-03
## 6918    1 0.0007062147 3.55534806 2.510839e-03
## 6919    1 0.0007062147 3.55534806 2.510839e-03
## 6920    1 0.0007062147 3.55534806 2.510839e-03
## 6921    1 0.0007062147 3.55534806 2.510839e-03
## 6922    1 0.0007062147 3.55534806 2.510839e-03
## 6923    1 0.0007062147 3.55534806 2.510839e-03
## 6924    1 0.0007062147 3.55534806 2.510839e-03
## 6925    1 0.0007062147 3.55534806 2.510839e-03
## 6926    1 0.0007062147 3.55534806 2.510839e-03
## 6927    1 0.0007062147 3.55534806 2.510839e-03
## 6928    1 0.0007062147 3.55534806 2.510839e-03
## 6929    1 0.0007062147 3.55534806 2.510839e-03
## 6930    1 0.0007062147 3.55534806 2.510839e-03
## 6931    1 0.0007062147 3.55534806 2.510839e-03
## 6932    1 0.0007062147 3.55534806 2.510839e-03
## 6933    1 0.0007062147 3.55534806 2.510839e-03
## 6934    1 0.0007062147 3.55534806 2.510839e-03
## 6935    1 0.0007062147 3.55534806 2.510839e-03
## 6936    1 0.0007062147 3.55534806 2.510839e-03
## 6937    1 0.0007062147 3.55534806 2.510839e-03
## 6938    1 0.0007062147 3.55534806 2.510839e-03
## 6939    1 0.0007062147 3.55534806 2.510839e-03
## 6940    1 0.0007062147 3.55534806 2.510839e-03
## 6941    1 0.0007062147 3.55534806 2.510839e-03
## 6942    1 0.0007062147 3.55534806 2.510839e-03
## 6943    1 0.0007062147 3.55534806 2.510839e-03
## 6944    1 0.0007062147 3.55534806 2.510839e-03
## 6945    1 0.0007062147 3.55534806 2.510839e-03
## 6946    1 0.0007062147 3.55534806 2.510839e-03
## 6947    1 0.0007062147 3.55534806 2.510839e-03
## 6948    1 0.0007062147 3.55534806 2.510839e-03
## 6949    1 0.0007062147 3.55534806 2.510839e-03
## 6950    1 0.0007062147 3.55534806 2.510839e-03
## 6951    1 0.0007062147 3.55534806 2.510839e-03
## 6952    1 0.0007062147 3.55534806 2.510839e-03
## 6953    1 0.0007062147 3.55534806 2.510839e-03
## 6954    1 0.0007062147 3.55534806 2.510839e-03
## 6955    1 0.0007062147 3.55534806 2.510839e-03
## 6956    1 0.0007062147 3.55534806 2.510839e-03
## 6957    1 0.0007062147 3.55534806 2.510839e-03
## 6958    1 0.0007062147 3.55534806 2.510839e-03
## 6959    8 0.0096969697 0.25951120 2.516472e-03
## 6960    3 0.0074812968 0.33647224 2.517249e-03
## 6961    2 0.0023529412 1.07044141 2.518686e-03
## 6962    1 0.0018552876 1.35812348 2.519710e-03
## 6963    1 0.0018552876 1.35812348 2.519710e-03
## 6964    1 0.0018552876 1.35812348 2.519710e-03
## 6965    2 0.0027548209 0.91629073 2.524217e-03
## 6966    3 0.0041322314 0.61090908 2.524418e-03
## 6967    4 0.0041365047 0.61090908 2.527028e-03
## 6968    2 0.0017123288 1.47590652 2.527237e-03
## 6969    2 0.0017123288 1.47590652 2.527237e-03
## 6970    2 0.0017123288 1.47590652 2.527237e-03
## 6971    1 0.0017123288 1.47590652 2.527237e-03
## 6972    1 0.0017123288 1.47590652 2.527237e-03
## 6973    1 0.0017123288 1.47590652 2.527237e-03
## 6974    1 0.0017123288 1.47590652 2.527237e-03
## 6975    1 0.0017123288 1.47590652 2.527237e-03
## 6976    1 0.0017123288 1.47590652 2.527237e-03
## 6977    1 0.0029850746 0.84729786 2.529247e-03
## 6978    1 0.0029850746 0.84729786 2.529247e-03
## 6979    1 0.0029850746 0.84729786 2.529247e-03
## 6980    1 0.0029850746 0.84729786 2.529247e-03
## 6981    1 0.0023640662 1.07044141 2.530594e-03
## 6982    1 0.0023640662 1.07044141 2.530594e-03
## 6983    1 0.0023640662 1.07044141 2.530594e-03
## 6984    1 0.0023640662 1.07044141 2.530594e-03
## 6985    3 0.0018656716 1.35812348 2.533812e-03
## 6986    3 0.0018656716 1.35812348 2.533812e-03
## 6987    1 0.0021929825 1.15745279 2.538274e-03
## 6988    1 0.0021929825 1.15745279 2.538274e-03
## 6989    1 0.0021929825 1.15745279 2.538274e-03
## 6990    1 0.0010341262 2.45673577 2.540575e-03
## 6991    1 0.0010341262 2.45673577 2.540575e-03
## 6992    1 0.0010341262 2.45673577 2.540575e-03
## 6993    1 0.0010341262 2.45673577 2.540575e-03
## 6994    1 0.0010341262 2.45673577 2.540575e-03
## 6995    1 0.0010341262 2.45673577 2.540575e-03
## 6996    1 0.0010341262 2.45673577 2.540575e-03
## 6997    1 0.0010341262 2.45673577 2.540575e-03
## 6998    1 0.0010341262 2.45673577 2.540575e-03
## 6999    1 0.0010341262 2.45673577 2.540575e-03
## 7000    1 0.0010341262 2.45673577 2.540575e-03
## 7001    1 0.0010341262 2.45673577 2.540575e-03
## 7002    1 0.0010341262 2.45673577 2.540575e-03
## 7003    1 0.0010341262 2.45673577 2.540575e-03
## 7004    1 0.0010341262 2.45673577 2.540575e-03
## 7005    1 0.0010341262 2.45673577 2.540575e-03
## 7006    1 0.0010341262 2.45673577 2.540575e-03
## 7007    1 0.0010341262 2.45673577 2.540575e-03
## 7008    1 0.0010341262 2.45673577 2.540575e-03
## 7009    1 0.0010341262 2.45673577 2.540575e-03
## 7010    1 0.0010341262 2.45673577 2.540575e-03
## 7011    1 0.0010341262 2.45673577 2.540575e-03
## 7012    1 0.0010341262 2.45673577 2.540575e-03
## 7013    1 0.0010341262 2.45673577 2.540575e-03
## 7014    1 0.0010341262 2.45673577 2.540575e-03
## 7015    2 0.0013063357 1.94591015 2.542012e-03
## 7016    2 0.0013063357 1.94591015 2.542012e-03
## 7017    2 0.0013063357 1.94591015 2.542012e-03
## 7018    2 0.0013063357 1.94591015 2.542012e-03
## 7019    2 0.0013063357 1.94591015 2.542012e-03
## 7020    2 0.0013063357 1.94591015 2.542012e-03
## 7021    4 0.0020304569 1.25276297 2.543681e-03
## 7022    1 0.0045454545 0.55961579 2.543708e-03
## 7023    1 0.0045454545 0.55961579 2.543708e-03
## 7024    3 0.0025684932 0.99039870 2.543832e-03
## 7025    4 0.0022014309 1.15745279 2.548052e-03
## 7026    4 0.0022014309 1.15745279 2.548052e-03
## 7027    3 0.0035294118 0.72213472 2.548711e-03
## 7028    2 0.0022026432 1.15745279 2.549455e-03
## 7029    4 0.0045558087 0.55961579 2.549502e-03
## 7030    4 0.0045558087 0.55961579 2.549502e-03
## 7031    5 0.0035310734 0.72213472 2.549911e-03
## 7032    4 0.0098280098 0.25951120 2.550479e-03
## 7033    1 0.0011764706 2.16905370 2.551828e-03
## 7034    1 0.0011764706 2.16905370 2.551828e-03
## 7035    1 0.0011764706 2.16905370 2.551828e-03
## 7036    1 0.0011764706 2.16905370 2.551828e-03
## 7037    1 0.0011764706 2.16905370 2.551828e-03
## 7038    1 0.0011764706 2.16905370 2.551828e-03
## 7039    1 0.0011764706 2.16905370 2.551828e-03
## 7040    1 0.0011764706 2.16905370 2.551828e-03
## 7041    1 0.0011764706 2.16905370 2.551828e-03
## 7042    1 0.0011764706 2.16905370 2.551828e-03
## 7043    1 0.0011764706 2.16905370 2.551828e-03
## 7044    1 0.0011764706 2.16905370 2.551828e-03
## 7045    1 0.0011764706 2.16905370 2.551828e-03
## 7046    1 0.0011764706 2.16905370 2.551828e-03
## 7047    1 0.0027932961 0.91629073 2.559471e-03
## 7048    1 0.0027932961 0.91629073 2.559471e-03
## 7049    1 0.0027932961 0.91629073 2.559471e-03
## 7050    1 0.0027932961 0.91629073 2.559471e-03
## 7051    1 0.0027932961 0.91629073 2.559471e-03
## 7052    1 0.0027932961 0.91629073 2.559471e-03
## 7053    1 0.0027932961 0.91629073 2.559471e-03
## 7054    1 0.0027932961 0.91629073 2.559471e-03
## 7055    1 0.0027932961 0.91629073 2.559471e-03
## 7056    1 0.0027932961 0.91629073 2.559471e-03
## 7057    1 0.0060975610 0.41985385 2.560084e-03
## 7058    7 0.0038525041 0.66497630 2.561824e-03
## 7059    7 0.0038525041 0.66497630 2.561824e-03
## 7060    3 0.0018867925 1.35812348 2.562497e-03
## 7061    3 0.0018867925 1.35812348 2.562497e-03
## 7062    3 0.0018867925 1.35812348 2.562497e-03
## 7063    3 0.0018867925 1.35812348 2.562497e-03
## 7064    3 0.0018867925 1.35812348 2.562497e-03
## 7065    3 0.0018867925 1.35812348 2.562497e-03
## 7066    8 0.0050314465 0.51082562 2.570192e-03
## 7067    8 0.0050314465 0.51082562 2.570192e-03
## 7068    3 0.0030364372 0.84729786 2.572767e-03
## 7069    4 0.0136986301 0.18805223 2.576058e-03
## 7070    4 0.0136986301 0.18805223 2.576058e-03
## 7071    6 0.0030456853 0.84729786 2.580603e-03
## 7072    2 0.0035778175 0.72213472 2.583666e-03
## 7073    2 0.0035778175 0.72213472 2.583666e-03
## 7074    2 0.0035778175 0.72213472 2.583666e-03
## 7075    2 0.0035778175 0.72213472 2.583666e-03
## 7076    1 0.0013280212 1.94591015 2.584210e-03
## 7077    1 0.0013280212 1.94591015 2.584210e-03
## 7078    1 0.0013280212 1.94591015 2.584210e-03
## 7079    1 0.0013280212 1.94591015 2.584210e-03
## 7080    1 0.0013280212 1.94591015 2.584210e-03
## 7081    1 0.0013280212 1.94591015 2.584210e-03
## 7082    1 0.0013280212 1.94591015 2.584210e-03
## 7083    1 0.0013280212 1.94591015 2.584210e-03
## 7084    1 0.0013280212 1.94591015 2.584210e-03
## 7085    1 0.0013280212 1.94591015 2.584210e-03
## 7086    1 0.0013280212 1.94591015 2.584210e-03
## 7087    1 0.0013280212 1.94591015 2.584210e-03
## 7088    1 0.0013280212 1.94591015 2.584210e-03
## 7089    1 0.0013280212 1.94591015 2.584210e-03
## 7090    1 0.0013280212 1.94591015 2.584210e-03
## 7091    1 0.0013280212 1.94591015 2.584210e-03
## 7092    1 0.0013280212 1.94591015 2.584210e-03
## 7093    1 0.0013280212 1.94591015 2.584210e-03
## 7094    1 0.0013280212 1.94591015 2.584210e-03
## 7095    4 0.0026126715 0.99039870 2.587586e-03
## 7096    4 0.0026126715 0.99039870 2.587586e-03
## 7097    6 0.0042372881 0.61090908 2.588598e-03
## 7098    2 0.0020682523 1.25276297 2.591030e-03
## 7099    2 0.0020682523 1.25276297 2.591030e-03
## 7100    2 0.0020682523 1.25276297 2.591030e-03
## 7101    2 0.0020682523 1.25276297 2.591030e-03
## 7102    2 0.0020682523 1.25276297 2.591030e-03
## 7103    9 0.0077054795 0.33647224 2.592680e-03
## 7104    2 0.0055865922 0.46430561 2.593886e-03
## 7105    1 0.0013333333 1.94591015 2.594547e-03
## 7106    1 0.0013333333 1.94591015 2.594547e-03
## 7107    1 0.0013333333 1.94591015 2.594547e-03
## 7108    1 0.0013333333 1.94591015 2.594547e-03
## 7109    1 0.0013333333 1.94591015 2.594547e-03
## 7110    1 0.0013333333 1.94591015 2.594547e-03
## 7111    1 0.0013333333 1.94591015 2.594547e-03
## 7112    1 0.0013333333 1.94591015 2.594547e-03
## 7113    1 0.0013333333 1.94591015 2.594547e-03
## 7114    1 0.0013333333 1.94591015 2.594547e-03
## 7115    1 0.0013333333 1.94591015 2.594547e-03
## 7116    1 0.0013333333 1.94591015 2.594547e-03
## 7117    1 0.0013333333 1.94591015 2.594547e-03
## 7118    1 0.0013333333 1.94591015 2.594547e-03
## 7119    1 0.0013333333 1.94591015 2.594547e-03
## 7120    1 0.0013333333 1.94591015 2.594547e-03
## 7121    1 0.0013333333 1.94591015 2.594547e-03
## 7122    1 0.0013333333 1.94591015 2.594547e-03
## 7123    1 0.0013333333 1.94591015 2.594547e-03
## 7124    1 0.0013333333 1.94591015 2.594547e-03
## 7125    1 0.0013333333 1.94591015 2.594547e-03
## 7126    1 0.0013333333 1.94591015 2.594547e-03
## 7127    1 0.0013333333 1.94591015 2.594547e-03
## 7128    1 0.0013333333 1.94591015 2.594547e-03
## 7129    2 0.0024242424 1.07044141 2.595009e-03
## 7130    2 0.0024242424 1.07044141 2.595009e-03
## 7131    2 0.0024242424 1.07044141 2.595009e-03
## 7132    2 0.0022471910 1.15745279 2.601018e-03
## 7133    2 0.0022471910 1.15745279 2.601018e-03
## 7134    1 0.0016233766 1.60943791 2.612724e-03
## 7135    1 0.0016233766 1.60943791 2.612724e-03
## 7136    1 0.0016233766 1.60943791 2.612724e-03
## 7137    1 0.0016233766 1.60943791 2.612724e-03
## 7138    1 0.0016233766 1.60943791 2.612724e-03
## 7139    1 0.0016233766 1.60943791 2.612724e-03
## 7140    1 0.0016233766 1.60943791 2.612724e-03
## 7141    1 0.0026385224 0.99039870 2.613189e-03
## 7142    1 0.0026385224 0.99039870 2.613189e-03
## 7143    1 0.0026385224 0.99039870 2.613189e-03
## 7144    1 0.0026385224 0.99039870 2.613189e-03
## 7145    1 0.0026385224 0.99039870 2.613189e-03
## 7146    1 0.0010638298 2.45673577 2.613549e-03
## 7147    1 0.0010638298 2.45673577 2.613549e-03
## 7148    1 0.0010638298 2.45673577 2.613549e-03
## 7149    1 0.0010638298 2.45673577 2.613549e-03
## 7150    1 0.0010638298 2.45673577 2.613549e-03
## 7151    1 0.0010638298 2.45673577 2.613549e-03
## 7152    1 0.0010638298 2.45673577 2.613549e-03
## 7153    1 0.0010638298 2.45673577 2.613549e-03
## 7154    1 0.0010638298 2.45673577 2.613549e-03
## 7155    1 0.0010638298 2.45673577 2.613549e-03
## 7156    1 0.0010638298 2.45673577 2.613549e-03
## 7157    1 0.0010638298 2.45673577 2.613549e-03
## 7158    1 0.0010638298 2.45673577 2.613549e-03
## 7159    1 0.0010638298 2.45673577 2.613549e-03
## 7160    1 0.0010638298 2.45673577 2.613549e-03
## 7161    1 0.0010638298 2.45673577 2.613549e-03
## 7162    1 0.0010638298 2.45673577 2.613549e-03
## 7163    1 0.0010638298 2.45673577 2.613549e-03
## 7164    1 0.0010638298 2.45673577 2.613549e-03
## 7165    1 0.0010638298 2.45673577 2.613549e-03
## 7166    1 0.0010638298 2.45673577 2.613549e-03
## 7167    1 0.0010638298 2.45673577 2.613549e-03
## 7168    1 0.0010638298 2.45673577 2.613549e-03
## 7169    1 0.0010638298 2.45673577 2.613549e-03
## 7170    1 0.0010638298 2.45673577 2.613549e-03
## 7171    1 0.0010638298 2.45673577 2.613549e-03
## 7172    1 0.0010638298 2.45673577 2.613549e-03
## 7173    1 0.0010638298 2.45673577 2.613549e-03
## 7174    1 0.0010638298 2.45673577 2.613549e-03
## 7175    1 0.0010638298 2.45673577 2.613549e-03
## 7176    1 0.0010638298 2.45673577 2.613549e-03
## 7177    1 0.0010638298 2.45673577 2.613549e-03
## 7178    1 0.0010638298 2.45673577 2.613549e-03
## 7179    1 0.0010638298 2.45673577 2.613549e-03
## 7180    1 0.0010638298 2.45673577 2.613549e-03
## 7181    6 0.0051369863 0.51082562 2.624104e-03
## 7182    5 0.0139664804 0.18805223 2.626428e-03
## 7183    1 0.0012121212 2.16905370 2.629156e-03
## 7184    1 0.0012121212 2.16905370 2.629156e-03
## 7185    1 0.0012121212 2.16905370 2.629156e-03
## 7186    1 0.0012121212 2.16905370 2.629156e-03
## 7187    1 0.0012121212 2.16905370 2.629156e-03
## 7188    1 0.0012121212 2.16905370 2.629156e-03
## 7189    1 0.0012121212 2.16905370 2.629156e-03
## 7190    1 0.0012121212 2.16905370 2.629156e-03
## 7191    1 0.0012121212 2.16905370 2.629156e-03
## 7192    1 0.0012121212 2.16905370 2.629156e-03
## 7193    1 0.0012121212 2.16905370 2.629156e-03
## 7194    1 0.0012121212 2.16905370 2.629156e-03
## 7195    1 0.0012121212 2.16905370 2.629156e-03
## 7196    1 0.0012121212 2.16905370 2.629156e-03
## 7197    1 0.0012121212 2.16905370 2.629156e-03
## 7198    1 0.0012121212 2.16905370 2.629156e-03
## 7199    1 0.0012121212 2.16905370 2.629156e-03
## 7200    1 0.0012121212 2.16905370 2.629156e-03
## 7201    1 0.0012121212 2.16905370 2.629156e-03
## 7202    1 0.0024570025 1.07044141 2.630077e-03
## 7203    1 0.0024570025 1.07044141 2.630077e-03
## 7204    1 0.0024570025 1.07044141 2.630077e-03
## 7205    1 0.0024570025 1.07044141 2.630077e-03
## 7206    1 0.0024570025 1.07044141 2.630077e-03
## 7207    1 0.0024570025 1.07044141 2.630077e-03
## 7208    1 0.0024570025 1.07044141 2.630077e-03
## 7209    1 0.0024570025 1.07044141 2.630077e-03
## 7210    2 0.0026560425 0.99039870 2.630541e-03
## 7211    4 0.0047058824 0.55961579 2.633486e-03
## 7212    2 0.0022779043 1.15745279 2.636567e-03
## 7213    2 0.0022779043 1.15745279 2.636567e-03
## 7214    2 0.0022779043 1.15745279 2.636567e-03
## 7215    2 0.0022779043 1.15745279 2.636567e-03
## 7216    3 0.0033707865 0.78275934 2.638515e-03
## 7217    3 0.0033707865 0.78275934 2.638515e-03
## 7218    1 0.0017889088 1.47590652 2.640262e-03
## 7219    1 0.0017889088 1.47590652 2.640262e-03
## 7220    1 0.0017889088 1.47590652 2.640262e-03
## 7221    1 0.0017889088 1.47590652 2.640262e-03
## 7222    1 0.0017889088 1.47590652 2.640262e-03
## 7223    1 0.0017889088 1.47590652 2.640262e-03
## 7224    1 0.0017889088 1.47590652 2.640262e-03
## 7225    1 0.0017889088 1.47590652 2.640262e-03
## 7226    1 0.0017889088 1.47590652 2.640262e-03
## 7227    1 0.0017889088 1.47590652 2.640262e-03
## 7228    1 0.0017889088 1.47590652 2.640262e-03
## 7229    1 0.0017889088 1.47590652 2.640262e-03
## 7230    1 0.0017889088 1.47590652 2.640262e-03
## 7231    1 0.0017889088 1.47590652 2.640262e-03
## 7232    1 0.0017889088 1.47590652 2.640262e-03
## 7233    2 0.0026666667 0.99039870 2.641063e-03
## 7234    2 0.0026666667 0.99039870 2.641063e-03
## 7235    5 0.0051706308 0.51082562 2.641291e-03
## 7236    2 0.0047281324 0.55961579 2.645938e-03
## 7237    2 0.0047281324 0.55961579 2.645938e-03
## 7238    2 0.0047281324 0.55961579 2.645938e-03
## 7239    7 0.0078651685 0.33647224 2.646411e-03
## 7240    3 0.0039840637 0.66497630 2.649308e-03
## 7241    3 0.0021186441 1.25276297 2.654159e-03
## 7242    3 0.0016510732 1.60943791 2.657300e-03
## 7243    3 0.0016510732 1.60943791 2.657300e-03
## 7244    3 0.0016510732 1.60943791 2.657300e-03
## 7245    3 0.0016510732 1.60943791 2.657300e-03
## 7246    3 0.0016510732 1.60943791 2.657300e-03
## 7247    3 0.0016510732 1.60943791 2.657300e-03
## 7248    3 0.0016510732 1.60943791 2.657300e-03
## 7249    3 0.0016510732 1.60943791 2.657300e-03
## 7250    3 0.0016510732 1.60943791 2.657300e-03
## 7251    3 0.0016510732 1.60943791 2.657300e-03
## 7252    3 0.0019595036 1.35812348 2.661248e-03
## 7253    3 0.0019595036 1.35812348 2.661248e-03
## 7254    4 0.0024875622 1.07044141 2.662790e-03
## 7255    1 0.0029069767 0.91629073 2.663636e-03
## 7256    2 0.0021276596 1.25276297 2.665453e-03
## 7257    2 0.0021276596 1.25276297 2.665453e-03
## 7258    2 0.0021276596 1.25276297 2.665453e-03
## 7259    2 0.0021276596 1.25276297 2.665453e-03
## 7260    2 0.0021276596 1.25276297 2.665453e-03
## 7261    1 0.0024937656 1.07044141 2.669430e-03
## 7262    1 0.0024937656 1.07044141 2.669430e-03
## 7263    1 0.0024937656 1.07044141 2.669430e-03
## 7264    1 0.0024937656 1.07044141 2.669430e-03
## 7265    1 0.0024937656 1.07044141 2.669430e-03
## 7266    1 0.0024937656 1.07044141 2.669430e-03
## 7267    1 0.0024937656 1.07044141 2.669430e-03
## 7268    1 0.0024937656 1.07044141 2.669430e-03
## 7269    1 0.0024937656 1.07044141 2.669430e-03
## 7270    1 0.0026954178 0.99039870 2.669538e-03
## 7271    1 0.0026954178 0.99039870 2.669538e-03
## 7272    1 0.0026954178 0.99039870 2.669538e-03
## 7273    1 0.0026954178 0.99039870 2.669538e-03
## 7274    1 0.0026954178 0.99039870 2.669538e-03
## 7275    1 0.0026954178 0.99039870 2.669538e-03
## 7276    1 0.0026954178 0.99039870 2.669538e-03
## 7277    1 0.0026954178 0.99039870 2.669538e-03
## 7278    3 0.0070921986 0.37729423 2.675846e-03
## 7279    3 0.0070921986 0.37729423 2.675846e-03
## 7280    2 0.0043859649 0.61090908 2.679426e-03
## 7281    2 0.0043859649 0.61090908 2.679426e-03
## 7282    1 0.0013774105 1.94591015 2.680317e-03
## 7283    1 0.0013774105 1.94591015 2.680317e-03
## 7284    1 0.0013774105 1.94591015 2.680317e-03
## 7285    1 0.0013774105 1.94591015 2.680317e-03
## 7286    1 0.0013774105 1.94591015 2.680317e-03
## 7287    1 0.0013774105 1.94591015 2.680317e-03
## 7288    1 0.0013774105 1.94591015 2.680317e-03
## 7289    1 0.0013774105 1.94591015 2.680317e-03
## 7290    1 0.0013774105 1.94591015 2.680317e-03
## 7291    1 0.0013774105 1.94591015 2.680317e-03
## 7292    1 0.0013774105 1.94591015 2.680317e-03
## 7293    1 0.0013774105 1.94591015 2.680317e-03
## 7294    1 0.0013774105 1.94591015 2.680317e-03
## 7295    1 0.0013774105 1.94591015 2.680317e-03
## 7296    1 0.0013774105 1.94591015 2.680317e-03
## 7297    1 0.0013774105 1.94591015 2.680317e-03
## 7298    4 0.0034246575 0.78275934 2.680683e-03
## 7299    4 0.0034246575 0.78275934 2.680683e-03
## 7300    2 0.0034246575 0.78275934 2.680683e-03
## 7301    2 0.0034246575 0.78275934 2.680683e-03
## 7302    2 0.0034246575 0.78275934 2.680683e-03
## 7303    1 0.0034246575 0.78275934 2.680683e-03
## 7304    1 0.0034246575 0.78275934 2.680683e-03
## 7305    1 0.0034246575 0.78275934 2.680683e-03
## 7306    1 0.0034246575 0.78275934 2.680683e-03
## 7307    3 0.0015228426 1.76358859 2.685668e-03
## 7308    3 0.0015228426 1.76358859 2.685668e-03
## 7309    7 0.0044025157 0.61090908 2.689537e-03
## 7310    7 0.0044025157 0.61090908 2.689537e-03
## 7311    8 0.0044028619 0.61090908 2.689748e-03
## 7312    6 0.0080000000 0.33647224 2.691778e-03
## 7313    4 0.0025157233 1.07044141 2.692934e-03
## 7314    4 0.0025157233 1.07044141 2.692934e-03
## 7315    2 0.0052770449 0.51082562 2.695650e-03
## 7316    2 0.0012437811 2.16905370 2.697828e-03
## 7317    2 0.0012437811 2.16905370 2.697828e-03
## 7318    2 0.0012437811 2.16905370 2.697828e-03
## 7319    2 0.0012437811 2.16905370 2.697828e-03
## 7320    2 0.0012437811 2.16905370 2.697828e-03
## 7321    2 0.0012437811 2.16905370 2.697828e-03
## 7322    2 0.0012437811 2.16905370 2.697828e-03
## 7323    2 0.0012437811 2.16905370 2.697828e-03
## 7324    2 0.0012437811 2.16905370 2.697828e-03
## 7325    2 0.0012437811 2.16905370 2.697828e-03
## 7326    2 0.0012437811 2.16905370 2.697828e-03
## 7327    2 0.0012437811 2.16905370 2.697828e-03
## 7328    2 0.0058139535 0.46430561 2.699451e-03
## 7329    2 0.0090909091 0.29725152 2.702287e-03
## 7330    3 0.0031914894 0.84729786 2.704142e-03
## 7331    3 0.0031914894 0.84729786 2.704142e-03
## 7332    2 0.0011007155 2.45673577 2.704167e-03
## 7333    2 0.0011007155 2.45673577 2.704167e-03
## 7334    2 0.0011007155 2.45673577 2.704167e-03
## 7335    2 0.0011007155 2.45673577 2.704167e-03
## 7336    2 0.0011007155 2.45673577 2.704167e-03
## 7337    2 0.0011007155 2.45673577 2.704167e-03
## 7338    2 0.0011007155 2.45673577 2.704167e-03
## 7339    2 0.0011007155 2.45673577 2.704167e-03
## 7340    2 0.0011007155 2.45673577 2.704167e-03
## 7341    2 0.0011007155 2.45673577 2.704167e-03
## 7342    2 0.0011007155 2.45673577 2.704167e-03
## 7343    2 0.0011007155 2.45673577 2.704167e-03
## 7344    2 0.0011007155 2.45673577 2.704167e-03
## 7345    2 0.0011007155 2.45673577 2.704167e-03
## 7346    2 0.0011007155 2.45673577 2.704167e-03
## 7347    2 0.0011007155 2.45673577 2.704167e-03
## 7348    1 0.0011013216 2.45673577 2.705656e-03
## 7349    1 0.0011013216 2.45673577 2.705656e-03
## 7350    1 0.0011013216 2.45673577 2.705656e-03
## 7351    1 0.0011013216 2.45673577 2.705656e-03
## 7352    1 0.0011013216 2.45673577 2.705656e-03
## 7353    1 0.0011013216 2.45673577 2.705656e-03
## 7354    1 0.0011013216 2.45673577 2.705656e-03
## 7355    1 0.0011013216 2.45673577 2.705656e-03
## 7356    1 0.0011013216 2.45673577 2.705656e-03
## 7357    1 0.0011013216 2.45673577 2.705656e-03
## 7358    1 0.0011013216 2.45673577 2.705656e-03
## 7359    1 0.0011013216 2.45673577 2.705656e-03
## 7360    1 0.0011013216 2.45673577 2.705656e-03
## 7361    1 0.0011013216 2.45673577 2.705656e-03
## 7362    1 0.0011013216 2.45673577 2.705656e-03
## 7363    1 0.0011013216 2.45673577 2.705656e-03
## 7364    1 0.0011013216 2.45673577 2.705656e-03
## 7365    1 0.0011013216 2.45673577 2.705656e-03
## 7366    1 0.0011013216 2.45673577 2.705656e-03
## 7367    1 0.0011013216 2.45673577 2.705656e-03
## 7368    1 0.0011013216 2.45673577 2.705656e-03
## 7369    1 0.0011013216 2.45673577 2.705656e-03
## 7370    1 0.0011013216 2.45673577 2.705656e-03
## 7371    1 0.0011013216 2.45673577 2.705656e-03
## 7372    1 0.0011013216 2.45673577 2.705656e-03
## 7373    1 0.0011013216 2.45673577 2.705656e-03
## 7374    1 0.0011013216 2.45673577 2.705656e-03
## 7375    1 0.0011013216 2.45673577 2.705656e-03
## 7376    1 0.0011013216 2.45673577 2.705656e-03
## 7377    1 0.0011013216 2.45673577 2.705656e-03
## 7378    1 0.0034602076 0.78275934 2.708510e-03
## 7379    1 0.0034602076 0.78275934 2.708510e-03
## 7380    5 0.0053191489 0.51082562 2.717158e-03
## 7381    5 0.0027517887 0.99039870 2.725368e-03
## 7382    3 0.0048701299 0.55961579 2.725402e-03
## 7383    2 0.0012578616 2.16905370 2.728369e-03
## 7384    2 0.0012578616 2.16905370 2.728369e-03
## 7385    2 0.0012578616 2.16905370 2.728369e-03
## 7386    2 0.0012578616 2.16905370 2.728369e-03
## 7387    2 0.0012578616 2.16905370 2.728369e-03
## 7388    2 0.0012578616 2.16905370 2.728369e-03
## 7389    2 0.0012578616 2.16905370 2.728369e-03
## 7390    2 0.0012578616 2.16905370 2.728369e-03
## 7391    2 0.0012578616 2.16905370 2.728369e-03
## 7392    2 0.0012578616 2.16905370 2.728369e-03
## 7393    2 0.0012578616 2.16905370 2.728369e-03
## 7394    2 0.0012578616 2.16905370 2.728369e-03
## 7395    2 0.0012578616 2.16905370 2.728369e-03
## 7396    2 0.0012578616 2.16905370 2.728369e-03
## 7397    2 0.0027548209 0.99039870 2.728371e-03
## 7398    2 0.0027548209 0.99039870 2.728371e-03
## 7399    1 0.0029850746 0.91629073 2.735196e-03
## 7400    1 0.0029850746 0.91629073 2.735196e-03
## 7401    1 0.0029850746 0.91629073 2.735196e-03
## 7402    1 0.0029850746 0.91629073 2.735196e-03
## 7403    1 0.0029850746 0.91629073 2.735196e-03
## 7404    1 0.0029850746 0.91629073 2.735196e-03
## 7405    1 0.0029850746 0.91629073 2.735196e-03
## 7406    1 0.0023640662 1.15745279 2.736295e-03
## 7407    1 0.0023640662 1.15745279 2.736295e-03
## 7408    1 0.0018552876 1.47590652 2.738231e-03
## 7409    1 0.0018552876 1.47590652 2.738231e-03
## 7410    1 0.0018552876 1.47590652 2.738231e-03
## 7411    1 0.0018552876 1.47590652 2.738231e-03
## 7412    1 0.0018552876 1.47590652 2.738231e-03
## 7413    1 0.0018552876 1.47590652 2.738231e-03
## 7414    1 0.0018552876 1.47590652 2.738231e-03
## 7415    1 0.0018552876 1.47590652 2.738231e-03
## 7416    1 0.0018552876 1.47590652 2.738231e-03
## 7417    1 0.0021929825 1.25276297 2.747287e-03
## 7418    1 0.0021929825 1.25276297 2.747287e-03
## 7419    1 0.0021929825 1.25276297 2.747287e-03
## 7420    1 0.0021929825 1.25276297 2.747287e-03
## 7421    1 0.0021929825 1.25276297 2.747287e-03
## 7422    2 0.0014124294 1.94591015 2.748461e-03
## 7423    2 0.0014124294 1.94591015 2.748461e-03
## 7424    2 0.0014124294 1.94591015 2.748461e-03
## 7425    2 0.0014124294 1.94591015 2.748461e-03
## 7426    2 0.0014124294 1.94591015 2.748461e-03
## 7427    2 0.0014124294 1.94591015 2.748461e-03
## 7428    2 0.0014124294 1.94591015 2.748461e-03
## 7429    2 0.0014124294 1.94591015 2.748461e-03
## 7430    2 0.0014124294 1.94591015 2.748461e-03
## 7431    2 0.0014124294 1.94591015 2.748461e-03
## 7432    2 0.0014124294 1.94591015 2.748461e-03
## 7433    2 0.0014124294 1.94591015 2.748461e-03
## 7434    2 0.0014124294 1.94591015 2.748461e-03
## 7435    2 0.0014124294 1.94591015 2.748461e-03
## 7436    2 0.0014124294 1.94591015 2.748461e-03
## 7437    2 0.0020242915 1.35812348 2.749238e-03
## 7438    2 0.0020242915 1.35812348 2.749238e-03
## 7439    2 0.0020242915 1.35812348 2.749238e-03
## 7440    2 0.0020242915 1.35812348 2.749238e-03
## 7441    2 0.0020242915 1.35812348 2.749238e-03
## 7442    2 0.0020242915 1.35812348 2.749238e-03
## 7443    2 0.0020242915 1.35812348 2.749238e-03
## 7444    3 0.0025684932 1.07044141 2.749421e-03
## 7445    2 0.0049140049 0.55961579 2.749955e-03
## 7446    2 0.0049140049 0.55961579 2.749955e-03
## 7447    4 0.0041365047 0.66497630 2.750678e-03
## 7448    2 0.0032467532 0.84729786 2.750967e-03
## 7449    2 0.0032467532 0.84729786 2.750967e-03
## 7450    3 0.0018656716 1.47590652 2.753557e-03
## 7451    3 0.0018656716 1.47590652 2.753557e-03
## 7452    3 0.0018656716 1.47590652 2.753557e-03
## 7453    2 0.0053908356 0.51082562 2.753777e-03
## 7454    2 0.0053908356 0.51082562 2.753777e-03
## 7455    2 0.0017123288 1.60943791 2.755887e-03
## 7456    2 0.0017123288 1.60943791 2.755887e-03
## 7457    2 0.0017123288 1.60943791 2.755887e-03
## 7458    2 0.0017123288 1.60943791 2.755887e-03
## 7459    2 0.0017123288 1.60943791 2.755887e-03
## 7460    2 0.0017123288 1.60943791 2.755887e-03
## 7461    1 0.0017123288 1.60943791 2.755887e-03
## 7462    1 0.0017123288 1.60943791 2.755887e-03
## 7463    1 0.0017123288 1.60943791 2.755887e-03
## 7464    1 0.0017123288 1.60943791 2.755887e-03
## 7465    1 0.0017123288 1.60943791 2.755887e-03
## 7466    1 0.0017123288 1.60943791 2.755887e-03
## 7467    1 0.0017123288 1.60943791 2.755887e-03
## 7468    1 0.0017123288 1.60943791 2.755887e-03
## 7469    1 0.0017123288 1.60943791 2.755887e-03
## 7470    1 0.0017123288 1.60943791 2.755887e-03
## 7471    1 0.0017123288 1.60943791 2.755887e-03
## 7472    1 0.0017123288 1.60943791 2.755887e-03
## 7473    4 0.0020304569 1.35812348 2.757611e-03
## 7474    4 0.0022014309 1.25276297 2.757871e-03
## 7475    4 0.0022014309 1.25276297 2.757871e-03
## 7476    2 0.0022026432 1.25276297 2.759390e-03
## 7477    2 0.0022026432 1.25276297 2.759390e-03
## 7478    1 0.0011235955 2.45673577 2.760377e-03
## 7479    1 0.0011235955 2.45673577 2.760377e-03
## 7480    1 0.0011235955 2.45673577 2.760377e-03
## 7481    1 0.0011235955 2.45673577 2.760377e-03
## 7482    1 0.0011235955 2.45673577 2.760377e-03
## 7483    1 0.0011235955 2.45673577 2.760377e-03
## 7484    1 0.0011235955 2.45673577 2.760377e-03
## 7485    1 0.0011235955 2.45673577 2.760377e-03
## 7486    1 0.0011235955 2.45673577 2.760377e-03
## 7487    1 0.0011235955 2.45673577 2.760377e-03
## 7488    1 0.0011235955 2.45673577 2.760377e-03
## 7489    1 0.0011235955 2.45673577 2.760377e-03
## 7490    1 0.0011235955 2.45673577 2.760377e-03
## 7491    1 0.0011235955 2.45673577 2.760377e-03
## 7492    1 0.0011235955 2.45673577 2.760377e-03
## 7493    1 0.0011235955 2.45673577 2.760377e-03
## 7494    1 0.0011235955 2.45673577 2.760377e-03
## 7495    1 0.0011235955 2.45673577 2.760377e-03
## 7496    1 0.0011235955 2.45673577 2.760377e-03
## 7497    1 0.0011235955 2.45673577 2.760377e-03
## 7498    1 0.0011235955 2.45673577 2.760377e-03
## 7499    1 0.0011235955 2.45673577 2.760377e-03
## 7500    1 0.0011235955 2.45673577 2.760377e-03
## 7501    1 0.0011235955 2.45673577 2.760377e-03
## 7502    1 0.0011235955 2.45673577 2.760377e-03
## 7503    1 0.0011235955 2.45673577 2.760377e-03
## 7504    1 0.0011235955 2.45673577 2.760377e-03
## 7505    1 0.0011235955 2.45673577 2.760377e-03
## 7506    1 0.0011235955 2.45673577 2.760377e-03
## 7507    1 0.0011235955 2.45673577 2.760377e-03
## 7508    1 0.0011235955 2.45673577 2.760377e-03
## 7509    1 0.0011235955 2.45673577 2.760377e-03
## 7510    1 0.0011235955 2.45673577 2.760377e-03
## 7511    1 0.0011235955 2.45673577 2.760377e-03
## 7512    1 0.0011235955 2.45673577 2.760377e-03
## 7513    1 0.0011235955 2.45673577 2.760377e-03
## 7514    1 0.0011235955 2.45673577 2.760377e-03
## 7515    5 0.0035310734 0.78275934 2.763981e-03
## 7516    5 0.0035310734 0.78275934 2.763981e-03
## 7517    1 0.0027932961 0.99039870 2.766477e-03
## 7518    1 0.0027932961 0.99039870 2.766477e-03
## 7519    1 0.0027932961 0.99039870 2.766477e-03
## 7520    1 0.0027932961 0.99039870 2.766477e-03
## 7521    1 0.0027932961 0.99039870 2.766477e-03
## 7522    8 0.0106666667 0.25951120 2.768119e-03
## 7523    1 0.0045454545 0.61090908 2.776859e-03
## 7524    7 0.0038525041 0.72213472 2.782027e-03
## 7525    3 0.0030364372 0.91629073 2.782259e-03
## 7526    3 0.0030364372 0.91629073 2.782259e-03
## 7527    4 0.0045558087 0.61090908 2.783185e-03
## 7528    4 0.0045558087 0.61090908 2.783185e-03
## 7529    3 0.0018867925 1.47590652 2.784729e-03
## 7530    3 0.0018867925 1.47590652 2.784729e-03
## 7531    3 0.0018867925 1.47590652 2.784729e-03
## 7532    3 0.0018867925 1.47590652 2.784729e-03
## 7533    2 0.0049875312 0.55961579 2.791101e-03
## 7534    6 0.0033021464 0.84729786 2.797902e-03
## 7535    6 0.0033021464 0.84729786 2.797902e-03
## 7536    1 0.0011389522 2.45673577 2.798105e-03
## 7537    1 0.0011389522 2.45673577 2.798105e-03
## 7538    1 0.0011389522 2.45673577 2.798105e-03
## 7539    1 0.0011389522 2.45673577 2.798105e-03
## 7540    1 0.0011389522 2.45673577 2.798105e-03
## 7541    1 0.0011389522 2.45673577 2.798105e-03
## 7542    1 0.0011389522 2.45673577 2.798105e-03
## 7543    1 0.0011389522 2.45673577 2.798105e-03
## 7544    1 0.0011389522 2.45673577 2.798105e-03
## 7545    1 0.0011389522 2.45673577 2.798105e-03
## 7546    1 0.0011389522 2.45673577 2.798105e-03
## 7547    1 0.0011389522 2.45673577 2.798105e-03
## 7548    1 0.0011389522 2.45673577 2.798105e-03
## 7549    1 0.0011389522 2.45673577 2.798105e-03
## 7550    1 0.0011389522 2.45673577 2.798105e-03
## 7551    1 0.0011389522 2.45673577 2.798105e-03
## 7552    1 0.0011389522 2.45673577 2.798105e-03
## 7553    1 0.0011389522 2.45673577 2.798105e-03
## 7554    1 0.0011389522 2.45673577 2.798105e-03
## 7555    1 0.0011389522 2.45673577 2.798105e-03
## 7556    1 0.0011389522 2.45673577 2.798105e-03
## 7557    1 0.0011389522 2.45673577 2.798105e-03
## 7558    1 0.0011389522 2.45673577 2.798105e-03
## 7559    1 0.0011389522 2.45673577 2.798105e-03
## 7560    1 0.0011389522 2.45673577 2.798105e-03
## 7561    1 0.0011389522 2.45673577 2.798105e-03
## 7562    1 0.0011389522 2.45673577 2.798105e-03
## 7563    2 0.0035778175 0.78275934 2.800570e-03
## 7564    2 0.0035778175 0.78275934 2.800570e-03
## 7565    2 0.0035778175 0.78275934 2.800570e-03
## 7566    2 0.0024242424 1.15745279 2.805946e-03
## 7567    2 0.0024242424 1.15745279 2.805946e-03
## 7568    2 0.0024242424 1.15745279 2.805946e-03
## 7569    2 0.0024242424 1.15745279 2.805946e-03
## 7570    2 0.0020682523 1.35812348 2.808942e-03
## 7571    2 0.0020682523 1.35812348 2.808942e-03
## 7572   11 0.0060539351 0.46430561 2.810876e-03
## 7573    5 0.0060606061 0.46430561 2.813973e-03
## 7574    2 0.0022471910 1.25276297 2.815198e-03
## 7575    2 0.0022471910 1.25276297 2.815198e-03
## 7576    3 0.0083798883 0.33647224 2.819600e-03
## 7577    3 0.0083798883 0.33647224 2.819600e-03
## 7578    1 0.0026385224 1.07044141 2.824384e-03
## 7579    1 0.0026385224 1.07044141 2.824384e-03
## 7580    1 0.0026385224 1.07044141 2.824384e-03
## 7581    1 0.0026385224 1.07044141 2.824384e-03
## 7582    2 0.0013063357 2.16905370 2.833512e-03
## 7583    2 0.0013063357 2.16905370 2.833512e-03
## 7584    2 0.0013063357 2.16905370 2.833512e-03
## 7585    2 0.0013063357 2.16905370 2.833512e-03
## 7586    2 0.0013063357 2.16905370 2.833512e-03
## 7587    2 0.0013063357 2.16905370 2.833512e-03
## 7588    2 0.0013063357 2.16905370 2.833512e-03
## 7589   10 0.0050761421 0.55961579 2.840689e-03
## 7590    3 0.0031023785 0.91629073 2.842681e-03
## 7591    2 0.0026560425 1.07044141 2.843138e-03
## 7592    2 0.0026560425 1.07044141 2.843138e-03
## 7593    1 0.0024570025 1.15745279 2.843864e-03
## 7594    1 0.0024570025 1.15745279 2.843864e-03
## 7595    1 0.0024570025 1.15745279 2.843864e-03
## 7596    1 0.0024570025 1.15745279 2.843864e-03
## 7597    1 0.0024570025 1.15745279 2.843864e-03
## 7598    1 0.0024570025 1.15745279 2.843864e-03
## 7599    5 0.0031094527 0.91629073 2.849163e-03
## 7600    2 0.0022779043 1.25276297 2.853674e-03
## 7601    2 0.0022779043 1.25276297 2.853674e-03
## 7602    2 0.0022779043 1.25276297 2.853674e-03
## 7603    2 0.0022779043 1.25276297 2.853674e-03
## 7604    2 0.0026666667 1.07044141 2.854510e-03
## 7605    2 0.0026666667 1.07044141 2.854510e-03
## 7606    2 0.0026666667 1.07044141 2.854510e-03
## 7607    9 0.0055970149 0.51082562 2.859099e-03
## 7608    1 0.0016233766 1.76358859 2.862968e-03
## 7609    1 0.0016233766 1.76358859 2.862968e-03
## 7610    1 0.0016233766 1.76358859 2.862968e-03
## 7611    1 0.0016233766 1.76358859 2.862968e-03
## 7612    1 0.0016233766 1.76358859 2.862968e-03
## 7613    1 0.0016233766 1.76358859 2.862968e-03
## 7614    1 0.0016233766 1.76358859 2.862968e-03
## 7615    1 0.0016233766 1.76358859 2.862968e-03
## 7616    1 0.0016233766 1.76358859 2.862968e-03
## 7617    1 0.0016233766 1.76358859 2.862968e-03
## 7618    1 0.0016233766 1.76358859 2.862968e-03
## 7619    6 0.0051369863 0.55961579 2.874739e-03
## 7620    3 0.0051369863 0.55961579 2.874739e-03
## 7621    3 0.0051369863 0.55961579 2.874739e-03
## 7622    3 0.0051369863 0.55961579 2.874739e-03
## 7623    3 0.0051369863 0.55961579 2.874739e-03
## 7624    4 0.0047058824 0.61090908 2.874866e-03
## 7625    3 0.0021186441 1.35812348 2.877380e-03
## 7626    1 0.0029069767 0.99039870 2.879066e-03
## 7627    1 0.0017889088 1.60943791 2.879138e-03
## 7628    1 0.0017889088 1.60943791 2.879138e-03
## 7629    1 0.0017889088 1.60943791 2.879138e-03
## 7630    1 0.0017889088 1.60943791 2.879138e-03
## 7631    1 0.0017889088 1.60943791 2.879138e-03
## 7632    1 0.0017889088 1.60943791 2.879138e-03
## 7633    1 0.0017889088 1.60943791 2.879138e-03
## 7634    1 0.0017889088 1.60943791 2.879138e-03
## 7635    1 0.0017889088 1.60943791 2.879138e-03
## 7636    1 0.0017889088 1.60943791 2.879138e-03
## 7637    1 0.0017889088 1.60943791 2.879138e-03
## 7638    1 0.0017889088 1.60943791 2.879138e-03
## 7639    1 0.0017889088 1.60943791 2.879138e-03
## 7640    4 0.0024875622 1.15745279 2.879236e-03
## 7641    1 0.0013280212 2.16905370 2.880549e-03
## 7642    1 0.0013280212 2.16905370 2.880549e-03
## 7643    1 0.0013280212 2.16905370 2.880549e-03
## 7644    1 0.0013280212 2.16905370 2.880549e-03
## 7645    1 0.0013280212 2.16905370 2.880549e-03
## 7646    1 0.0013280212 2.16905370 2.880549e-03
## 7647    1 0.0013280212 2.16905370 2.880549e-03
## 7648    1 0.0013280212 2.16905370 2.880549e-03
## 7649    1 0.0013280212 2.16905370 2.880549e-03
## 7650    1 0.0013280212 2.16905370 2.880549e-03
## 7651    1 0.0013280212 2.16905370 2.880549e-03
## 7652    1 0.0013280212 2.16905370 2.880549e-03
## 7653    1 0.0013280212 2.16905370 2.880549e-03
## 7654    1 0.0013280212 2.16905370 2.880549e-03
## 7655    1 0.0013280212 2.16905370 2.880549e-03
## 7656    1 0.0013280212 2.16905370 2.880549e-03
## 7657    1 0.0013280212 2.16905370 2.880549e-03
## 7658    1 0.0013280212 2.16905370 2.880549e-03
## 7659    1 0.0013280212 2.16905370 2.880549e-03
## 7660    1 0.0013280212 2.16905370 2.880549e-03
## 7661    1 0.0013280212 2.16905370 2.880549e-03
## 7662    5 0.0031446541 0.91629073 2.881417e-03
## 7663    5 0.0031446541 0.91629073 2.881417e-03
## 7664    1 0.0026954178 1.07044141 2.885287e-03
## 7665    1 0.0026954178 1.07044141 2.885287e-03
## 7666    1 0.0026954178 1.07044141 2.885287e-03
## 7667    1 0.0026954178 1.07044141 2.885287e-03
## 7668    1 0.0026954178 1.07044141 2.885287e-03
## 7669    1 0.0026954178 1.07044141 2.885287e-03
## 7670    1 0.0026954178 1.07044141 2.885287e-03
## 7671    1 0.0024937656 1.15745279 2.886416e-03
## 7672    1 0.0024937656 1.15745279 2.886416e-03
## 7673    1 0.0024937656 1.15745279 2.886416e-03
## 7674    3 0.0040000000 0.72213472 2.888539e-03
## 7675    2 0.0021276596 1.35812348 2.889624e-03
## 7676    2 0.0021276596 1.35812348 2.889624e-03
## 7677    2 0.0021276596 1.35812348 2.889624e-03
## 7678    2 0.0021276596 1.35812348 2.889624e-03
## 7679    2 0.0021276596 1.35812348 2.889624e-03
## 7680    2 0.0021276596 1.35812348 2.889624e-03
## 7681    2 0.0021276596 1.35812348 2.889624e-03
## 7682    2 0.0021276596 1.35812348 2.889624e-03
## 7683    1 0.0011764706 2.45673577 2.890277e-03
## 7684    1 0.0011764706 2.45673577 2.890277e-03
## 7685    1 0.0011764706 2.45673577 2.890277e-03
## 7686    1 0.0011764706 2.45673577 2.890277e-03
## 7687    1 0.0011764706 2.45673577 2.890277e-03
## 7688    1 0.0011764706 2.45673577 2.890277e-03
## 7689    1 0.0011764706 2.45673577 2.890277e-03
## 7690    1 0.0011764706 2.45673577 2.890277e-03
## 7691    1 0.0011764706 2.45673577 2.890277e-03
## 7692    1 0.0011764706 2.45673577 2.890277e-03
## 7693    1 0.0011764706 2.45673577 2.890277e-03
## 7694    1 0.0011764706 2.45673577 2.890277e-03
## 7695    1 0.0011764706 2.45673577 2.890277e-03
## 7696    1 0.0011764706 2.45673577 2.890277e-03
## 7697    1 0.0011764706 2.45673577 2.890277e-03
## 7698    1 0.0011764706 2.45673577 2.890277e-03
## 7699    1 0.0011764706 2.45673577 2.890277e-03
## 7700    1 0.0011764706 2.45673577 2.890277e-03
## 7701    1 0.0011764706 2.45673577 2.890277e-03
## 7702    1 0.0011764706 2.45673577 2.890277e-03
## 7703    1 0.0011764706 2.45673577 2.890277e-03
## 7704    1 0.0011764706 2.45673577 2.890277e-03
## 7705    1 0.0011764706 2.45673577 2.890277e-03
## 7706    1 0.0011764706 2.45673577 2.890277e-03
## 7707    1 0.0011764706 2.45673577 2.890277e-03
## 7708    1 0.0011764706 2.45673577 2.890277e-03
## 7709    1 0.0013333333 2.16905370 2.892072e-03
## 7710    1 0.0013333333 2.16905370 2.892072e-03
## 7711    1 0.0013333333 2.16905370 2.892072e-03
## 7712    1 0.0013333333 2.16905370 2.892072e-03
## 7713    1 0.0013333333 2.16905370 2.892072e-03
## 7714    1 0.0013333333 2.16905370 2.892072e-03
## 7715    1 0.0013333333 2.16905370 2.892072e-03
## 7716    1 0.0013333333 2.16905370 2.892072e-03
## 7717    1 0.0013333333 2.16905370 2.892072e-03
## 7718    1 0.0013333333 2.16905370 2.892072e-03
## 7719    1 0.0013333333 2.16905370 2.892072e-03
## 7720    1 0.0013333333 2.16905370 2.892072e-03
## 7721    1 0.0013333333 2.16905370 2.892072e-03
## 7722    1 0.0013333333 2.16905370 2.892072e-03
## 7723    1 0.0013333333 2.16905370 2.892072e-03
## 7724    1 0.0013333333 2.16905370 2.892072e-03
## 7725    1 0.0013333333 2.16905370 2.892072e-03
## 7726    1 0.0013333333 2.16905370 2.892072e-03
## 7727    1 0.0013333333 2.16905370 2.892072e-03
## 7728    1 0.0013333333 2.16905370 2.892072e-03
## 7729    1 0.0013333333 2.16905370 2.892072e-03
## 7730    1 0.0013333333 2.16905370 2.892072e-03
## 7731    1 0.0013333333 2.16905370 2.892072e-03
## 7732    1 0.0013333333 2.16905370 2.892072e-03
## 7733    1 0.0013333333 2.16905370 2.892072e-03
## 7734    1 0.0013333333 2.16905370 2.892072e-03
## 7735    1 0.0013333333 2.16905370 2.892072e-03
## 7736    1 0.0013333333 2.16905370 2.892072e-03
## 7737    1 0.0013333333 2.16905370 2.892072e-03
## 7738    1 0.0013333333 2.16905370 2.892072e-03
## 7739    1 0.0013333333 2.16905370 2.892072e-03
## 7740    1 0.0013333333 2.16905370 2.892072e-03
## 7741    1 0.0013333333 2.16905370 2.892072e-03
## 7742    1 0.0013333333 2.16905370 2.892072e-03
## 7743    1 0.0013333333 2.16905370 2.892072e-03
## 7744    3 0.0034168565 0.84729786 2.895095e-03
## 7745    3 0.0034168565 0.84729786 2.895095e-03
## 7746    1 0.0010121457 2.86220088 2.896964e-03
## 7747    1 0.0010121457 2.86220088 2.896964e-03
## 7748    1 0.0010121457 2.86220088 2.896964e-03
## 7749    1 0.0010121457 2.86220088 2.896964e-03
## 7750    1 0.0010121457 2.86220088 2.896964e-03
## 7751    1 0.0010121457 2.86220088 2.896964e-03
## 7752    1 0.0010121457 2.86220088 2.896964e-03
## 7753    1 0.0010121457 2.86220088 2.896964e-03
## 7754    1 0.0010121457 2.86220088 2.896964e-03
## 7755    1 0.0010121457 2.86220088 2.896964e-03
## 7756    1 0.0010121457 2.86220088 2.896964e-03
## 7757    1 0.0010121457 2.86220088 2.896964e-03
## 7758    1 0.0010121457 2.86220088 2.896964e-03
## 7759    1 0.0010121457 2.86220088 2.896964e-03
## 7760    1 0.0010121457 2.86220088 2.896964e-03
## 7761    1 0.0010121457 2.86220088 2.896964e-03
## 7762    1 0.0010121457 2.86220088 2.896964e-03
## 7763    1 0.0010121457 2.86220088 2.896964e-03
## 7764    1 0.0010121457 2.86220088 2.896964e-03
## 7765    1 0.0010121457 2.86220088 2.896964e-03
## 7766    1 0.0010121457 2.86220088 2.896964e-03
## 7767    1 0.0010121457 2.86220088 2.896964e-03
## 7768    1 0.0010121457 2.86220088 2.896964e-03
## 7769    1 0.0010121457 2.86220088 2.896964e-03
## 7770    1 0.0010121457 2.86220088 2.896964e-03
## 7771    1 0.0010121457 2.86220088 2.896964e-03
## 7772    1 0.0010121457 2.86220088 2.896964e-03
## 7773    1 0.0010121457 2.86220088 2.896964e-03
## 7774    1 0.0010121457 2.86220088 2.896964e-03
## 7775    1 0.0010121457 2.86220088 2.896964e-03
## 7776    1 0.0010121457 2.86220088 2.896964e-03
## 7777    1 0.0010121457 2.86220088 2.896964e-03
## 7778    1 0.0010121457 2.86220088 2.896964e-03
## 7779    1 0.0010121457 2.86220088 2.896964e-03
## 7780    1 0.0010121457 2.86220088 2.896964e-03
## 7781    1 0.0010121457 2.86220088 2.896964e-03
## 7782    1 0.0010121457 2.86220088 2.896964e-03
## 7783    1 0.0010121457 2.86220088 2.896964e-03
## 7784    1 0.0010121457 2.86220088 2.896964e-03
## 7785    1 0.0010121457 2.86220088 2.896964e-03
## 7786    1 0.0010121457 2.86220088 2.896964e-03
## 7787    1 0.0010121457 2.86220088 2.896964e-03
## 7788    1 0.0010121457 2.86220088 2.896964e-03
## 7789    1 0.0010121457 2.86220088 2.896964e-03
## 7790    1 0.0010121457 2.86220088 2.896964e-03
## 7791    1 0.0010121457 2.86220088 2.896964e-03
## 7792    1 0.0010121457 2.86220088 2.896964e-03
## 7793    1 0.0010121457 2.86220088 2.896964e-03
## 7794    1 0.0010121457 2.86220088 2.896964e-03
## 7795    1 0.0010121457 2.86220088 2.896964e-03
## 7796    1 0.0010121457 2.86220088 2.896964e-03
## 7797    1 0.0010121457 2.86220088 2.896964e-03
## 7798    8 0.0129870130 0.22314355 2.897968e-03
## 7799    1 0.0034246575 0.84729786 2.901705e-03
## 7800    1 0.0034246575 0.84729786 2.901705e-03
## 7801    1 0.0034246575 0.84729786 2.901705e-03
## 7802    2 0.0037105751 0.78275934 2.904487e-03
## 7803   11 0.0069182390 0.41985385 2.904649e-03
## 7804    2 0.0010152284 2.86220088 2.905788e-03
## 7805    2 0.0010152284 2.86220088 2.905788e-03
## 7806    2 0.0010152284 2.86220088 2.905788e-03
## 7807    2 0.0010152284 2.86220088 2.905788e-03
## 7808    2 0.0010152284 2.86220088 2.905788e-03
## 7809    2 0.0010152284 2.86220088 2.905788e-03
## 7810    2 0.0010152284 2.86220088 2.905788e-03
## 7811    2 0.0010152284 2.86220088 2.905788e-03
## 7812    2 0.0010152284 2.86220088 2.905788e-03
## 7813    2 0.0010152284 2.86220088 2.905788e-03
## 7814    2 0.0010152284 2.86220088 2.905788e-03
## 7815    2 0.0010152284 2.86220088 2.905788e-03
## 7816    2 0.0010152284 2.86220088 2.905788e-03
## 7817    2 0.0010152284 2.86220088 2.905788e-03
## 7818    2 0.0010152284 2.86220088 2.905788e-03
## 7819    2 0.0010152284 2.86220088 2.905788e-03
## 7820    2 0.0010152284 2.86220088 2.905788e-03
## 7821    2 0.0010152284 2.86220088 2.905788e-03
## 7822    2 0.0010152284 2.86220088 2.905788e-03
## 7823    2 0.0010152284 2.86220088 2.905788e-03
## 7824    2 0.0010152284 2.86220088 2.905788e-03
## 7825    2 0.0010152284 2.86220088 2.905788e-03
## 7826    2 0.0010152284 2.86220088 2.905788e-03
## 7827    3 0.0016510732 1.76358859 2.911814e-03
## 7828    3 0.0016510732 1.76358859 2.911814e-03
## 7829    3 0.0016510732 1.76358859 2.911814e-03
## 7830    2 0.0043859649 0.66497630 2.916563e-03
## 7831    4 0.0098280098 0.29725152 2.921391e-03
## 7832    4 0.0040485830 0.72213472 2.923622e-03
## 7833    3 0.0031914894 0.91629073 2.924332e-03
## 7834    3 0.0031914894 0.91629073 2.924332e-03
## 7835    3 0.0031914894 0.91629073 2.924332e-03
## 7836   11 0.0077683616 0.37729423 2.930958e-03
## 7837    1 0.0034602076 0.84729786 2.931827e-03
## 7838    1 0.0034602076 0.84729786 2.931827e-03
## 7839    1 0.0034602076 0.84729786 2.931827e-03
## 7840    1 0.0034602076 0.84729786 2.931827e-03
## 7841    4 0.0087719298 0.33647224 2.951511e-03
## 7842    4 0.0087719298 0.33647224 2.951511e-03
## 7843    2 0.0052770449 0.55961579 2.953118e-03
## 7844    1 0.0029850746 0.99039870 2.956414e-03
## 7845    1 0.0029850746 0.99039870 2.956414e-03
## 7846    1 0.0029850746 0.99039870 2.956414e-03
## 7847    1 0.0029850746 0.99039870 2.956414e-03
## 7848    1 0.0029850746 0.99039870 2.956414e-03
## 7849    1 0.0029850746 0.99039870 2.956414e-03
## 7850    1 0.0029850746 0.99039870 2.956414e-03
## 7851    1 0.0010341262 2.86220088 2.959877e-03
## 7852    1 0.0010341262 2.86220088 2.959877e-03
## 7853    1 0.0010341262 2.86220088 2.959877e-03
## 7854    1 0.0010341262 2.86220088 2.959877e-03
## 7855    1 0.0010341262 2.86220088 2.959877e-03
## 7856    1 0.0010341262 2.86220088 2.959877e-03
## 7857    1 0.0010341262 2.86220088 2.959877e-03
## 7858    1 0.0010341262 2.86220088 2.959877e-03
## 7859    1 0.0010341262 2.86220088 2.959877e-03
## 7860    1 0.0010341262 2.86220088 2.959877e-03
## 7861    1 0.0010341262 2.86220088 2.959877e-03
## 7862    1 0.0010341262 2.86220088 2.959877e-03
## 7863    1 0.0010341262 2.86220088 2.959877e-03
## 7864    1 0.0010341262 2.86220088 2.959877e-03
## 7865    1 0.0010341262 2.86220088 2.959877e-03
## 7866    1 0.0010341262 2.86220088 2.959877e-03
## 7867    1 0.0010341262 2.86220088 2.959877e-03
## 7868    1 0.0010341262 2.86220088 2.959877e-03
## 7869    1 0.0010341262 2.86220088 2.959877e-03
## 7870    1 0.0010341262 2.86220088 2.959877e-03
## 7871    1 0.0010341262 2.86220088 2.959877e-03
## 7872    1 0.0010341262 2.86220088 2.959877e-03
## 7873    1 0.0010341262 2.86220088 2.959877e-03
## 7874    1 0.0010341262 2.86220088 2.959877e-03
## 7875    1 0.0010341262 2.86220088 2.959877e-03
## 7876    1 0.0010341262 2.86220088 2.959877e-03
## 7877    1 0.0010341262 2.86220088 2.959877e-03
## 7878    1 0.0010341262 2.86220088 2.959877e-03
## 7879    1 0.0010341262 2.86220088 2.959877e-03
## 7880    1 0.0010341262 2.86220088 2.959877e-03
## 7881    1 0.0010341262 2.86220088 2.959877e-03
## 7882    1 0.0010341262 2.86220088 2.959877e-03
## 7883    1 0.0010341262 2.86220088 2.959877e-03
## 7884    1 0.0010341262 2.86220088 2.959877e-03
## 7885    1 0.0010341262 2.86220088 2.959877e-03
## 7886    1 0.0010341262 2.86220088 2.959877e-03
## 7887    1 0.0010341262 2.86220088 2.959877e-03
## 7888    1 0.0010341262 2.86220088 2.959877e-03
## 7889    1 0.0010341262 2.86220088 2.959877e-03
## 7890    1 0.0010341262 2.86220088 2.959877e-03
## 7891    1 0.0010341262 2.86220088 2.959877e-03
## 7892    1 0.0010341262 2.86220088 2.959877e-03
## 7893    1 0.0010341262 2.86220088 2.959877e-03
## 7894    1 0.0023640662 1.25276297 2.961615e-03
## 7895    1 0.0023640662 1.25276297 2.961615e-03
## 7896    1 0.0023640662 1.25276297 2.961615e-03
## 7897    1 0.0023640662 1.25276297 2.961615e-03
## 7898    1 0.0023640662 1.25276297 2.961615e-03
## 7899    1 0.0023640662 1.25276297 2.961615e-03
## 7900    1 0.0023640662 1.25276297 2.961615e-03
## 7901    1 0.0023640662 1.25276297 2.961615e-03
## 7902    1 0.0023640662 1.25276297 2.961615e-03
## 7903    1 0.0023640662 1.25276297 2.961615e-03
## 7904    3 0.0015228426 1.94591015 2.963315e-03
## 7905    6 0.0063829787 0.46430561 2.963653e-03
## 7906    4 0.0053120850 0.55961579 2.972727e-03
## 7907    3 0.0025684932 1.15745279 2.972910e-03
## 7908    3 0.0025684932 1.15745279 2.972910e-03
## 7909    3 0.0025684932 1.15745279 2.972910e-03
## 7910    3 0.0025684932 1.15745279 2.972910e-03
## 7911    3 0.0025684932 1.15745279 2.972910e-03
## 7912    2 0.0032467532 0.91629073 2.974970e-03
## 7913    2 0.0032467532 0.91629073 2.974970e-03
## 7914    2 0.0032467532 0.91629073 2.974970e-03
## 7915    3 0.0048701299 0.61090908 2.975207e-03
## 7916    1 0.0012121212 2.45673577 2.977862e-03
## 7917    1 0.0012121212 2.45673577 2.977862e-03
## 7918    1 0.0012121212 2.45673577 2.977862e-03
## 7919    1 0.0012121212 2.45673577 2.977862e-03
## 7920    1 0.0012121212 2.45673577 2.977862e-03
## 7921    1 0.0012121212 2.45673577 2.977862e-03
## 7922    1 0.0012121212 2.45673577 2.977862e-03
## 7923    1 0.0012121212 2.45673577 2.977862e-03
## 7924    1 0.0012121212 2.45673577 2.977862e-03
## 7925    1 0.0012121212 2.45673577 2.977862e-03
## 7926    1 0.0012121212 2.45673577 2.977862e-03
## 7927    1 0.0012121212 2.45673577 2.977862e-03
## 7928    1 0.0012121212 2.45673577 2.977862e-03
## 7929    1 0.0012121212 2.45673577 2.977862e-03
## 7930    1 0.0012121212 2.45673577 2.977862e-03
## 7931    1 0.0012121212 2.45673577 2.977862e-03
## 7932    1 0.0012121212 2.45673577 2.977862e-03
## 7933    1 0.0012121212 2.45673577 2.977862e-03
## 7934    1 0.0012121212 2.45673577 2.977862e-03
## 7935    1 0.0012121212 2.45673577 2.977862e-03
## 7936    1 0.0012121212 2.45673577 2.977862e-03
## 7937    1 0.0012121212 2.45673577 2.977862e-03
## 7938    1 0.0012121212 2.45673577 2.977862e-03
## 7939    1 0.0021929825 1.35812348 2.978341e-03
## 7940    1 0.0021929825 1.35812348 2.978341e-03
## 7941    1 0.0018552876 1.60943791 2.985970e-03
## 7942    1 0.0018552876 1.60943791 2.985970e-03
## 7943    1 0.0018552876 1.60943791 2.985970e-03
## 7944    1 0.0018552876 1.60943791 2.985970e-03
## 7945    1 0.0018552876 1.60943791 2.985970e-03
## 7946    1 0.0018552876 1.60943791 2.985970e-03
## 7947    1 0.0018552876 1.60943791 2.985970e-03
## 7948    1 0.0018552876 1.60943791 2.985970e-03
## 7949    1 0.0018552876 1.60943791 2.985970e-03
## 7950    2 0.0020242915 1.47590652 2.987665e-03
## 7951    2 0.0020242915 1.47590652 2.987665e-03
## 7952    1 0.0013774105 2.16905370 2.987677e-03
## 7953    1 0.0013774105 2.16905370 2.987677e-03
## 7954    1 0.0013774105 2.16905370 2.987677e-03
## 7955    1 0.0013774105 2.16905370 2.987677e-03
## 7956    1 0.0013774105 2.16905370 2.987677e-03
## 7957    1 0.0013774105 2.16905370 2.987677e-03
## 7958    1 0.0013774105 2.16905370 2.987677e-03
## 7959    1 0.0013774105 2.16905370 2.987677e-03
## 7960    1 0.0013774105 2.16905370 2.987677e-03
## 7961    1 0.0013774105 2.16905370 2.987677e-03
## 7962    1 0.0013774105 2.16905370 2.987677e-03
## 7963    1 0.0013774105 2.16905370 2.987677e-03
## 7964    1 0.0013774105 2.16905370 2.987677e-03
## 7965    1 0.0013774105 2.16905370 2.987677e-03
## 7966    1 0.0013774105 2.16905370 2.987677e-03
## 7967    1 0.0013774105 2.16905370 2.987677e-03
## 7968    1 0.0013774105 2.16905370 2.987677e-03
## 7969    1 0.0013774105 2.16905370 2.987677e-03
## 7970    1 0.0013774105 2.16905370 2.987677e-03
## 7971    1 0.0013774105 2.16905370 2.987677e-03
## 7972    1 0.0013774105 2.16905370 2.987677e-03
## 7973    1 0.0013774105 2.16905370 2.987677e-03
## 7974    1 0.0013774105 2.16905370 2.987677e-03
## 7975    1 0.0013774105 2.16905370 2.987677e-03
## 7976    1 0.0013774105 2.16905370 2.987677e-03
## 7977    4 0.0044943820 0.66497630 2.988658e-03
## 7978    4 0.0022014309 1.35812348 2.989815e-03
## 7979    4 0.0022014309 1.35812348 2.989815e-03
## 7980    4 0.0022014309 1.35812348 2.989815e-03
## 7981    1 0.0027932961 1.07044141 2.990060e-03
## 7982    1 0.0027932961 1.07044141 2.990060e-03
## 7983    1 0.0027932961 1.07044141 2.990060e-03
## 7984    1 0.0027932961 1.07044141 2.990060e-03
## 7985    1 0.0027932961 1.07044141 2.990060e-03
## 7986    1 0.0027932961 1.07044141 2.990060e-03
## 7987    1 0.0027932961 1.07044141 2.990060e-03
## 7988    2 0.0022026432 1.35812348 2.991461e-03
## 7989    2 0.0022026432 1.35812348 2.991461e-03
## 7990    2 0.0022026432 1.35812348 2.991461e-03
## 7991    2 0.0022026432 1.35812348 2.991461e-03
## 7992    5 0.0032658393 0.91629073 2.992458e-03
## 7993    3 0.0018656716 1.60943791 3.002683e-03
## 7994    3 0.0018656716 1.60943791 3.002683e-03
## 7995    3 0.0030364372 0.99039870 3.007284e-03
## 7996    7 0.0038525041 0.78275934 3.015584e-03
## 7997    6 0.0030456853 0.99039870 3.016443e-03
## 7998    2 0.0053908356 0.55961579 3.016797e-03
## 7999    2 0.0053908356 0.55961579 3.016797e-03
## 8000    2 0.0017123288 1.76358859 3.019843e-03
## 8001    2 0.0017123288 1.76358859 3.019843e-03
## 8002    2 0.0017123288 1.76358859 3.019843e-03
## 8003    1 0.0017123288 1.76358859 3.019843e-03
## 8004    1 0.0017123288 1.76358859 3.019843e-03
## 8005    1 0.0017123288 1.76358859 3.019843e-03
## 8006    1 0.0017123288 1.76358859 3.019843e-03
## 8007    1 0.0017123288 1.76358859 3.019843e-03
## 8008    1 0.0017123288 1.76358859 3.019843e-03
## 8009    1 0.0017123288 1.76358859 3.019843e-03
## 8010    1 0.0017123288 1.76358859 3.019843e-03
## 8011    1 0.0017123288 1.76358859 3.019843e-03
## 8012    1 0.0017123288 1.76358859 3.019843e-03
## 8013    1 0.0017123288 1.76358859 3.019843e-03
## 8014    1 0.0017123288 1.76358859 3.019843e-03
## 8015    1 0.0017123288 1.76358859 3.019843e-03
## 8016    1 0.0045454545 0.66497630 3.022620e-03
## 8017    4 0.0028248588 1.07044141 3.023846e-03
## 8018    2 0.0035778175 0.84729786 3.031477e-03
## 8019    2 0.0035778175 0.84729786 3.031477e-03
## 8020    3 0.0018867925 1.60943791 3.036675e-03
## 8021    3 0.0018867925 1.60943791 3.036675e-03
## 8022    3 0.0018867925 1.60943791 3.036675e-03
## 8023    2 0.0024242424 1.25276297 3.037001e-03
## 8024    2 0.0024242424 1.25276297 3.037001e-03
## 8025    1 0.0008561644 3.55534806 3.043962e-03
## 8026    1 0.0008561644 3.55534806 3.043962e-03
## 8027    1 0.0008561644 3.55534806 3.043962e-03
## 8028    1 0.0008561644 3.55534806 3.043962e-03
## 8029    1 0.0008561644 3.55534806 3.043962e-03
## 8030    1 0.0008561644 3.55534806 3.043962e-03
## 8031    1 0.0008561644 3.55534806 3.043962e-03
## 8032    1 0.0008561644 3.55534806 3.043962e-03
## 8033    1 0.0008561644 3.55534806 3.043962e-03
## 8034    1 0.0008561644 3.55534806 3.043962e-03
## 8035    1 0.0008561644 3.55534806 3.043962e-03
## 8036    1 0.0008561644 3.55534806 3.043962e-03
## 8037    1 0.0008561644 3.55534806 3.043962e-03
## 8038    1 0.0008561644 3.55534806 3.043962e-03
## 8039    1 0.0008561644 3.55534806 3.043962e-03
## 8040    1 0.0008561644 3.55534806 3.043962e-03
## 8041    1 0.0008561644 3.55534806 3.043962e-03
## 8042    1 0.0008561644 3.55534806 3.043962e-03
## 8043    1 0.0008561644 3.55534806 3.043962e-03
## 8044    1 0.0008561644 3.55534806 3.043962e-03
## 8045    1 0.0008561644 3.55534806 3.043962e-03
## 8046    1 0.0008561644 3.55534806 3.043962e-03
## 8047    1 0.0008561644 3.55534806 3.043962e-03
## 8048    1 0.0008561644 3.55534806 3.043962e-03
## 8049    1 0.0008561644 3.55534806 3.043962e-03
## 8050    1 0.0008561644 3.55534806 3.043962e-03
## 8051    1 0.0008561644 3.55534806 3.043962e-03
## 8052    1 0.0008561644 3.55534806 3.043962e-03
## 8053    1 0.0008561644 3.55534806 3.043962e-03
## 8054    1 0.0008561644 3.55534806 3.043962e-03
## 8055    1 0.0008561644 3.55534806 3.043962e-03
## 8056    1 0.0008561644 3.55534806 3.043962e-03
## 8057    1 0.0008561644 3.55534806 3.043962e-03
## 8058    1 0.0008561644 3.55534806 3.043962e-03
## 8059    1 0.0008561644 3.55534806 3.043962e-03
## 8060    1 0.0008561644 3.55534806 3.043962e-03
## 8061    1 0.0008561644 3.55534806 3.043962e-03
## 8062    1 0.0008561644 3.55534806 3.043962e-03
## 8063    1 0.0008561644 3.55534806 3.043962e-03
## 8064    1 0.0008561644 3.55534806 3.043962e-03
## 8065    1 0.0008561644 3.55534806 3.043962e-03
## 8066    1 0.0008561644 3.55534806 3.043962e-03
## 8067    1 0.0008561644 3.55534806 3.043962e-03
## 8068    1 0.0008561644 3.55534806 3.043962e-03
## 8069    1 0.0008561644 3.55534806 3.043962e-03
## 8070    1 0.0008561644 3.55534806 3.043962e-03
## 8071    1 0.0008561644 3.55534806 3.043962e-03
## 8072    1 0.0008561644 3.55534806 3.043962e-03
## 8073    1 0.0008561644 3.55534806 3.043962e-03
## 8074    1 0.0008561644 3.55534806 3.043962e-03
## 8075    1 0.0008561644 3.55534806 3.043962e-03
## 8076    1 0.0008561644 3.55534806 3.043962e-03
## 8077    1 0.0008561644 3.55534806 3.043962e-03
## 8078    1 0.0008561644 3.55534806 3.043962e-03
## 8079    1 0.0008561644 3.55534806 3.043962e-03
## 8080    1 0.0008561644 3.55534806 3.043962e-03
## 8081    1 0.0008561644 3.55534806 3.043962e-03
## 8082    1 0.0008561644 3.55534806 3.043962e-03
## 8083    1 0.0008561644 3.55534806 3.043962e-03
## 8084    1 0.0008561644 3.55534806 3.043962e-03
## 8085    1 0.0008561644 3.55534806 3.043962e-03
## 8086    1 0.0008561644 3.55534806 3.043962e-03
## 8087    1 0.0008561644 3.55534806 3.043962e-03
## 8088    1 0.0008561644 3.55534806 3.043962e-03
## 8089    1 0.0008561644 3.55534806 3.043962e-03
## 8090    1 0.0008561644 3.55534806 3.043962e-03
## 8091    1 0.0008561644 3.55534806 3.043962e-03
## 8092    1 0.0008561644 3.55534806 3.043962e-03
## 8093    1 0.0008561644 3.55534806 3.043962e-03
## 8094    1 0.0008561644 3.55534806 3.043962e-03
## 8095    1 0.0008561644 3.55534806 3.043962e-03
## 8096    1 0.0008561644 3.55534806 3.043962e-03
## 8097    1 0.0008561644 3.55534806 3.043962e-03
## 8098    1 0.0008561644 3.55534806 3.043962e-03
## 8099    1 0.0008561644 3.55534806 3.043962e-03
## 8100    1 0.0008561644 3.55534806 3.043962e-03
## 8101    1 0.0008561644 3.55534806 3.043962e-03
## 8102    1 0.0008561644 3.55534806 3.043962e-03
## 8103    1 0.0008561644 3.55534806 3.043962e-03
## 8104    1 0.0008561644 3.55534806 3.043962e-03
## 8105    1 0.0008561644 3.55534806 3.043962e-03
## 8106    1 0.0008561644 3.55534806 3.043962e-03
## 8107    1 0.0008561644 3.55534806 3.043962e-03
## 8108    1 0.0008561644 3.55534806 3.043962e-03
## 8109    1 0.0008561644 3.55534806 3.043962e-03
## 8110    1 0.0008561644 3.55534806 3.043962e-03
## 8111    1 0.0008561644 3.55534806 3.043962e-03
## 8112    1 0.0008561644 3.55534806 3.043962e-03
## 8113    1 0.0008561644 3.55534806 3.043962e-03
## 8114    1 0.0008561644 3.55534806 3.043962e-03
## 8115    1 0.0008561644 3.55534806 3.043962e-03
## 8116    1 0.0008561644 3.55534806 3.043962e-03
## 8117    1 0.0008561644 3.55534806 3.043962e-03
## 8118    1 0.0008561644 3.55534806 3.043962e-03
## 8119    1 0.0008561644 3.55534806 3.043962e-03
## 8120    1 0.0008561644 3.55534806 3.043962e-03
## 8121    1 0.0008561644 3.55534806 3.043962e-03
## 8122    1 0.0008561644 3.55534806 3.043962e-03
## 8123    1 0.0008561644 3.55534806 3.043962e-03
## 8124    1 0.0008561644 3.55534806 3.043962e-03
## 8125    1 0.0008561644 3.55534806 3.043962e-03
## 8126    1 0.0008561644 3.55534806 3.043962e-03
## 8127    1 0.0008561644 3.55534806 3.043962e-03
## 8128    1 0.0008561644 3.55534806 3.043962e-03
## 8129    1 0.0008561644 3.55534806 3.043962e-03
## 8130    1 0.0008561644 3.55534806 3.043962e-03
## 8131    1 0.0008561644 3.55534806 3.043962e-03
## 8132    1 0.0008561644 3.55534806 3.043962e-03
## 8133    1 0.0008561644 3.55534806 3.043962e-03
## 8134    1 0.0008561644 3.55534806 3.043962e-03
## 8135    1 0.0008561644 3.55534806 3.043962e-03
## 8136    1 0.0008561644 3.55534806 3.043962e-03
## 8137    1 0.0008561644 3.55534806 3.043962e-03
## 8138    1 0.0010638298 2.86220088 3.044895e-03
## 8139    1 0.0010638298 2.86220088 3.044895e-03
## 8140    1 0.0010638298 2.86220088 3.044895e-03
## 8141    1 0.0010638298 2.86220088 3.044895e-03
## 8142    1 0.0010638298 2.86220088 3.044895e-03
## 8143    1 0.0010638298 2.86220088 3.044895e-03
## 8144    1 0.0010638298 2.86220088 3.044895e-03
## 8145    1 0.0010638298 2.86220088 3.044895e-03
## 8146    1 0.0010638298 2.86220088 3.044895e-03
## 8147    1 0.0010638298 2.86220088 3.044895e-03
## 8148    1 0.0010638298 2.86220088 3.044895e-03
## 8149    1 0.0010638298 2.86220088 3.044895e-03
## 8150    1 0.0010638298 2.86220088 3.044895e-03
## 8151    1 0.0010638298 2.86220088 3.044895e-03
## 8152    1 0.0010638298 2.86220088 3.044895e-03
## 8153    1 0.0010638298 2.86220088 3.044895e-03
## 8154    1 0.0010638298 2.86220088 3.044895e-03
## 8155    1 0.0010638298 2.86220088 3.044895e-03
## 8156    1 0.0010638298 2.86220088 3.044895e-03
## 8157    1 0.0010638298 2.86220088 3.044895e-03
## 8158    1 0.0010638298 2.86220088 3.044895e-03
## 8159    1 0.0010638298 2.86220088 3.044895e-03
## 8160    1 0.0010638298 2.86220088 3.044895e-03
## 8161    1 0.0010638298 2.86220088 3.044895e-03
## 8162    1 0.0010638298 2.86220088 3.044895e-03
## 8163    1 0.0010638298 2.86220088 3.044895e-03
## 8164    1 0.0010638298 2.86220088 3.044895e-03
## 8165    1 0.0010638298 2.86220088 3.044895e-03
## 8166    1 0.0010638298 2.86220088 3.044895e-03
## 8167    1 0.0010638298 2.86220088 3.044895e-03
## 8168    1 0.0010638298 2.86220088 3.044895e-03
## 8169    1 0.0010638298 2.86220088 3.044895e-03
## 8170    1 0.0010638298 2.86220088 3.044895e-03
## 8171    1 0.0010638298 2.86220088 3.044895e-03
## 8172    1 0.0010638298 2.86220088 3.044895e-03
## 8173    1 0.0010638298 2.86220088 3.044895e-03
## 8174    1 0.0010638298 2.86220088 3.044895e-03
## 8175    1 0.0010638298 2.86220088 3.044895e-03
## 8176    1 0.0010638298 2.86220088 3.044895e-03
## 8177    2 0.0049875312 0.61090908 3.046928e-03
## 8178    2 0.0059701493 0.51082562 3.049705e-03
## 8179    2 0.0059701493 0.51082562 3.049705e-03
## 8180    3 0.0080862534 0.37729423 3.050897e-03
## 8181    2 0.0022471910 1.35812348 3.051963e-03
## 8182    2 0.0020682523 1.47590652 3.052547e-03
## 8183    2 0.0020682523 1.47590652 3.052547e-03
## 8184    2 0.0020682523 1.47590652 3.052547e-03
## 8185    1 0.0026385224 1.15745279 3.053965e-03
## 8186    1 0.0026385224 1.15745279 3.053965e-03
## 8187    1 0.0026385224 1.15745279 3.053965e-03
## 8188    1 0.0026385224 1.15745279 3.053965e-03
## 8189    1 0.0026385224 1.15745279 3.053965e-03
## 8190    1 0.0026385224 1.15745279 3.053965e-03
## 8191    2 0.0012437811 2.45673577 3.055642e-03
## 8192    2 0.0012437811 2.45673577 3.055642e-03
## 8193    2 0.0012437811 2.45673577 3.055642e-03
## 8194    2 0.0012437811 2.45673577 3.055642e-03
## 8195    2 0.0012437811 2.45673577 3.055642e-03
## 8196    2 0.0012437811 2.45673577 3.055642e-03
## 8197    2 0.0012437811 2.45673577 3.055642e-03
## 8198    2 0.0012437811 2.45673577 3.055642e-03
## 8199    2 0.0012437811 2.45673577 3.055642e-03
## 8200    2 0.0090909091 0.33647224 3.058839e-03
## 8201    2 0.0014124294 2.16905370 3.063635e-03
## 8202    2 0.0014124294 2.16905370 3.063635e-03
## 8203    2 0.0014124294 2.16905370 3.063635e-03
## 8204    2 0.0014124294 2.16905370 3.063635e-03
## 8205    2 0.0014124294 2.16905370 3.063635e-03
## 8206    2 0.0014124294 2.16905370 3.063635e-03
## 8207    2 0.0014124294 2.16905370 3.063635e-03
## 8208    2 0.0014124294 2.16905370 3.063635e-03
## 8209    2 0.0014124294 2.16905370 3.063635e-03
## 8210    6 0.0039190072 0.78275934 3.067639e-03
## 8211    3 0.0031023785 0.99039870 3.072592e-03
## 8212    4 0.0042553191 0.72213472 3.072914e-03
## 8213   10 0.0103412616 0.29725152 3.073956e-03
## 8214    2 0.0026560425 1.15745279 3.074244e-03
## 8215    1 0.0024570025 1.25276297 3.078042e-03
## 8216    1 0.0024570025 1.25276297 3.078042e-03
## 8217    1 0.0024570025 1.25276297 3.078042e-03
## 8218    1 0.0024570025 1.25276297 3.078042e-03
## 8219    1 0.0024570025 1.25276297 3.078042e-03
## 8220    1 0.0024570025 1.25276297 3.078042e-03
## 8221    1 0.0024570025 1.25276297 3.078042e-03
## 8222    1 0.0024570025 1.25276297 3.078042e-03
## 8223    1 0.0024570025 1.25276297 3.078042e-03
## 8224    1 0.0024570025 1.25276297 3.078042e-03
## 8225    5 0.0031094527 0.99039870 3.079598e-03
## 8226    5 0.0031094527 0.99039870 3.079598e-03
## 8227   10 0.0055035773 0.55961579 3.079889e-03
## 8228    2 0.0026666667 1.15745279 3.086541e-03
## 8229    2 0.0026666667 1.15745279 3.086541e-03
## 8230    3 0.0033707865 0.91629073 3.088620e-03
## 8231    2 0.0012578616 2.45673577 3.090234e-03
## 8232    2 0.0012578616 2.45673577 3.090234e-03
## 8233    2 0.0012578616 2.45673577 3.090234e-03
## 8234    2 0.0012578616 2.45673577 3.090234e-03
## 8235    2 0.0012578616 2.45673577 3.090234e-03
## 8236    2 0.0012578616 2.45673577 3.090234e-03
## 8237    2 0.0012578616 2.45673577 3.090234e-03
## 8238    2 0.0012578616 2.45673577 3.090234e-03
## 8239    2 0.0012578616 2.45673577 3.090234e-03
## 8240    2 0.0012578616 2.45673577 3.090234e-03
## 8241    2 0.0022779043 1.35812348 3.093675e-03
## 8242    2 0.0022779043 1.35812348 3.093675e-03
## 8243    2 0.0022779043 1.35812348 3.093675e-03
## 8244    2 0.0022779043 1.35812348 3.093675e-03
## 8245    2 0.0022779043 1.35812348 3.093675e-03
## 8246    3 0.0073710074 0.41985385 3.094746e-03
## 8247    1 0.0029069767 1.07044141 3.111748e-03
## 8248    1 0.0029069767 1.07044141 3.111748e-03
## 8249    1 0.0029069767 1.07044141 3.111748e-03
## 8250    1 0.0029069767 1.07044141 3.111748e-03
## 8251    1 0.0029069767 1.07044141 3.111748e-03
## 8252    1 0.0029069767 1.07044141 3.111748e-03
## 8253    1 0.0029069767 1.07044141 3.111748e-03
## 8254    1 0.0029069767 1.07044141 3.111748e-03
## 8255    7 0.0165484634 0.18805223 3.111975e-03
## 8256    3 0.0055658627 0.55961579 3.114745e-03
## 8257    1 0.0060975610 0.51082562 3.114790e-03
## 8258    3 0.0039840637 0.78275934 3.118563e-03
## 8259    1 0.0026954178 1.15745279 3.119819e-03
## 8260    1 0.0026954178 1.15745279 3.119819e-03
## 8261    1 0.0026954178 1.15745279 3.119819e-03
## 8262    1 0.0026954178 1.15745279 3.119819e-03
## 8263    1 0.0026954178 1.15745279 3.119819e-03
## 8264    1 0.0026954178 1.15745279 3.119819e-03
## 8265    5 0.0092764378 0.33647224 3.121264e-03
## 8266    1 0.0024937656 1.25276297 3.124097e-03
## 8267    1 0.0024937656 1.25276297 3.124097e-03
## 8268    1 0.0024937656 1.25276297 3.124097e-03
## 8269    1 0.0024937656 1.25276297 3.124097e-03
## 8270    1 0.0024937656 1.25276297 3.124097e-03
## 8271    2 0.0055865922 0.55961579 3.126345e-03
## 8272    2 0.0055865922 0.55961579 3.126345e-03
## 8273    2 0.0055865922 0.55961579 3.126345e-03
## 8274    2 0.0055865922 0.55961579 3.126345e-03
## 8275    3 0.0021186441 1.47590652 3.126921e-03
## 8276    3 0.0021186441 1.47590652 3.126921e-03
## 8277    3 0.0021186441 1.47590652 3.126921e-03
## 8278    7 0.0092961487 0.33647224 3.127896e-03
## 8279    4 0.0047058824 0.66497630 3.129300e-03
## 8280    3 0.0034168565 0.91629073 3.130834e-03
## 8281    3 0.0040000000 0.78275934 3.131037e-03
## 8282    3 0.0040000000 0.78275934 3.131037e-03
## 8283    1 0.0034246575 0.91629073 3.137982e-03
## 8284    1 0.0034246575 0.91629073 3.137982e-03
## 8285    1 0.0034246575 0.91629073 3.137982e-03
## 8286    6 0.0051369863 0.61090908 3.138232e-03
## 8287    2 0.0021276596 1.47590652 3.140227e-03
## 8288    2 0.0021276596 1.47590652 3.140227e-03
## 8289    2 0.0021276596 1.47590652 3.140227e-03
## 8290    2 0.0021276596 1.47590652 3.140227e-03
## 8291    2 0.0021276596 1.47590652 3.140227e-03
## 8292    2 0.0021276596 1.47590652 3.140227e-03
## 8293    2 0.0021276596 1.47590652 3.140227e-03
## 8294    2 0.0037105751 0.84729786 3.143962e-03
## 8295    2 0.0011007155 2.86220088 3.150469e-03
## 8296    2 0.0011007155 2.86220088 3.150469e-03
## 8297    2 0.0011007155 2.86220088 3.150469e-03
## 8298    2 0.0011007155 2.86220088 3.150469e-03
## 8299    2 0.0011007155 2.86220088 3.150469e-03
## 8300    2 0.0011007155 2.86220088 3.150469e-03
## 8301    2 0.0011007155 2.86220088 3.150469e-03
## 8302    2 0.0011007155 2.86220088 3.150469e-03
## 8303    2 0.0011007155 2.86220088 3.150469e-03
## 8304    2 0.0011007155 2.86220088 3.150469e-03
## 8305    2 0.0011007155 2.86220088 3.150469e-03
## 8306    2 0.0011007155 2.86220088 3.150469e-03
## 8307    2 0.0011007155 2.86220088 3.150469e-03
## 8308    2 0.0011007155 2.86220088 3.150469e-03
## 8309    2 0.0011007155 2.86220088 3.150469e-03
## 8310    2 0.0011007155 2.86220088 3.150469e-03
## 8311    2 0.0011007155 2.86220088 3.150469e-03
## 8312    2 0.0011007155 2.86220088 3.150469e-03
## 8313    2 0.0011007155 2.86220088 3.150469e-03
## 8314    4 0.0025157233 1.25276297 3.151605e-03
## 8315    1 0.0011013216 2.86220088 3.152204e-03
## 8316    1 0.0011013216 2.86220088 3.152204e-03
## 8317    1 0.0011013216 2.86220088 3.152204e-03
## 8318    1 0.0011013216 2.86220088 3.152204e-03
## 8319    1 0.0011013216 2.86220088 3.152204e-03
## 8320    1 0.0011013216 2.86220088 3.152204e-03
## 8321    1 0.0011013216 2.86220088 3.152204e-03
## 8322    1 0.0011013216 2.86220088 3.152204e-03
## 8323    1 0.0011013216 2.86220088 3.152204e-03
## 8324    1 0.0011013216 2.86220088 3.152204e-03
## 8325    1 0.0011013216 2.86220088 3.152204e-03
## 8326    1 0.0011013216 2.86220088 3.152204e-03
## 8327    1 0.0011013216 2.86220088 3.152204e-03
## 8328    1 0.0011013216 2.86220088 3.152204e-03
## 8329    1 0.0011013216 2.86220088 3.152204e-03
## 8330    1 0.0011013216 2.86220088 3.152204e-03
## 8331    1 0.0011013216 2.86220088 3.152204e-03
## 8332    1 0.0011013216 2.86220088 3.152204e-03
## 8333    1 0.0011013216 2.86220088 3.152204e-03
## 8334    1 0.0011013216 2.86220088 3.152204e-03
## 8335    1 0.0011013216 2.86220088 3.152204e-03
## 8336    1 0.0011013216 2.86220088 3.152204e-03
## 8337    1 0.0011013216 2.86220088 3.152204e-03
## 8338    1 0.0011013216 2.86220088 3.152204e-03
## 8339    1 0.0011013216 2.86220088 3.152204e-03
## 8340    1 0.0011013216 2.86220088 3.152204e-03
## 8341    1 0.0011013216 2.86220088 3.152204e-03
## 8342    1 0.0011013216 2.86220088 3.152204e-03
## 8343    1 0.0011013216 2.86220088 3.152204e-03
## 8344    1 0.0011013216 2.86220088 3.152204e-03
## 8345    1 0.0011013216 2.86220088 3.152204e-03
## 8346    1 0.0011013216 2.86220088 3.152204e-03
## 8347    1 0.0011013216 2.86220088 3.152204e-03
## 8348    1 0.0011013216 2.86220088 3.152204e-03
## 8349    1 0.0011013216 2.86220088 3.152204e-03
## 8350    1 0.0011013216 2.86220088 3.152204e-03
## 8351    1 0.0011013216 2.86220088 3.152204e-03
## 8352    1 0.0011013216 2.86220088 3.152204e-03
## 8353    1 0.0011013216 2.86220088 3.152204e-03
## 8354    1 0.0011013216 2.86220088 3.152204e-03
## 8355    1 0.0011013216 2.86220088 3.152204e-03
## 8356    1 0.0011013216 2.86220088 3.152204e-03
## 8357    1 0.0011013216 2.86220088 3.152204e-03
## 8358    1 0.0011013216 2.86220088 3.152204e-03
## 8359    1 0.0011013216 2.86220088 3.152204e-03
## 8360    1 0.0011013216 2.86220088 3.152204e-03
## 8361    1 0.0011013216 2.86220088 3.152204e-03
## 8362    1 0.0011013216 2.86220088 3.152204e-03
## 8363    1 0.0011013216 2.86220088 3.152204e-03
## 8364    1 0.0011013216 2.86220088 3.152204e-03
## 8365    3 0.0019595036 1.60943791 3.153699e-03
## 8366    1 0.0017889088 1.76358859 3.154899e-03
## 8367    1 0.0017889088 1.76358859 3.154899e-03
## 8368    1 0.0017889088 1.76358859 3.154899e-03
## 8369    1 0.0017889088 1.76358859 3.154899e-03
## 8370    1 0.0017889088 1.76358859 3.154899e-03
## 8371    1 0.0017889088 1.76358859 3.154899e-03
## 8372    1 0.0017889088 1.76358859 3.154899e-03
## 8373    1 0.0017889088 1.76358859 3.154899e-03
## 8374    1 0.0017889088 1.76358859 3.154899e-03
## 8375    1 0.0017889088 1.76358859 3.154899e-03
## 8376    1 0.0017889088 1.76358859 3.154899e-03
## 8377    1 0.0017889088 1.76358859 3.154899e-03
## 8378    1 0.0017889088 1.76358859 3.154899e-03
## 8379    1 0.0017889088 1.76358859 3.154899e-03
## 8380    1 0.0017889088 1.76358859 3.154899e-03
## 8381    1 0.0017889088 1.76358859 3.154899e-03
## 8382    1 0.0017889088 1.76358859 3.154899e-03
## 8383    1 0.0017889088 1.76358859 3.154899e-03
## 8384    1 0.0017889088 1.76358859 3.154899e-03
## 8385    1 0.0017889088 1.76358859 3.154899e-03
## 8386    1 0.0017889088 1.76358859 3.154899e-03
## 8387    5 0.0051706308 0.61090908 3.158785e-03
## 8388    1 0.0016233766 1.94591015 3.158945e-03
## 8389    1 0.0016233766 1.94591015 3.158945e-03
## 8390    1 0.0016233766 1.94591015 3.158945e-03
## 8391    1 0.0016233766 1.94591015 3.158945e-03
## 8392    1 0.0016233766 1.94591015 3.158945e-03
## 8393    1 0.0016233766 1.94591015 3.158945e-03
## 8394    1 0.0016233766 1.94591015 3.158945e-03
## 8395    1 0.0016233766 1.94591015 3.158945e-03
## 8396    1 0.0016233766 1.94591015 3.158945e-03
## 8397    1 0.0016233766 1.94591015 3.158945e-03
## 8398    1 0.0016233766 1.94591015 3.158945e-03
## 8399    1 0.0016233766 1.94591015 3.158945e-03
## 8400    1 0.0016233766 1.94591015 3.158945e-03
## 8401    1 0.0016233766 1.94591015 3.158945e-03
## 8402    1 0.0016233766 1.94591015 3.158945e-03
## 8403    1 0.0016233766 1.94591015 3.158945e-03
## 8404    1 0.0016233766 1.94591015 3.158945e-03
## 8405    1 0.0016233766 1.94591015 3.158945e-03
## 8406    2 0.0121951220 0.25951120 3.164771e-03
## 8407    2 0.0043859649 0.72213472 3.167258e-03
## 8408   11 0.0094178082 0.33647224 3.168831e-03
## 8409    1 0.0034602076 0.91629073 3.170556e-03
## 8410    1 0.0034602076 0.91629073 3.170556e-03
## 8411    1 0.0034602076 0.91629073 3.170556e-03
## 8412    2 0.0068493151 0.46430561 3.180175e-03
## 8413    5 0.0027517887 1.15745279 3.185065e-03
## 8414    5 0.0056947608 0.55961579 3.186878e-03
## 8415    2 0.0027548209 1.15745279 3.188575e-03
## 8416    2 0.0027548209 1.15745279 3.188575e-03
## 8417    8 0.0052253429 0.61090908 3.192209e-03
## 8418    1 0.0029850746 1.07044141 3.195347e-03
## 8419    1 0.0029850746 1.07044141 3.195347e-03
## 8420    1 0.0029850746 1.07044141 3.195347e-03
## 8421    1 0.0029850746 1.07044141 3.195347e-03
## 8422    1 0.0029850746 1.07044141 3.195347e-03
## 8423    1 0.0029850746 1.07044141 3.195347e-03
## 8424    1 0.0029850746 1.07044141 3.195347e-03
## 8425    2 0.0023529412 1.35812348 3.195585e-03
## 8426    6 0.0037735849 0.84729786 3.197350e-03
## 8427    2 0.0013063357 2.45673577 3.209322e-03
## 8428    2 0.0013063357 2.45673577 3.209322e-03
## 8429    2 0.0013063357 2.45673577 3.209322e-03
## 8430    2 0.0013063357 2.45673577 3.209322e-03
## 8431    2 0.0013063357 2.45673577 3.209322e-03
## 8432    2 0.0013063357 2.45673577 3.209322e-03
## 8433    2 0.0013063357 2.45673577 3.209322e-03
## 8434    2 0.0013063357 2.45673577 3.209322e-03
## 8435    2 0.0013063357 2.45673577 3.209322e-03
## 8436    2 0.0013063357 2.45673577 3.209322e-03
## 8437    1 0.0023640662 1.35812348 3.210694e-03
## 8438    1 0.0023640662 1.35812348 3.210694e-03
## 8439    1 0.0023640662 1.35812348 3.210694e-03
## 8440    1 0.0023640662 1.35812348 3.210694e-03
## 8441    1 0.0023640662 1.35812348 3.210694e-03
## 8442    1 0.0023640662 1.35812348 3.210694e-03
## 8443    1 0.0023640662 1.35812348 3.210694e-03
## 8444    1 0.0023640662 1.35812348 3.210694e-03
## 8445    1 0.0023640662 1.35812348 3.210694e-03
## 8446    1 0.0023640662 1.35812348 3.210694e-03
## 8447    3 0.0016510732 1.94591015 3.212840e-03
## 8448    3 0.0016510732 1.94591015 3.212840e-03
## 8449    3 0.0016510732 1.94591015 3.212840e-03
## 8450    3 0.0016510732 1.94591015 3.212840e-03
## 8451    3 0.0016510732 1.94591015 3.212840e-03
## 8452    3 0.0016510732 1.94591015 3.212840e-03
## 8453    2 0.0069204152 0.46430561 3.213188e-03
## 8454    2 0.0032467532 0.99039870 3.215580e-03
## 8455    2 0.0032467532 0.99039870 3.215580e-03
## 8456    2 0.0032467532 0.99039870 3.215580e-03
## 8457    1 0.0011235955 2.86220088 3.215956e-03
## 8458    1 0.0011235955 2.86220088 3.215956e-03
## 8459    1 0.0011235955 2.86220088 3.215956e-03
## 8460    1 0.0011235955 2.86220088 3.215956e-03
## 8461    1 0.0011235955 2.86220088 3.215956e-03
## 8462    1 0.0011235955 2.86220088 3.215956e-03
## 8463    1 0.0011235955 2.86220088 3.215956e-03
## 8464    1 0.0011235955 2.86220088 3.215956e-03
## 8465    1 0.0011235955 2.86220088 3.215956e-03
## 8466    1 0.0011235955 2.86220088 3.215956e-03
## 8467    1 0.0011235955 2.86220088 3.215956e-03
## 8468    1 0.0011235955 2.86220088 3.215956e-03
## 8469    1 0.0011235955 2.86220088 3.215956e-03
## 8470    1 0.0011235955 2.86220088 3.215956e-03
## 8471    1 0.0011235955 2.86220088 3.215956e-03
## 8472    1 0.0011235955 2.86220088 3.215956e-03
## 8473    1 0.0011235955 2.86220088 3.215956e-03
## 8474    1 0.0011235955 2.86220088 3.215956e-03
## 8475    1 0.0011235955 2.86220088 3.215956e-03
## 8476    1 0.0011235955 2.86220088 3.215956e-03
## 8477    1 0.0011235955 2.86220088 3.215956e-03
## 8478    1 0.0011235955 2.86220088 3.215956e-03
## 8479    1 0.0011235955 2.86220088 3.215956e-03
## 8480    1 0.0011235955 2.86220088 3.215956e-03
## 8481    1 0.0011235955 2.86220088 3.215956e-03
## 8482    1 0.0011235955 2.86220088 3.215956e-03
## 8483    1 0.0011235955 2.86220088 3.215956e-03
## 8484    1 0.0011235955 2.86220088 3.215956e-03
## 8485    1 0.0011235955 2.86220088 3.215956e-03
## 8486    1 0.0011235955 2.86220088 3.215956e-03
## 8487    1 0.0011235955 2.86220088 3.215956e-03
## 8488    1 0.0011235955 2.86220088 3.215956e-03
## 8489    1 0.0011235955 2.86220088 3.215956e-03
## 8490    1 0.0011235955 2.86220088 3.215956e-03
## 8491    1 0.0011235955 2.86220088 3.215956e-03
## 8492    1 0.0011235955 2.86220088 3.215956e-03
## 8493    1 0.0011235955 2.86220088 3.215956e-03
## 8494    1 0.0011235955 2.86220088 3.215956e-03
## 8495    1 0.0011235955 2.86220088 3.215956e-03
## 8496    1 0.0011235955 2.86220088 3.215956e-03
## 8497    3 0.0025684932 1.25276297 3.217713e-03
## 8498    2 0.0052770449 0.61090908 3.223795e-03
## 8499    2 0.0052770449 0.61090908 3.223795e-03
## 8500    2 0.0052770449 0.61090908 3.223795e-03
## 8501    2 0.0052770449 0.61090908 3.223795e-03
## 8502    1 0.0027932961 1.15745279 3.233108e-03
## 8503    1 0.0027932961 1.15745279 3.233108e-03
## 8504    1 0.0027932961 1.15745279 3.233108e-03
## 8505    1 0.0027932961 1.15745279 3.233108e-03
## 8506    5 0.0032658393 0.99039870 3.234483e-03
## 8507    5 0.0032658393 0.99039870 3.234483e-03
## 8508    1 0.0021929825 1.47590652 3.236637e-03
## 8509    1 0.0021929825 1.47590652 3.236637e-03
## 8510    1 0.0021929825 1.47590652 3.236637e-03
## 8511    1 0.0021929825 1.47590652 3.236637e-03
## 8512    1 0.0021929825 1.47590652 3.236637e-03
## 8513    1 0.0021929825 1.47590652 3.236637e-03
## 8514    7 0.0096418733 0.33647224 3.244223e-03
## 8515    4 0.0053120850 0.61090908 3.245201e-03
## 8516    4 0.0053120850 0.61090908 3.245201e-03
## 8517    5 0.0053191489 0.61090908 3.249516e-03
## 8518    5 0.0053191489 0.61090908 3.249516e-03
## 8519    2 0.0022026432 1.47590652 3.250895e-03
## 8520    2 0.0022026432 1.47590652 3.250895e-03
## 8521    2 0.0022026432 1.47590652 3.250895e-03
## 8522    2 0.0058139535 0.55961579 3.253580e-03
## 8523    2 0.0020242915 1.60943791 3.257971e-03
## 8524    2 0.0020242915 1.60943791 3.257971e-03
## 8525    2 0.0020242915 1.60943791 3.257971e-03
## 8526    2 0.0020242915 1.60943791 3.257971e-03
## 8527    2 0.0020242915 1.60943791 3.257971e-03
## 8528    1 0.0011389522 2.86220088 3.259910e-03
## 8529    1 0.0011389522 2.86220088 3.259910e-03
## 8530    1 0.0011389522 2.86220088 3.259910e-03
## 8531    1 0.0011389522 2.86220088 3.259910e-03
## 8532    1 0.0011389522 2.86220088 3.259910e-03
## 8533    1 0.0011389522 2.86220088 3.259910e-03
## 8534    1 0.0011389522 2.86220088 3.259910e-03
## 8535    1 0.0011389522 2.86220088 3.259910e-03
## 8536    1 0.0011389522 2.86220088 3.259910e-03
## 8537    1 0.0011389522 2.86220088 3.259910e-03
## 8538    1 0.0011389522 2.86220088 3.259910e-03
## 8539    1 0.0011389522 2.86220088 3.259910e-03
## 8540    1 0.0011389522 2.86220088 3.259910e-03
## 8541    1 0.0011389522 2.86220088 3.259910e-03
## 8542    1 0.0011389522 2.86220088 3.259910e-03
## 8543    1 0.0011389522 2.86220088 3.259910e-03
## 8544    1 0.0011389522 2.86220088 3.259910e-03
## 8545    1 0.0011389522 2.86220088 3.259910e-03
## 8546    1 0.0011389522 2.86220088 3.259910e-03
## 8547    1 0.0011389522 2.86220088 3.259910e-03
## 8548    1 0.0011389522 2.86220088 3.259910e-03
## 8549    1 0.0011389522 2.86220088 3.259910e-03
## 8550    1 0.0011389522 2.86220088 3.259910e-03
## 8551    1 0.0011389522 2.86220088 3.259910e-03
## 8552    1 0.0011389522 2.86220088 3.259910e-03
## 8553    1 0.0011389522 2.86220088 3.259910e-03
## 8554    1 0.0011389522 2.86220088 3.259910e-03
## 8555    1 0.0011389522 2.86220088 3.259910e-03
## 8556    1 0.0011389522 2.86220088 3.259910e-03
## 8557    1 0.0011389522 2.86220088 3.259910e-03
## 8558    1 0.0011389522 2.86220088 3.259910e-03
## 8559    1 0.0011389522 2.86220088 3.259910e-03
## 8560    1 0.0011389522 2.86220088 3.259910e-03
## 8561    1 0.0011389522 2.86220088 3.259910e-03
## 8562    1 0.0011389522 2.86220088 3.259910e-03
## 8563    1 0.0011389522 2.86220088 3.259910e-03
## 8564    1 0.0011389522 2.86220088 3.259910e-03
## 8565    1 0.0011389522 2.86220088 3.259910e-03
## 8566    1 0.0011389522 2.86220088 3.259910e-03
## 8567    1 0.0011389522 2.86220088 3.259910e-03
## 8568    1 0.0011389522 2.86220088 3.259910e-03
## 8569    1 0.0011389522 2.86220088 3.259910e-03
## 8570    1 0.0011389522 2.86220088 3.259910e-03
## 8571    1 0.0011389522 2.86220088 3.259910e-03
## 8572    1 0.0011389522 2.86220088 3.259910e-03
## 8573    1 0.0011389522 2.86220088 3.259910e-03
## 8574    1 0.0011389522 2.86220088 3.259910e-03
## 8575    1 0.0011389522 2.86220088 3.259910e-03
## 8576    1 0.0011389522 2.86220088 3.259910e-03
## 8577    1 0.0011389522 2.86220088 3.259910e-03
## 8578    1 0.0011389522 2.86220088 3.259910e-03
## 8579    1 0.0011389522 2.86220088 3.259910e-03
## 8580    1 0.0011389522 2.86220088 3.259910e-03
## 8581    1 0.0011389522 2.86220088 3.259910e-03
## 8582    1 0.0011389522 2.86220088 3.259910e-03
## 8583    1 0.0011389522 2.86220088 3.259910e-03
## 8584    1 0.0011389522 2.86220088 3.259910e-03
## 8585    1 0.0011389522 2.86220088 3.259910e-03
## 8586    1 0.0011389522 2.86220088 3.259910e-03
## 8587    1 0.0011389522 2.86220088 3.259910e-03
## 8588    1 0.0011389522 2.86220088 3.259910e-03
## 8589    6 0.0030456853 1.07044141 3.260228e-03
## 8590    1 0.0013280212 2.45673577 3.262597e-03
## 8591    1 0.0013280212 2.45673577 3.262597e-03
## 8592    1 0.0013280212 2.45673577 3.262597e-03
## 8593    1 0.0013280212 2.45673577 3.262597e-03
## 8594    1 0.0013280212 2.45673577 3.262597e-03
## 8595    1 0.0013280212 2.45673577 3.262597e-03
## 8596    1 0.0013280212 2.45673577 3.262597e-03
## 8597    1 0.0013280212 2.45673577 3.262597e-03
## 8598    1 0.0013280212 2.45673577 3.262597e-03
## 8599    1 0.0013280212 2.45673577 3.262597e-03
## 8600    1 0.0013280212 2.45673577 3.262597e-03
## 8601    1 0.0013280212 2.45673577 3.262597e-03
## 8602    1 0.0013280212 2.45673577 3.262597e-03
## 8603    1 0.0013280212 2.45673577 3.262597e-03
## 8604    1 0.0013280212 2.45673577 3.262597e-03
## 8605    1 0.0013280212 2.45673577 3.262597e-03
## 8606    1 0.0013280212 2.45673577 3.262597e-03
## 8607    1 0.0013280212 2.45673577 3.262597e-03
## 8608    1 0.0013280212 2.45673577 3.262597e-03
## 8609    1 0.0013280212 2.45673577 3.262597e-03
## 8610    8 0.0096969697 0.33647224 3.262761e-03
## 8611    2 0.0049140049 0.66497630 3.267697e-03
## 8612    4 0.0020304569 1.60943791 3.267894e-03
## 8613    4 0.0028248588 1.15745279 3.269641e-03
## 8614    1 0.0018552876 1.76358859 3.271964e-03
## 8615    1 0.0018552876 1.76358859 3.271964e-03
## 8616    1 0.0018552876 1.76358859 3.271964e-03
## 8617    1 0.0018552876 1.76358859 3.271964e-03
## 8618    1 0.0018552876 1.76358859 3.271964e-03
## 8619    1 0.0018552876 1.76358859 3.271964e-03
## 8620    1 0.0018552876 1.76358859 3.271964e-03
## 8621    1 0.0018552876 1.76358859 3.271964e-03
## 8622    1 0.0018552876 1.76358859 3.271964e-03
## 8623    1 0.0018552876 1.76358859 3.271964e-03
## 8624    1 0.0018552876 1.76358859 3.271964e-03
## 8625    4 0.0026126715 1.25276297 3.273058e-03
## 8626    8 0.0110192837 0.29725152 3.275499e-03
## 8627    1 0.0013333333 2.45673577 3.275648e-03
## 8628    1 0.0013333333 2.45673577 3.275648e-03
## 8629    1 0.0013333333 2.45673577 3.275648e-03
## 8630    1 0.0013333333 2.45673577 3.275648e-03
## 8631    1 0.0013333333 2.45673577 3.275648e-03
## 8632    1 0.0013333333 2.45673577 3.275648e-03
## 8633    1 0.0013333333 2.45673577 3.275648e-03
## 8634    1 0.0013333333 2.45673577 3.275648e-03
## 8635    1 0.0013333333 2.45673577 3.275648e-03
## 8636    1 0.0013333333 2.45673577 3.275648e-03
## 8637    1 0.0013333333 2.45673577 3.275648e-03
## 8638    1 0.0013333333 2.45673577 3.275648e-03
## 8639    1 0.0013333333 2.45673577 3.275648e-03
## 8640    1 0.0013333333 2.45673577 3.275648e-03
## 8641    1 0.0013333333 2.45673577 3.275648e-03
## 8642    1 0.0013333333 2.45673577 3.275648e-03
## 8643    1 0.0013333333 2.45673577 3.275648e-03
## 8644    1 0.0013333333 2.45673577 3.275648e-03
## 8645    1 0.0013333333 2.45673577 3.275648e-03
## 8646    1 0.0013333333 2.45673577 3.275648e-03
## 8647    1 0.0013333333 2.45673577 3.275648e-03
## 8648    1 0.0013333333 2.45673577 3.275648e-03
## 8649    1 0.0013333333 2.45673577 3.275648e-03
## 8650    1 0.0013333333 2.45673577 3.275648e-03
## 8651    1 0.0013333333 2.45673577 3.275648e-03
## 8652    1 0.0013333333 2.45673577 3.275648e-03
## 8653    2 0.0035778175 0.91629073 3.278321e-03
## 8654    2 0.0035778175 0.91629073 3.278321e-03
## 8655    3 0.0053667263 0.61090908 3.278582e-03
## 8656    1 0.0045454545 0.72213472 3.282431e-03
## 8657    4 0.0045558087 0.72213472 3.289908e-03
## 8658    4 0.0045558087 0.72213472 3.289908e-03
## 8659    3 0.0018656716 1.76358859 3.290277e-03
## 8660    3 0.0018656716 1.76358859 3.290277e-03
## 8661    3 0.0087209302 0.37729423 3.290357e-03
## 8662    2 0.0024242424 1.35812348 3.292421e-03
## 8663    2 0.0024242424 1.35812348 3.292421e-03
## 8664    2 0.0024242424 1.35812348 3.292421e-03
## 8665    2 0.0024242424 1.35812348 3.292421e-03
## 8666    2 0.0024242424 1.35812348 3.292421e-03
## 8667    2 0.0053908356 0.61090908 3.293310e-03
## 8668    2 0.0053908356 0.61090908 3.293310e-03
## 8669    2 0.0053908356 0.61090908 3.293310e-03
## 8670    3 0.0015228426 2.16905370 3.303127e-03
## 8671    3 0.0015228426 2.16905370 3.303127e-03
## 8672    1 0.0026385224 1.25276297 3.305443e-03
## 8673    1 0.0026385224 1.25276297 3.305443e-03
## 8674    1 0.0026385224 1.25276297 3.305443e-03
## 8675    1 0.0026385224 1.25276297 3.305443e-03
## 8676    1 0.0026385224 1.25276297 3.305443e-03
## 8677    6 0.0111317254 0.29725152 3.308922e-03
## 8678    2 0.0049875312 0.66497630 3.316590e-03
## 8679    2 0.0022471910 1.47590652 3.316644e-03
## 8680    2 0.0022471910 1.47590652 3.316644e-03
## 8681   13 0.0071546505 0.46430561 3.321944e-03
## 8682    4 0.0071556351 0.46430561 3.322401e-03
## 8683    3 0.0079155673 0.41985385 3.323381e-03
## 8684    2 0.0026560425 1.25276297 3.327392e-03
## 8685    2 0.0026560425 1.25276297 3.327392e-03
## 8686    3 0.0018867925 1.76358859 3.327526e-03
## 8687    5 0.0031094527 1.07044141 3.328487e-03
## 8688    2 0.0020682523 1.60943791 3.328724e-03
## 8689    2 0.0020682523 1.60943791 3.328724e-03
## 8690    2 0.0020682523 1.60943791 3.328724e-03
## 8691    2 0.0020682523 1.60943791 3.328724e-03
## 8692    2 0.0020682523 1.60943791 3.328724e-03
## 8693    2 0.0020682523 1.60943791 3.328724e-03
## 8694    4 0.0042553191 0.78275934 3.330891e-03
## 8695    4 0.0042553191 0.78275934 3.330891e-03
## 8696    2 0.0017123288 1.94591015 3.332038e-03
## 8697    2 0.0017123288 1.94591015 3.332038e-03
## 8698    2 0.0017123288 1.94591015 3.332038e-03
## 8699    1 0.0017123288 1.94591015 3.332038e-03
## 8700    1 0.0017123288 1.94591015 3.332038e-03
## 8701    1 0.0017123288 1.94591015 3.332038e-03
## 8702    1 0.0017123288 1.94591015 3.332038e-03
## 8703    1 0.0017123288 1.94591015 3.332038e-03
## 8704    1 0.0017123288 1.94591015 3.332038e-03
## 8705    1 0.0017123288 1.94591015 3.332038e-03
## 8706    1 0.0017123288 1.94591015 3.332038e-03
## 8707    1 0.0017123288 1.94591015 3.332038e-03
## 8708    1 0.0017123288 1.94591015 3.332038e-03
## 8709    1 0.0017123288 1.94591015 3.332038e-03
## 8710    1 0.0024570025 1.35812348 3.336913e-03
## 8711    1 0.0024570025 1.35812348 3.336913e-03
## 8712    1 0.0024570025 1.35812348 3.336913e-03
## 8713    1 0.0024570025 1.35812348 3.336913e-03
## 8714    1 0.0024570025 1.35812348 3.336913e-03
## 8715    2 0.0026666667 1.25276297 3.340701e-03
## 8716    2 0.0026666667 1.25276297 3.340701e-03
## 8717    2 0.0059701493 0.55961579 3.340990e-03
## 8718    2 0.0059701493 0.55961579 3.340990e-03
## 8719    6 0.0080000000 0.41985385 3.358831e-03
## 8720    2 0.0022779043 1.47590652 3.361974e-03
## 8721    2 0.0022779043 1.47590652 3.361974e-03
## 8722    2 0.0022779043 1.47590652 3.361974e-03
## 8723    2 0.0022779043 1.47590652 3.361974e-03
## 8724   10 0.0055035773 0.61090908 3.362185e-03
## 8725    1 0.0029069767 1.15745279 3.364688e-03
## 8726    1 0.0029069767 1.15745279 3.364688e-03
## 8727    1 0.0029069767 1.15745279 3.364688e-03
## 8728    1 0.0029069767 1.15745279 3.364688e-03
## 8729    5 0.0050607287 0.66497630 3.365265e-03
## 8730    5 0.0031446541 1.07044141 3.366168e-03
## 8731    5 0.0031446541 1.07044141 3.366168e-03
## 8732    1 0.0011764706 2.86220088 3.367295e-03
## 8733    1 0.0011764706 2.86220088 3.367295e-03
## 8734    1 0.0011764706 2.86220088 3.367295e-03
## 8735    1 0.0011764706 2.86220088 3.367295e-03
## 8736    1 0.0011764706 2.86220088 3.367295e-03
## 8737    1 0.0011764706 2.86220088 3.367295e-03
## 8738    1 0.0011764706 2.86220088 3.367295e-03
## 8739    1 0.0011764706 2.86220088 3.367295e-03
## 8740    1 0.0011764706 2.86220088 3.367295e-03
## 8741    1 0.0011764706 2.86220088 3.367295e-03
## 8742    1 0.0011764706 2.86220088 3.367295e-03
## 8743    1 0.0011764706 2.86220088 3.367295e-03
## 8744    1 0.0011764706 2.86220088 3.367295e-03
## 8745    1 0.0011764706 2.86220088 3.367295e-03
## 8746    1 0.0011764706 2.86220088 3.367295e-03
## 8747    1 0.0011764706 2.86220088 3.367295e-03
## 8748    1 0.0011764706 2.86220088 3.367295e-03
## 8749    1 0.0011764706 2.86220088 3.367295e-03
## 8750    1 0.0011764706 2.86220088 3.367295e-03
## 8751    1 0.0011764706 2.86220088 3.367295e-03
## 8752    1 0.0011764706 2.86220088 3.367295e-03
## 8753    1 0.0011764706 2.86220088 3.367295e-03
## 8754    1 0.0011764706 2.86220088 3.367295e-03
## 8755    1 0.0011764706 2.86220088 3.367295e-03
## 8756    1 0.0011764706 2.86220088 3.367295e-03
## 8757    1 0.0011764706 2.86220088 3.367295e-03
## 8758    1 0.0011764706 2.86220088 3.367295e-03
## 8759    1 0.0011764706 2.86220088 3.367295e-03
## 8760    1 0.0011764706 2.86220088 3.367295e-03
## 8761    1 0.0011764706 2.86220088 3.367295e-03
## 8762    1 0.0011764706 2.86220088 3.367295e-03
## 8763    1 0.0011764706 2.86220088 3.367295e-03
## 8764    1 0.0011764706 2.86220088 3.367295e-03
## 8765    1 0.0011764706 2.86220088 3.367295e-03
## 8766    1 0.0026954178 1.25276297 3.376720e-03
## 8767    1 0.0026954178 1.25276297 3.376720e-03
## 8768    1 0.0026954178 1.25276297 3.376720e-03
## 8769    1 0.0026954178 1.25276297 3.376720e-03
## 8770    1 0.0026954178 1.25276297 3.376720e-03
## 8771    1 0.0013774105 2.45673577 3.383934e-03
## 8772    1 0.0013774105 2.45673577 3.383934e-03
## 8773    1 0.0013774105 2.45673577 3.383934e-03
## 8774    1 0.0013774105 2.45673577 3.383934e-03
## 8775    1 0.0013774105 2.45673577 3.383934e-03
## 8776    1 0.0013774105 2.45673577 3.383934e-03
## 8777    1 0.0013774105 2.45673577 3.383934e-03
## 8778    1 0.0013774105 2.45673577 3.383934e-03
## 8779    1 0.0013774105 2.45673577 3.383934e-03
## 8780    1 0.0013774105 2.45673577 3.383934e-03
## 8781    1 0.0013774105 2.45673577 3.383934e-03
## 8782    1 0.0013774105 2.45673577 3.383934e-03
## 8783    1 0.0013774105 2.45673577 3.383934e-03
## 8784    1 0.0013774105 2.45673577 3.383934e-03
## 8785    1 0.0013774105 2.45673577 3.383934e-03
## 8786    1 0.0013774105 2.45673577 3.383934e-03
## 8787    1 0.0013774105 2.45673577 3.383934e-03
## 8788    1 0.0013774105 2.45673577 3.383934e-03
## 8789    1 0.0013774105 2.45673577 3.383934e-03
## 8790    1 0.0013774105 2.45673577 3.383934e-03
## 8791    1 0.0013774105 2.45673577 3.383934e-03
## 8792    1 0.0013774105 2.45673577 3.383934e-03
## 8793    1 0.0013774105 2.45673577 3.383934e-03
## 8794    1 0.0013774105 2.45673577 3.383934e-03
## 8795    1 0.0013774105 2.45673577 3.383934e-03
## 8796    1 0.0013774105 2.45673577 3.383934e-03
## 8797    1 0.0013774105 2.45673577 3.383934e-03
## 8798    1 0.0013774105 2.45673577 3.383934e-03
## 8799    1 0.0013774105 2.45673577 3.383934e-03
## 8800    1 0.0013774105 2.45673577 3.383934e-03
## 8801    3 0.0034168565 0.99039870 3.384050e-03
## 8802    3 0.0034168565 0.99039870 3.384050e-03
## 8803    1 0.0024937656 1.35812348 3.386842e-03
## 8804    1 0.0024937656 1.35812348 3.386842e-03
## 8805    1 0.0024937656 1.35812348 3.386842e-03
## 8806    1 0.0024937656 1.35812348 3.386842e-03
## 8807    3 0.0040000000 0.84729786 3.389191e-03
## 8808    3 0.0040000000 0.84729786 3.389191e-03
## 8809    4 0.0034246575 0.99039870 3.391776e-03
## 8810    2 0.0034246575 0.99039870 3.391776e-03
## 8811    2 0.0034246575 0.99039870 3.391776e-03
## 8812    1 0.0034246575 0.99039870 3.391776e-03
## 8813    1 0.0034246575 0.99039870 3.391776e-03
## 8814    1 0.0034246575 0.99039870 3.391776e-03
## 8815    1 0.0034246575 0.99039870 3.391776e-03
## 8816    6 0.0060728745 0.55961579 3.398476e-03
## 8817    6 0.0060728745 0.55961579 3.398476e-03
## 8818    2 0.0037105751 0.91629073 3.399966e-03
## 8819    2 0.0037105751 0.91629073 3.399966e-03
## 8820    2 0.0037105751 0.91629073 3.399966e-03
## 8821    2 0.0037105751 0.91629073 3.399966e-03
## 8822    7 0.0043532338 0.78275934 3.407534e-03
## 8823    3 0.0021186441 1.60943791 3.409826e-03
## 8824    3 0.0021186441 1.60943791 3.409826e-03
## 8825    2 0.0055865922 0.61090908 3.412900e-03
## 8826    2 0.0055865922 0.61090908 3.412900e-03
## 8827    6 0.0051369863 0.66497630 3.415974e-03
## 8828    3 0.0031914894 1.07044141 3.416302e-03
## 8829    4 0.0025157233 1.35812348 3.416663e-03
## 8830    6 0.0037313433 0.91629073 3.418995e-03
## 8831    2 0.0021276596 1.60943791 3.424336e-03
## 8832    2 0.0021276596 1.60943791 3.424336e-03
## 8833    2 0.0021276596 1.60943791 3.424336e-03
## 8834    2 0.0021276596 1.60943791 3.424336e-03
## 8835    2 0.0021276596 1.60943791 3.424336e-03
## 8836    2 0.0021276596 1.60943791 3.424336e-03
## 8837    1 0.0034602076 0.99039870 3.426985e-03
## 8838    4 0.0040485830 0.84729786 3.430356e-03
## 8839    4 0.0040485830 0.84729786 3.430356e-03
## 8840    4 0.0040485830 0.84729786 3.430356e-03
## 8841    8 0.0040609137 0.84729786 3.440803e-03
## 8842    4 0.0074211503 0.46430561 3.445682e-03
## 8843    2 0.0027548209 1.25276297 3.451138e-03
## 8844    2 0.0027548209 1.25276297 3.451138e-03
## 8845    1 0.0029850746 1.15745279 3.455083e-03
## 8846    1 0.0029850746 1.15745279 3.455083e-03
## 8847    1 0.0029850746 1.15745279 3.455083e-03
## 8848    1 0.0029850746 1.15745279 3.455083e-03
## 8849    1 0.0029850746 1.15745279 3.455083e-03
## 8850    3 0.0019595036 1.76358859 3.455758e-03
## 8851    3 0.0019595036 1.76358859 3.455758e-03
## 8852    3 0.0019595036 1.76358859 3.455758e-03
## 8853    7 0.0082352941 0.41985385 3.457620e-03
## 8854    9 0.0056603774 0.61090908 3.457976e-03
## 8855    1 0.0012121212 2.86220088 3.469334e-03
## 8856    1 0.0012121212 2.86220088 3.469334e-03
## 8857    1 0.0012121212 2.86220088 3.469334e-03
## 8858    1 0.0012121212 2.86220088 3.469334e-03
## 8859    1 0.0012121212 2.86220088 3.469334e-03
## 8860    1 0.0012121212 2.86220088 3.469334e-03
## 8861    1 0.0012121212 2.86220088 3.469334e-03
## 8862    1 0.0012121212 2.86220088 3.469334e-03
## 8863    1 0.0012121212 2.86220088 3.469334e-03
## 8864    1 0.0012121212 2.86220088 3.469334e-03
## 8865    1 0.0012121212 2.86220088 3.469334e-03
## 8866    1 0.0012121212 2.86220088 3.469334e-03
## 8867    1 0.0012121212 2.86220088 3.469334e-03
## 8868    1 0.0012121212 2.86220088 3.469334e-03
## 8869    1 0.0012121212 2.86220088 3.469334e-03
## 8870    1 0.0012121212 2.86220088 3.469334e-03
## 8871    1 0.0012121212 2.86220088 3.469334e-03
## 8872    1 0.0012121212 2.86220088 3.469334e-03
## 8873    1 0.0012121212 2.86220088 3.469334e-03
## 8874    1 0.0012121212 2.86220088 3.469334e-03
## 8875    1 0.0012121212 2.86220088 3.469334e-03
## 8876    1 0.0012121212 2.86220088 3.469334e-03
## 8877    1 0.0012121212 2.86220088 3.469334e-03
## 8878    1 0.0012121212 2.86220088 3.469334e-03
## 8879    1 0.0012121212 2.86220088 3.469334e-03
## 8880    1 0.0012121212 2.86220088 3.469334e-03
## 8881    1 0.0012121212 2.86220088 3.469334e-03
## 8882    1 0.0012121212 2.86220088 3.469334e-03
## 8883    1 0.0012121212 2.86220088 3.469334e-03
## 8884    1 0.0012121212 2.86220088 3.469334e-03
## 8885    1 0.0012121212 2.86220088 3.469334e-03
## 8886    1 0.0012121212 2.86220088 3.469334e-03
## 8887    1 0.0012121212 2.86220088 3.469334e-03
## 8888    1 0.0012121212 2.86220088 3.469334e-03
## 8889    1 0.0012121212 2.86220088 3.469334e-03
## 8890    1 0.0012121212 2.86220088 3.469334e-03
## 8891    1 0.0012121212 2.86220088 3.469334e-03
## 8892    1 0.0012121212 2.86220088 3.469334e-03
## 8893    1 0.0012121212 2.86220088 3.469334e-03
## 8894    1 0.0012121212 2.86220088 3.469334e-03
## 8895    1 0.0012121212 2.86220088 3.469334e-03
## 8896    1 0.0012121212 2.86220088 3.469334e-03
## 8897    1 0.0012121212 2.86220088 3.469334e-03
## 8898    1 0.0012121212 2.86220088 3.469334e-03
## 8899    1 0.0012121212 2.86220088 3.469334e-03
## 8900    2 0.0014124294 2.45673577 3.469966e-03
## 8901    2 0.0014124294 2.45673577 3.469966e-03
## 8902    2 0.0014124294 2.45673577 3.469966e-03
## 8903    2 0.0014124294 2.45673577 3.469966e-03
## 8904    2 0.0014124294 2.45673577 3.469966e-03
## 8905    2 0.0014124294 2.45673577 3.469966e-03
## 8906    2 0.0014124294 2.45673577 3.469966e-03
## 8907    2 0.0014124294 2.45673577 3.469966e-03
## 8908    2 0.0014124294 2.45673577 3.469966e-03
## 8909    2 0.0014124294 2.45673577 3.469966e-03
## 8910    2 0.0023529412 1.47590652 3.472721e-03
## 8911    2 0.0023529412 1.47590652 3.472721e-03
## 8912    2 0.0023529412 1.47590652 3.472721e-03
## 8913    2 0.0032467532 1.07044141 3.475459e-03
## 8914    2 0.0032467532 1.07044141 3.475459e-03
## 8915    2 0.0032467532 1.07044141 3.475459e-03
## 8916    5 0.0056947608 0.61090908 3.478981e-03
## 8917   10 0.0103412616 0.33647224 3.479547e-03
## 8918    1 0.0017889088 1.94591015 3.481056e-03
## 8919    1 0.0017889088 1.94591015 3.481056e-03
## 8920    1 0.0017889088 1.94591015 3.481056e-03
## 8921    1 0.0017889088 1.94591015 3.481056e-03
## 8922    1 0.0017889088 1.94591015 3.481056e-03
## 8923    1 0.0017889088 1.94591015 3.481056e-03
## 8924    1 0.0017889088 1.94591015 3.481056e-03
## 8925    1 0.0017889088 1.94591015 3.481056e-03
## 8926    1 0.0017889088 1.94591015 3.481056e-03
## 8927    1 0.0017889088 1.94591015 3.481056e-03
## 8928    1 0.0017889088 1.94591015 3.481056e-03
## 8929    1 0.0017889088 1.94591015 3.481056e-03
## 8930    1 0.0017889088 1.94591015 3.481056e-03
## 8931   19 0.0134180791 0.25951120 3.482142e-03
## 8932    1 0.0023640662 1.47590652 3.489141e-03
## 8933    1 0.0023640662 1.47590652 3.489141e-03
## 8934    1 0.0023640662 1.47590652 3.489141e-03
## 8935    1 0.0023640662 1.47590652 3.489141e-03
## 8936    1 0.0023640662 1.47590652 3.489141e-03
## 8937    1 0.0023640662 1.47590652 3.489141e-03
## 8938    1 0.0023640662 1.47590652 3.489141e-03
## 8939    1 0.0023640662 1.47590652 3.489141e-03
## 8940    1 0.0023640662 1.47590652 3.489141e-03
## 8941    1 0.0023640662 1.47590652 3.489141e-03
## 8942    1 0.0023640662 1.47590652 3.489141e-03
## 8943    1 0.0023640662 1.47590652 3.489141e-03
## 8944    5 0.0032658393 1.07044141 3.495890e-03
## 8945    2 0.0068493151 0.51082562 3.498806e-03
## 8946    1 0.0027932961 1.25276297 3.499338e-03
## 8947    1 0.0027932961 1.25276297 3.499338e-03
## 8948    1 0.0027932961 1.25276297 3.499338e-03
## 8949   18 0.0186142709 0.18805223 3.500455e-03
## 8950    3 0.0041322314 0.84729786 3.501231e-03
## 8951    3 0.0041322314 0.84729786 3.501231e-03
## 8952    4 0.0041365047 0.84729786 3.504852e-03
## 8953    3 0.0083798883 0.41985385 3.518328e-03
## 8954   10 0.0062893082 0.55961579 3.519596e-03
## 8955    1 0.0016233766 2.16905370 3.521191e-03
## 8956    1 0.0016233766 2.16905370 3.521191e-03
## 8957    1 0.0016233766 2.16905370 3.521191e-03
## 8958    1 0.0016233766 2.16905370 3.521191e-03
## 8959    1 0.0016233766 2.16905370 3.521191e-03
## 8960    1 0.0016233766 2.16905370 3.521191e-03
## 8961    1 0.0016233766 2.16905370 3.521191e-03
## 8962    1 0.0016233766 2.16905370 3.521191e-03
## 8963    1 0.0016233766 2.16905370 3.521191e-03
## 8964    1 0.0016233766 2.16905370 3.521191e-03
## 8965    1 0.0016233766 2.16905370 3.521191e-03
## 8966    1 0.0016233766 2.16905370 3.521191e-03
## 8967    1 0.0016233766 2.16905370 3.521191e-03
## 8968    1 0.0016233766 2.16905370 3.521191e-03
## 8969    1 0.0016233766 2.16905370 3.521191e-03
## 8970    1 0.0016233766 2.16905370 3.521191e-03
## 8971    1 0.0016233766 2.16905370 3.521191e-03
## 8972    1 0.0016233766 2.16905370 3.521191e-03
## 8973    1 0.0021929825 1.60943791 3.529469e-03
## 8974    1 0.0021929825 1.60943791 3.529469e-03
## 8975    1 0.0021929825 1.60943791 3.529469e-03
## 8976    1 0.0021929825 1.60943791 3.529469e-03
## 8977    1 0.0021929825 1.60943791 3.529469e-03
## 8978    1 0.0021929825 1.60943791 3.529469e-03
## 8979    1 0.0021929825 1.60943791 3.529469e-03
## 8980    1 0.0021929825 1.60943791 3.529469e-03
## 8981    1 0.0021929825 1.60943791 3.529469e-03
## 8982    7 0.0038525041 0.91629073 3.530014e-03
## 8983    7 0.0038525041 0.91629073 3.530014e-03
## 8984    4 0.0053120850 0.66497630 3.532411e-03
## 8985   11 0.0069182390 0.51082562 3.534014e-03
## 8986    3 0.0033039648 1.07044141 3.536701e-03
## 8987    4 0.0028248588 1.25276297 3.538878e-03
## 8988    4 0.0028248588 1.25276297 3.538878e-03
## 8989    4 0.0022014309 1.60943791 3.543066e-03
## 8990    4 0.0022014309 1.60943791 3.543066e-03
## 8991    4 0.0022014309 1.60943791 3.543066e-03
## 8992    2 0.0035778175 0.99039870 3.543466e-03
## 8993    2 0.0035778175 0.99039870 3.543466e-03
## 8994    2 0.0035778175 0.99039870 3.543466e-03
## 8995    2 0.0035778175 0.99039870 3.543466e-03
## 8996    2 0.0035778175 0.99039870 3.543466e-03
## 8997    2 0.0022026432 1.60943791 3.545017e-03
## 8998    2 0.0022026432 1.60943791 3.545017e-03
## 8999    2 0.0022026432 1.60943791 3.545017e-03
## 9000    2 0.0022026432 1.60943791 3.545017e-03
## 9001    2 0.0022026432 1.60943791 3.545017e-03
## 9002    4 0.0026126715 1.35812348 3.548330e-03
## 9003    4 0.0026126715 1.35812348 3.548330e-03
## 9004    4 0.0026126715 1.35812348 3.548330e-03
## 9005    4 0.0026126715 1.35812348 3.548330e-03
## 9006    4 0.0119402985 0.29725152 3.549272e-03
## 9007    4 0.0105540897 0.33647224 3.551158e-03
## 9008    2 0.0012437811 2.86220088 3.559951e-03
## 9009    2 0.0012437811 2.86220088 3.559951e-03
## 9010    2 0.0012437811 2.86220088 3.559951e-03
## 9011    2 0.0012437811 2.86220088 3.559951e-03
## 9012    2 0.0012437811 2.86220088 3.559951e-03
## 9013    2 0.0012437811 2.86220088 3.559951e-03
## 9014    2 0.0012437811 2.86220088 3.559951e-03
## 9015    2 0.0012437811 2.86220088 3.559951e-03
## 9016    2 0.0012437811 2.86220088 3.559951e-03
## 9017    2 0.0012437811 2.86220088 3.559951e-03
## 9018    2 0.0012437811 2.86220088 3.559951e-03
## 9019    2 0.0012437811 2.86220088 3.559951e-03
## 9020    2 0.0012437811 2.86220088 3.559951e-03
## 9021    2 0.0012437811 2.86220088 3.559951e-03
## 9022    2 0.0012437811 2.86220088 3.559951e-03
## 9023    4 0.0045558087 0.78275934 3.566102e-03
## 9024    2 0.0020242915 1.76358859 3.570017e-03
## 9025    2 0.0020242915 1.76358859 3.570017e-03
## 9026    2 0.0020242915 1.76358859 3.570017e-03
## 9027    2 0.0020242915 1.76358859 3.570017e-03
## 9028    2 0.0020242915 1.76358859 3.570017e-03
## 9029    2 0.0020242915 1.76358859 3.570017e-03
## 9030    9 0.0045685279 0.78275934 3.576058e-03
## 9031    2 0.0024242424 1.47590652 3.577955e-03
## 9032    2 0.0024242424 1.47590652 3.577955e-03
## 9033    2 0.0024242424 1.47590652 3.577955e-03
## 9034    2 0.0024242424 1.47590652 3.577955e-03
## 9035    2 0.0024242424 1.47590652 3.577955e-03
## 9036    4 0.0020304569 1.76358859 3.580891e-03
## 9037    4 0.0020304569 1.76358859 3.580891e-03
## 9038    4 0.0020304569 1.76358859 3.580891e-03
## 9039    4 0.0020304569 1.76358859 3.580891e-03
## 9040    3 0.0016510732 2.16905370 3.581266e-03
## 9041    3 0.0016510732 2.16905370 3.581266e-03
## 9042    3 0.0016510732 2.16905370 3.581266e-03
## 9043    3 0.0016510732 2.16905370 3.581266e-03
## 9044    3 0.0016510732 2.16905370 3.581266e-03
## 9045    3 0.0016510732 2.16905370 3.581266e-03
## 9046    3 0.0016510732 2.16905370 3.581266e-03
## 9047    1 0.0026385224 1.35812348 3.583439e-03
## 9048    1 0.0026385224 1.35812348 3.583439e-03
## 9049    1 0.0026385224 1.35812348 3.583439e-03
## 9050    2 0.0053908356 0.66497630 3.584778e-03
## 9051    3 0.0031023785 1.15745279 3.590857e-03
## 9052    3 0.0031023785 1.15745279 3.590857e-03
## 9053    8 0.0049751244 0.72213472 3.592710e-03
## 9054    5 0.0058823529 0.61090908 3.593583e-03
## 9055    1 0.0010121457 3.55534806 3.598530e-03
## 9056    1 0.0010121457 3.55534806 3.598530e-03
## 9057    1 0.0010121457 3.55534806 3.598530e-03
## 9058    1 0.0010121457 3.55534806 3.598530e-03
## 9059    1 0.0010121457 3.55534806 3.598530e-03
## 9060    1 0.0010121457 3.55534806 3.598530e-03
## 9061    1 0.0010121457 3.55534806 3.598530e-03
## 9062    1 0.0010121457 3.55534806 3.598530e-03
## 9063    1 0.0010121457 3.55534806 3.598530e-03
## 9064    1 0.0010121457 3.55534806 3.598530e-03
## 9065    1 0.0010121457 3.55534806 3.598530e-03
## 9066    1 0.0010121457 3.55534806 3.598530e-03
## 9067    1 0.0010121457 3.55534806 3.598530e-03
## 9068    1 0.0010121457 3.55534806 3.598530e-03
## 9069    1 0.0010121457 3.55534806 3.598530e-03
## 9070    1 0.0010121457 3.55534806 3.598530e-03
## 9071    1 0.0010121457 3.55534806 3.598530e-03
## 9072    1 0.0010121457 3.55534806 3.598530e-03
## 9073    1 0.0010121457 3.55534806 3.598530e-03
## 9074    1 0.0010121457 3.55534806 3.598530e-03
## 9075    1 0.0010121457 3.55534806 3.598530e-03
## 9076    1 0.0010121457 3.55534806 3.598530e-03
## 9077    1 0.0010121457 3.55534806 3.598530e-03
## 9078    1 0.0010121457 3.55534806 3.598530e-03
## 9079    1 0.0010121457 3.55534806 3.598530e-03
## 9080    1 0.0010121457 3.55534806 3.598530e-03
## 9081    1 0.0010121457 3.55534806 3.598530e-03
## 9082    1 0.0010121457 3.55534806 3.598530e-03
## 9083    1 0.0010121457 3.55534806 3.598530e-03
## 9084    1 0.0010121457 3.55534806 3.598530e-03
## 9085    1 0.0010121457 3.55534806 3.598530e-03
## 9086    1 0.0010121457 3.55534806 3.598530e-03
## 9087    1 0.0010121457 3.55534806 3.598530e-03
## 9088    1 0.0010121457 3.55534806 3.598530e-03
## 9089    1 0.0010121457 3.55534806 3.598530e-03
## 9090    1 0.0010121457 3.55534806 3.598530e-03
## 9091    1 0.0010121457 3.55534806 3.598530e-03
## 9092    1 0.0010121457 3.55534806 3.598530e-03
## 9093    1 0.0010121457 3.55534806 3.598530e-03
## 9094    1 0.0010121457 3.55534806 3.598530e-03
## 9095    1 0.0010121457 3.55534806 3.598530e-03
## 9096    1 0.0010121457 3.55534806 3.598530e-03
## 9097    1 0.0010121457 3.55534806 3.598530e-03
## 9098    1 0.0010121457 3.55534806 3.598530e-03
## 9099    1 0.0010121457 3.55534806 3.598530e-03
## 9100    1 0.0010121457 3.55534806 3.598530e-03
## 9101    1 0.0010121457 3.55534806 3.598530e-03
## 9102    1 0.0010121457 3.55534806 3.598530e-03
## 9103    1 0.0010121457 3.55534806 3.598530e-03
## 9104    1 0.0010121457 3.55534806 3.598530e-03
## 9105    1 0.0010121457 3.55534806 3.598530e-03
## 9106    1 0.0010121457 3.55534806 3.598530e-03
## 9107    1 0.0010121457 3.55534806 3.598530e-03
## 9108    1 0.0010121457 3.55534806 3.598530e-03
## 9109    1 0.0010121457 3.55534806 3.598530e-03
## 9110    1 0.0010121457 3.55534806 3.598530e-03
## 9111    1 0.0010121457 3.55534806 3.598530e-03
## 9112    1 0.0010121457 3.55534806 3.598530e-03
## 9113    1 0.0010121457 3.55534806 3.598530e-03
## 9114    1 0.0010121457 3.55534806 3.598530e-03
## 9115    1 0.0010121457 3.55534806 3.598530e-03
## 9116    1 0.0010121457 3.55534806 3.598530e-03
## 9117    1 0.0010121457 3.55534806 3.598530e-03
## 9118    1 0.0010121457 3.55534806 3.598530e-03
## 9119    1 0.0010121457 3.55534806 3.598530e-03
## 9120    1 0.0010121457 3.55534806 3.598530e-03
## 9121    1 0.0010121457 3.55534806 3.598530e-03
## 9122    1 0.0010121457 3.55534806 3.598530e-03
## 9123    1 0.0010121457 3.55534806 3.598530e-03
## 9124    1 0.0010121457 3.55534806 3.598530e-03
## 9125    1 0.0010121457 3.55534806 3.598530e-03
## 9126    1 0.0010121457 3.55534806 3.598530e-03
## 9127    1 0.0010121457 3.55534806 3.598530e-03
## 9128    1 0.0010121457 3.55534806 3.598530e-03
## 9129    1 0.0010121457 3.55534806 3.598530e-03
## 9130    1 0.0010121457 3.55534806 3.598530e-03
## 9131    1 0.0010121457 3.55534806 3.598530e-03
## 9132    1 0.0010121457 3.55534806 3.598530e-03
## 9133    1 0.0010121457 3.55534806 3.598530e-03
## 9134    1 0.0010121457 3.55534806 3.598530e-03
## 9135    1 0.0010121457 3.55534806 3.598530e-03
## 9136    1 0.0010121457 3.55534806 3.598530e-03
## 9137    1 0.0010121457 3.55534806 3.598530e-03
## 9138    1 0.0010121457 3.55534806 3.598530e-03
## 9139    1 0.0010121457 3.55534806 3.598530e-03
## 9140    1 0.0010121457 3.55534806 3.598530e-03
## 9141    1 0.0010121457 3.55534806 3.598530e-03
## 9142    1 0.0010121457 3.55534806 3.598530e-03
## 9143    1 0.0010121457 3.55534806 3.598530e-03
## 9144    1 0.0010121457 3.55534806 3.598530e-03
## 9145    1 0.0010121457 3.55534806 3.598530e-03
## 9146    1 0.0010121457 3.55534806 3.598530e-03
## 9147    1 0.0010121457 3.55534806 3.598530e-03
## 9148    5 0.0031094527 1.15745279 3.599045e-03
## 9149    2 0.0012578616 2.86220088 3.600253e-03
## 9150    2 0.0012578616 2.86220088 3.600253e-03
## 9151    2 0.0012578616 2.86220088 3.600253e-03
## 9152    2 0.0012578616 2.86220088 3.600253e-03
## 9153    2 0.0012578616 2.86220088 3.600253e-03
## 9154    2 0.0012578616 2.86220088 3.600253e-03
## 9155    2 0.0012578616 2.86220088 3.600253e-03
## 9156    2 0.0012578616 2.86220088 3.600253e-03
## 9157    2 0.0012578616 2.86220088 3.600253e-03
## 9158    2 0.0012578616 2.86220088 3.600253e-03
## 9159    2 0.0012578616 2.86220088 3.600253e-03
## 9160    2 0.0012578616 2.86220088 3.600253e-03
## 9161    2 0.0012578616 2.86220088 3.600253e-03
## 9162    2 0.0012578616 2.86220088 3.600253e-03
## 9163    2 0.0012578616 2.86220088 3.600253e-03
## 9164    3 0.0036363636 0.99039870 3.601450e-03
## 9165    3 0.0036363636 0.99039870 3.601450e-03
## 9166    4 0.0042553191 0.84729786 3.605523e-03
## 9167    3 0.0033707865 1.07044141 3.608229e-03
## 9168    3 0.0033707865 1.07044141 3.608229e-03
## 9169    2 0.0010152284 3.55534806 3.609490e-03
## 9170    2 0.0010152284 3.55534806 3.609490e-03
## 9171    2 0.0010152284 3.55534806 3.609490e-03
## 9172    2 0.0010152284 3.55534806 3.609490e-03
## 9173    2 0.0010152284 3.55534806 3.609490e-03
## 9174    2 0.0010152284 3.55534806 3.609490e-03
## 9175    2 0.0010152284 3.55534806 3.609490e-03
## 9176    2 0.0010152284 3.55534806 3.609490e-03
## 9177    2 0.0010152284 3.55534806 3.609490e-03
## 9178    2 0.0010152284 3.55534806 3.609490e-03
## 9179    2 0.0010152284 3.55534806 3.609490e-03
## 9180    2 0.0010152284 3.55534806 3.609490e-03
## 9181    2 0.0010152284 3.55534806 3.609490e-03
## 9182    2 0.0010152284 3.55534806 3.609490e-03
## 9183    2 0.0010152284 3.55534806 3.609490e-03
## 9184    2 0.0010152284 3.55534806 3.609490e-03
## 9185    2 0.0010152284 3.55534806 3.609490e-03
## 9186    2 0.0010152284 3.55534806 3.609490e-03
## 9187    2 0.0010152284 3.55534806 3.609490e-03
## 9188    2 0.0010152284 3.55534806 3.609490e-03
## 9189    2 0.0010152284 3.55534806 3.609490e-03
## 9190    2 0.0010152284 3.55534806 3.609490e-03
## 9191    2 0.0010152284 3.55534806 3.609490e-03
## 9192    2 0.0010152284 3.55534806 3.609490e-03
## 9193    2 0.0010152284 3.55534806 3.609490e-03
## 9194    2 0.0010152284 3.55534806 3.609490e-03
## 9195    2 0.0010152284 3.55534806 3.609490e-03
## 9196    2 0.0010152284 3.55534806 3.609490e-03
## 9197    2 0.0010152284 3.55534806 3.609490e-03
## 9198    2 0.0010152284 3.55534806 3.609490e-03
## 9199    2 0.0010152284 3.55534806 3.609490e-03
## 9200    2 0.0010152284 3.55534806 3.609490e-03
## 9201    2 0.0010152284 3.55534806 3.609490e-03
## 9202    2 0.0010152284 3.55534806 3.609490e-03
## 9203    2 0.0010152284 3.55534806 3.609490e-03
## 9204    2 0.0010152284 3.55534806 3.609490e-03
## 9205    2 0.0010152284 3.55534806 3.609490e-03
## 9206    2 0.0010152284 3.55534806 3.609490e-03
## 9207    2 0.0010152284 3.55534806 3.609490e-03
## 9208    2 0.0010152284 3.55534806 3.609490e-03
## 9209    2 0.0010152284 3.55534806 3.609490e-03
## 9210    2 0.0010152284 3.55534806 3.609490e-03
## 9211    2 0.0010152284 3.55534806 3.609490e-03
## 9212    2 0.0010152284 3.55534806 3.609490e-03
## 9213    2 0.0010152284 3.55534806 3.609490e-03
## 9214    2 0.0010152284 3.55534806 3.609490e-03
## 9215    2 0.0010152284 3.55534806 3.609490e-03
## 9216    2 0.0010152284 3.55534806 3.609490e-03
## 9217    2 0.0010152284 3.55534806 3.609490e-03
## 9218    2 0.0010152284 3.55534806 3.609490e-03
## 9219    2 0.0010152284 3.55534806 3.609490e-03
## 9220    2 0.0010152284 3.55534806 3.609490e-03
## 9221    2 0.0010152284 3.55534806 3.609490e-03
## 9222    2 0.0010152284 3.55534806 3.609490e-03
## 9223    2 0.0010152284 3.55534806 3.609490e-03
## 9224    2 0.0010152284 3.55534806 3.609490e-03
## 9225    2 0.0010152284 3.55534806 3.609490e-03
## 9226    2 0.0010152284 3.55534806 3.609490e-03
## 9227    2 0.0010152284 3.55534806 3.609490e-03
## 9228    2 0.0010152284 3.55534806 3.609490e-03
## 9229    2 0.0010152284 3.55534806 3.609490e-03
## 9230    2 0.0010152284 3.55534806 3.609490e-03
## 9231    2 0.0010152284 3.55534806 3.609490e-03
## 9232    1 0.0018552876 1.94591015 3.610223e-03
## 9233    1 0.0018552876 1.94591015 3.610223e-03
## 9234    1 0.0018552876 1.94591015 3.610223e-03
## 9235    1 0.0018552876 1.94591015 3.610223e-03
## 9236    1 0.0018552876 1.94591015 3.610223e-03
## 9237    1 0.0018552876 1.94591015 3.610223e-03
## 9238    2 0.0022471910 1.60943791 3.616714e-03
## 9239    2 0.0022471910 1.60943791 3.616714e-03
## 9240    2 0.0022471910 1.60943791 3.616714e-03
## 9241    2 0.0022471910 1.60943791 3.616714e-03
## 9242    7 0.0070850202 0.51082562 3.619210e-03
## 9243    2 0.0026666667 1.35812348 3.621663e-03
## 9244    2 0.0026666667 1.35812348 3.621663e-03
## 9245    1 0.0024570025 1.47590652 3.626306e-03
## 9246    1 0.0024570025 1.47590652 3.626306e-03
## 9247    1 0.0024570025 1.47590652 3.626306e-03
## 9248    1 0.0024570025 1.47590652 3.626306e-03
## 9249    1 0.0024570025 1.47590652 3.626306e-03
## 9250    1 0.0024570025 1.47590652 3.626306e-03
## 9251    1 0.0024570025 1.47590652 3.626306e-03
## 9252    3 0.0018656716 1.94591015 3.630429e-03
## 9253    4 0.0064935065 0.55961579 3.633869e-03
## 9254    5 0.0031446541 1.15745279 3.639789e-03
## 9255    1 0.0029069767 1.25276297 3.641753e-03
## 9256    1 0.0029069767 1.25276297 3.641753e-03
## 9257    1 0.0029069767 1.25276297 3.641753e-03
## 9258    2 0.0059701493 0.61090908 3.647218e-03
## 9259    2 0.0020682523 1.76358859 3.647546e-03
## 9260    2 0.0020682523 1.76358859 3.647546e-03
## 9261    2 0.0020682523 1.76358859 3.647546e-03
## 9262    2 0.0020682523 1.76358859 3.647546e-03
## 9263    2 0.0020682523 1.76358859 3.647546e-03
## 9264    2 0.0020682523 1.76358859 3.647546e-03
## 9265    3 0.0039840637 0.91629073 3.650561e-03
## 9266    3 0.0039840637 0.91629073 3.650561e-03
## 9267    3 0.0039840637 0.91629073 3.650561e-03
## 9268    5 0.0050607287 0.72213472 3.654528e-03
## 9269    3 0.0034168565 1.07044141 3.657545e-03
## 9270   10 0.0055035773 0.66497630 3.659749e-03
## 9271    1 0.0026954178 1.35812348 3.660710e-03
## 9272    1 0.0026954178 1.35812348 3.660710e-03
## 9273    1 0.0026954178 1.35812348 3.660710e-03
## 9274    1 0.0026954178 1.35812348 3.660710e-03
## 9275    7 0.0059931507 0.61090908 3.661270e-03
## 9276    3 0.0040000000 0.91629073 3.665163e-03
## 9277    2 0.0034246575 1.07044141 3.665895e-03
## 9278    2 0.0034246575 1.07044141 3.665895e-03
## 9279    2 0.0034246575 1.07044141 3.665895e-03
## 9280    2 0.0034246575 1.07044141 3.665895e-03
## 9281    2 0.0034246575 1.07044141 3.665895e-03
## 9282    1 0.0034246575 1.07044141 3.665895e-03
## 9283    1 0.0034246575 1.07044141 3.665895e-03
## 9284    1 0.0034246575 1.07044141 3.665895e-03
## 9285    1 0.0034246575 1.07044141 3.665895e-03
## 9286    2 0.0022779043 1.60943791 3.666146e-03
## 9287    2 0.0022779043 1.60943791 3.666146e-03
## 9288    2 0.0022779043 1.60943791 3.666146e-03
## 9289    2 0.0022779043 1.60943791 3.666146e-03
## 9290    9 0.0109090909 0.33647224 3.670606e-03
## 9291    3 0.0079155673 0.46430561 3.675242e-03
## 9292    1 0.0010341262 3.55534806 3.676678e-03
## 9293    1 0.0010341262 3.55534806 3.676678e-03
## 9294    1 0.0010341262 3.55534806 3.676678e-03
## 9295    1 0.0010341262 3.55534806 3.676678e-03
## 9296    1 0.0010341262 3.55534806 3.676678e-03
## 9297    1 0.0010341262 3.55534806 3.676678e-03
## 9298    1 0.0010341262 3.55534806 3.676678e-03
## 9299    1 0.0010341262 3.55534806 3.676678e-03
## 9300    1 0.0010341262 3.55534806 3.676678e-03
## 9301    1 0.0010341262 3.55534806 3.676678e-03
## 9302    1 0.0010341262 3.55534806 3.676678e-03
## 9303    1 0.0010341262 3.55534806 3.676678e-03
## 9304    1 0.0010341262 3.55534806 3.676678e-03
## 9305    1 0.0010341262 3.55534806 3.676678e-03
## 9306    1 0.0010341262 3.55534806 3.676678e-03
## 9307    1 0.0010341262 3.55534806 3.676678e-03
## 9308    1 0.0010341262 3.55534806 3.676678e-03
## 9309    1 0.0010341262 3.55534806 3.676678e-03
## 9310    1 0.0010341262 3.55534806 3.676678e-03
## 9311    1 0.0010341262 3.55534806 3.676678e-03
## 9312    1 0.0010341262 3.55534806 3.676678e-03
## 9313    1 0.0010341262 3.55534806 3.676678e-03
## 9314    1 0.0010341262 3.55534806 3.676678e-03
## 9315    1 0.0010341262 3.55534806 3.676678e-03
## 9316    1 0.0010341262 3.55534806 3.676678e-03
## 9317    1 0.0010341262 3.55534806 3.676678e-03
## 9318    1 0.0010341262 3.55534806 3.676678e-03
## 9319    1 0.0010341262 3.55534806 3.676678e-03
## 9320    1 0.0010341262 3.55534806 3.676678e-03
## 9321    1 0.0010341262 3.55534806 3.676678e-03
## 9322    1 0.0010341262 3.55534806 3.676678e-03
## 9323    1 0.0010341262 3.55534806 3.676678e-03
## 9324    1 0.0010341262 3.55534806 3.676678e-03
## 9325    1 0.0010341262 3.55534806 3.676678e-03
## 9326    1 0.0010341262 3.55534806 3.676678e-03
## 9327    1 0.0010341262 3.55534806 3.676678e-03
## 9328    1 0.0010341262 3.55534806 3.676678e-03
## 9329    1 0.0010341262 3.55534806 3.676678e-03
## 9330    1 0.0010341262 3.55534806 3.676678e-03
## 9331    1 0.0010341262 3.55534806 3.676678e-03
## 9332    1 0.0010341262 3.55534806 3.676678e-03
## 9333    1 0.0010341262 3.55534806 3.676678e-03
## 9334    1 0.0010341262 3.55534806 3.676678e-03
## 9335    1 0.0010341262 3.55534806 3.676678e-03
## 9336    1 0.0010341262 3.55534806 3.676678e-03
## 9337    1 0.0010341262 3.55534806 3.676678e-03
## 9338    1 0.0010341262 3.55534806 3.676678e-03
## 9339    1 0.0010341262 3.55534806 3.676678e-03
## 9340    1 0.0010341262 3.55534806 3.676678e-03
## 9341    1 0.0010341262 3.55534806 3.676678e-03
## 9342    1 0.0010341262 3.55534806 3.676678e-03
## 9343    1 0.0010341262 3.55534806 3.676678e-03
## 9344    1 0.0010341262 3.55534806 3.676678e-03
## 9345    1 0.0010341262 3.55534806 3.676678e-03
## 9346    1 0.0010341262 3.55534806 3.676678e-03
## 9347    1 0.0010341262 3.55534806 3.676678e-03
## 9348    1 0.0010341262 3.55534806 3.676678e-03
## 9349    1 0.0010341262 3.55534806 3.676678e-03
## 9350    1 0.0010341262 3.55534806 3.676678e-03
## 9351    1 0.0010341262 3.55534806 3.676678e-03
## 9352    1 0.0010341262 3.55534806 3.676678e-03
## 9353    1 0.0010341262 3.55534806 3.676678e-03
## 9354    1 0.0010341262 3.55534806 3.676678e-03
## 9355    1 0.0010341262 3.55534806 3.676678e-03
## 9356    1 0.0010341262 3.55534806 3.676678e-03
## 9357    1 0.0010341262 3.55534806 3.676678e-03
## 9358    1 0.0010341262 3.55534806 3.676678e-03
## 9359    1 0.0010341262 3.55534806 3.676678e-03
## 9360    1 0.0010341262 3.55534806 3.676678e-03
## 9361    1 0.0010341262 3.55534806 3.676678e-03
## 9362    1 0.0010341262 3.55534806 3.676678e-03
## 9363    1 0.0010341262 3.55534806 3.676678e-03
## 9364    1 0.0010341262 3.55534806 3.676678e-03
## 9365    1 0.0010341262 3.55534806 3.676678e-03
## 9366    1 0.0010341262 3.55534806 3.676678e-03
## 9367    1 0.0010341262 3.55534806 3.676678e-03
## 9368    1 0.0010341262 3.55534806 3.676678e-03
## 9369    1 0.0010341262 3.55534806 3.676678e-03
## 9370    1 0.0010341262 3.55534806 3.676678e-03
## 9371    1 0.0010341262 3.55534806 3.676678e-03
## 9372    1 0.0010341262 3.55534806 3.676678e-03
## 9373    1 0.0010341262 3.55534806 3.676678e-03
## 9374    1 0.0010341262 3.55534806 3.676678e-03
## 9375    1 0.0010341262 3.55534806 3.676678e-03
## 9376    1 0.0024937656 1.47590652 3.680565e-03
## 9377    1 0.0024937656 1.47590652 3.680565e-03
## 9378    1 0.0024937656 1.47590652 3.680565e-03
## 9379    1 0.0024937656 1.47590652 3.680565e-03
## 9380    1 0.0024937656 1.47590652 3.680565e-03
## 9381    1 0.0024937656 1.47590652 3.680565e-03
## 9382    1 0.0024937656 1.47590652 3.680565e-03
## 9383    1 0.0024937656 1.47590652 3.680565e-03
## 9384    3 0.0065789474 0.55961579 3.681683e-03
## 9385    2 0.0047281324 0.78275934 3.700990e-03
## 9386    2 0.0047281324 0.78275934 3.700990e-03
## 9387    3 0.0055658627 0.66497630 3.701167e-03
## 9388    3 0.0055658627 0.66497630 3.701167e-03
## 9389    3 0.0055658627 0.66497630 3.701167e-03
## 9390    1 0.0034602076 1.07044141 3.703950e-03
## 9391    1 0.0034602076 1.07044141 3.703950e-03
## 9392    1 0.0034602076 1.07044141 3.703950e-03
## 9393    1 0.0034602076 1.07044141 3.703950e-03
## 9394    1 0.0034602076 1.07044141 3.703950e-03
## 9395    1 0.0034602076 1.07044141 3.703950e-03
## 9396    1 0.0034602076 1.07044141 3.703950e-03
## 9397    4 0.0025157233 1.47590652 3.712972e-03
## 9398    2 0.0017123288 2.16905370 3.714133e-03
## 9399    2 0.0017123288 2.16905370 3.714133e-03
## 9400    2 0.0017123288 2.16905370 3.714133e-03
## 9401    2 0.0017123288 2.16905370 3.714133e-03
## 9402    2 0.0017123288 2.16905370 3.714133e-03
## 9403    1 0.0017123288 2.16905370 3.714133e-03
## 9404    1 0.0017123288 2.16905370 3.714133e-03
## 9405    1 0.0017123288 2.16905370 3.714133e-03
## 9406    1 0.0017123288 2.16905370 3.714133e-03
## 9407    1 0.0017123288 2.16905370 3.714133e-03
## 9408    1 0.0017123288 2.16905370 3.714133e-03
## 9409    1 0.0017123288 2.16905370 3.714133e-03
## 9410    1 0.0017123288 2.16905370 3.714133e-03
## 9411    1 0.0017123288 2.16905370 3.714133e-03
## 9412    1 0.0017123288 2.16905370 3.714133e-03
## 9413    1 0.0017123288 2.16905370 3.714133e-03
## 9414    1 0.0017123288 2.16905370 3.714133e-03
## 9415    1 0.0017123288 2.16905370 3.714133e-03
## 9416    1 0.0017123288 2.16905370 3.714133e-03
## 9417    6 0.0080000000 0.46430561 3.714445e-03
## 9418    2 0.0055865922 0.66497630 3.714951e-03
## 9419    5 0.0066401062 0.55961579 3.715908e-03
## 9420    7 0.0125223614 0.29725152 3.722291e-03
## 9421    1 0.0060975610 0.61090908 3.725055e-03
## 9422    1 0.0060975610 0.61090908 3.725055e-03
## 9423    1 0.0060975610 0.61090908 3.725055e-03
## 9424    3 0.0021186441 1.76358859 3.736417e-03
## 9425    3 0.0021186441 1.76358859 3.736417e-03
## 9426    3 0.0021186441 1.76358859 3.736417e-03
## 9427    5 0.0027517887 1.35812348 3.737269e-03
## 9428    6 0.0037735849 0.99039870 3.737354e-03
## 9429    2 0.0013063357 2.86220088 3.738995e-03
## 9430    2 0.0013063357 2.86220088 3.738995e-03
## 9431    2 0.0013063357 2.86220088 3.738995e-03
## 9432    2 0.0013063357 2.86220088 3.738995e-03
## 9433    2 0.0013063357 2.86220088 3.738995e-03
## 9434    2 0.0013063357 2.86220088 3.738995e-03
## 9435    1 0.0029850746 1.25276297 3.739591e-03
## 9436    1 0.0029850746 1.25276297 3.739591e-03
## 9437    1 0.0029850746 1.25276297 3.739591e-03
## 9438    1 0.0029850746 1.25276297 3.739591e-03
## 9439    3 0.0015228426 2.45673577 3.741222e-03
## 9440    3 0.0015228426 2.45673577 3.741222e-03
## 9441    2 0.0027548209 1.35812348 3.741387e-03
## 9442    2 0.0027548209 1.35812348 3.741387e-03
## 9443    2 0.0027548209 1.35812348 3.741387e-03
## 9444    2 0.0027548209 1.35812348 3.741387e-03
## 9445    5 0.0025380711 1.47590652 3.745956e-03
## 9446    2 0.0021276596 1.76358859 3.752316e-03
## 9447    2 0.0021276596 1.76358859 3.752316e-03
## 9448    2 0.0021276596 1.76358859 3.752316e-03
## 9449    2 0.0021276596 1.76358859 3.752316e-03
## 9450    2 0.0021276596 1.76358859 3.752316e-03
## 9451    3 0.0080862534 0.46430561 3.754493e-03
## 9452    2 0.0032467532 1.15745279 3.757964e-03
## 9453    5 0.0081168831 0.46430561 3.768714e-03
## 9454    5 0.0081168831 0.46430561 3.768714e-03
## 9455    3 0.0035294118 1.07044141 3.778029e-03
## 9456    5 0.0035310734 1.07044141 3.779807e-03
## 9457    5 0.0035310734 1.07044141 3.779807e-03
## 9458    5 0.0032658393 1.15745279 3.780055e-03
## 9459    1 0.0010638298 3.55534806 3.782285e-03
## 9460    1 0.0010638298 3.55534806 3.782285e-03
## 9461    1 0.0010638298 3.55534806 3.782285e-03
## 9462    1 0.0010638298 3.55534806 3.782285e-03
## 9463    1 0.0010638298 3.55534806 3.782285e-03
## 9464    1 0.0010638298 3.55534806 3.782285e-03
## 9465    1 0.0010638298 3.55534806 3.782285e-03
## 9466    1 0.0010638298 3.55534806 3.782285e-03
## 9467    1 0.0010638298 3.55534806 3.782285e-03
## 9468    1 0.0010638298 3.55534806 3.782285e-03
## 9469    1 0.0010638298 3.55534806 3.782285e-03
## 9470    1 0.0010638298 3.55534806 3.782285e-03
## 9471    1 0.0010638298 3.55534806 3.782285e-03
## 9472    1 0.0010638298 3.55534806 3.782285e-03
## 9473    1 0.0010638298 3.55534806 3.782285e-03
## 9474    1 0.0010638298 3.55534806 3.782285e-03
## 9475    1 0.0010638298 3.55534806 3.782285e-03
## 9476    1 0.0010638298 3.55534806 3.782285e-03
## 9477    1 0.0010638298 3.55534806 3.782285e-03
## 9478    1 0.0010638298 3.55534806 3.782285e-03
## 9479    1 0.0010638298 3.55534806 3.782285e-03
## 9480    1 0.0010638298 3.55534806 3.782285e-03
## 9481    1 0.0010638298 3.55534806 3.782285e-03
## 9482    1 0.0010638298 3.55534806 3.782285e-03
## 9483    1 0.0010638298 3.55534806 3.782285e-03
## 9484    1 0.0010638298 3.55534806 3.782285e-03
## 9485    1 0.0010638298 3.55534806 3.782285e-03
## 9486    1 0.0010638298 3.55534806 3.782285e-03
## 9487    1 0.0010638298 3.55534806 3.782285e-03
## 9488    1 0.0010638298 3.55534806 3.782285e-03
## 9489    1 0.0010638298 3.55534806 3.782285e-03
## 9490    1 0.0010638298 3.55534806 3.782285e-03
## 9491    1 0.0010638298 3.55534806 3.782285e-03
## 9492    1 0.0010638298 3.55534806 3.782285e-03
## 9493    1 0.0010638298 3.55534806 3.782285e-03
## 9494    1 0.0010638298 3.55534806 3.782285e-03
## 9495    1 0.0010638298 3.55534806 3.782285e-03
## 9496    1 0.0010638298 3.55534806 3.782285e-03
## 9497    1 0.0010638298 3.55534806 3.782285e-03
## 9498    1 0.0010638298 3.55534806 3.782285e-03
## 9499    1 0.0010638298 3.55534806 3.782285e-03
## 9500    1 0.0010638298 3.55534806 3.782285e-03
## 9501    1 0.0010638298 3.55534806 3.782285e-03
## 9502    1 0.0010638298 3.55534806 3.782285e-03
## 9503    1 0.0010638298 3.55534806 3.782285e-03
## 9504    1 0.0010638298 3.55534806 3.782285e-03
## 9505    1 0.0010638298 3.55534806 3.782285e-03
## 9506    1 0.0010638298 3.55534806 3.782285e-03
## 9507    1 0.0010638298 3.55534806 3.782285e-03
## 9508    1 0.0010638298 3.55534806 3.782285e-03
## 9509    1 0.0010638298 3.55534806 3.782285e-03
## 9510    1 0.0010638298 3.55534806 3.782285e-03
## 9511    1 0.0010638298 3.55534806 3.782285e-03
## 9512    1 0.0010638298 3.55534806 3.782285e-03
## 9513    1 0.0010638298 3.55534806 3.782285e-03
## 9514    1 0.0010638298 3.55534806 3.782285e-03
## 9515    1 0.0010638298 3.55534806 3.782285e-03
## 9516    1 0.0010638298 3.55534806 3.782285e-03
## 9517    3 0.0041322314 0.91629073 3.786325e-03
## 9518    2 0.0023529412 1.60943791 3.786913e-03
## 9519    2 0.0023529412 1.60943791 3.786913e-03
## 9520    2 0.0023529412 1.60943791 3.786913e-03
## 9521    4 0.0041365047 0.91629073 3.790241e-03
## 9522    4 0.0041365047 0.91629073 3.790241e-03
## 9523    3 0.0025684932 1.47590652 3.790856e-03
## 9524    1 0.0027932961 1.35812348 3.793641e-03
## 9525    1 0.0027932961 1.35812348 3.793641e-03
## 9526   13 0.0081761006 0.46430561 3.796209e-03
## 9527   10 0.0062189055 0.61090908 3.799186e-03
## 9528    1 0.0013280212 2.86220088 3.801064e-03
## 9529    1 0.0013280212 2.86220088 3.801064e-03
## 9530    1 0.0013280212 2.86220088 3.801064e-03
## 9531    1 0.0013280212 2.86220088 3.801064e-03
## 9532    1 0.0013280212 2.86220088 3.801064e-03
## 9533    1 0.0013280212 2.86220088 3.801064e-03
## 9534    1 0.0013280212 2.86220088 3.801064e-03
## 9535    1 0.0013280212 2.86220088 3.801064e-03
## 9536    1 0.0013280212 2.86220088 3.801064e-03
## 9537    1 0.0013280212 2.86220088 3.801064e-03
## 9538    1 0.0013280212 2.86220088 3.801064e-03
## 9539    1 0.0013280212 2.86220088 3.801064e-03
## 9540    1 0.0013280212 2.86220088 3.801064e-03
## 9541    1 0.0013280212 2.86220088 3.801064e-03
## 9542    1 0.0013280212 2.86220088 3.801064e-03
## 9543    1 0.0013280212 2.86220088 3.801064e-03
## 9544    1 0.0013280212 2.86220088 3.801064e-03
## 9545    1 0.0013280212 2.86220088 3.801064e-03
## 9546    1 0.0013280212 2.86220088 3.801064e-03
## 9547    1 0.0013280212 2.86220088 3.801064e-03
## 9548    1 0.0013280212 2.86220088 3.801064e-03
## 9549    1 0.0013280212 2.86220088 3.801064e-03
## 9550    1 0.0013280212 2.86220088 3.801064e-03
## 9551    1 0.0013280212 2.86220088 3.801064e-03
## 9552    1 0.0013280212 2.86220088 3.801064e-03
## 9553    1 0.0013280212 2.86220088 3.801064e-03
## 9554    1 0.0013280212 2.86220088 3.801064e-03
## 9555    1 0.0013280212 2.86220088 3.801064e-03
## 9556    1 0.0013280212 2.86220088 3.801064e-03
## 9557    7 0.0035532995 1.07044141 3.803599e-03
## 9558    3 0.0030364372 1.25276297 3.803936e-03
## 9559    3 0.0030364372 1.25276297 3.803936e-03
## 9560    3 0.0030364372 1.25276297 3.803936e-03
## 9561    1 0.0023640662 1.60943791 3.804818e-03
## 9562    1 0.0023640662 1.60943791 3.804818e-03
## 9563    1 0.0023640662 1.60943791 3.804818e-03
## 9564    1 0.0023640662 1.60943791 3.804818e-03
## 9565    1 0.0023640662 1.60943791 3.804818e-03
## 9566    1 0.0023640662 1.60943791 3.804818e-03
## 9567    1 0.0023640662 1.60943791 3.804818e-03
## 9568    1 0.0023640662 1.60943791 3.804818e-03
## 9569   11 0.0146666667 0.25951120 3.806164e-03
## 9570    2 0.0052770449 0.72213472 3.810737e-03
## 9571    2 0.0052770449 0.72213472 3.810737e-03
## 9572    3 0.0019595036 1.94591015 3.813018e-03
## 9573    1 0.0013333333 2.86220088 3.816268e-03
## 9574    1 0.0013333333 2.86220088 3.816268e-03
## 9575    1 0.0013333333 2.86220088 3.816268e-03
## 9576    1 0.0013333333 2.86220088 3.816268e-03
## 9577    1 0.0013333333 2.86220088 3.816268e-03
## 9578    1 0.0013333333 2.86220088 3.816268e-03
## 9579    1 0.0013333333 2.86220088 3.816268e-03
## 9580    1 0.0013333333 2.86220088 3.816268e-03
## 9581    1 0.0013333333 2.86220088 3.816268e-03
## 9582    1 0.0013333333 2.86220088 3.816268e-03
## 9583    1 0.0013333333 2.86220088 3.816268e-03
## 9584    1 0.0013333333 2.86220088 3.816268e-03
## 9585    1 0.0013333333 2.86220088 3.816268e-03
## 9586    1 0.0013333333 2.86220088 3.816268e-03
## 9587    1 0.0013333333 2.86220088 3.816268e-03
## 9588    1 0.0013333333 2.86220088 3.816268e-03
## 9589    1 0.0013333333 2.86220088 3.816268e-03
## 9590    1 0.0013333333 2.86220088 3.816268e-03
## 9591    1 0.0013333333 2.86220088 3.816268e-03
## 9592    1 0.0013333333 2.86220088 3.816268e-03
## 9593    1 0.0013333333 2.86220088 3.816268e-03
## 9594    1 0.0013333333 2.86220088 3.816268e-03
## 9595    1 0.0013333333 2.86220088 3.816268e-03
## 9596    1 0.0013333333 2.86220088 3.816268e-03
## 9597    1 0.0013333333 2.86220088 3.816268e-03
## 9598    1 0.0013333333 2.86220088 3.816268e-03
## 9599    1 0.0013333333 2.86220088 3.816268e-03
## 9600    1 0.0013333333 2.86220088 3.816268e-03
## 9601    1 0.0013333333 2.86220088 3.816268e-03
## 9602    1 0.0013333333 2.86220088 3.816268e-03
## 9603    1 0.0013333333 2.86220088 3.816268e-03
## 9604    1 0.0013333333 2.86220088 3.816268e-03
## 9605    1 0.0013333333 2.86220088 3.816268e-03
## 9606    1 0.0013333333 2.86220088 3.816268e-03
## 9607    1 0.0013333333 2.86220088 3.816268e-03
## 9608    1 0.0013333333 2.86220088 3.816268e-03
## 9609    1 0.0013333333 2.86220088 3.816268e-03
## 9610    1 0.0013333333 2.86220088 3.816268e-03
## 9611    1 0.0013333333 2.86220088 3.816268e-03
## 9612    1 0.0013333333 2.86220088 3.816268e-03
## 9613    1 0.0013333333 2.86220088 3.816268e-03
## 9614    1 0.0013333333 2.86220088 3.816268e-03
## 9615    1 0.0013333333 2.86220088 3.816268e-03
## 9616    1 0.0013333333 2.86220088 3.816268e-03
## 9617    1 0.0013333333 2.86220088 3.816268e-03
## 9618    1 0.0013333333 2.86220088 3.816268e-03
## 9619    2 0.0035778175 1.07044141 3.829844e-03
## 9620    2 0.0035778175 1.07044141 3.829844e-03
## 9621    2 0.0035778175 1.07044141 3.829844e-03
## 9622    4 0.0068493151 0.55961579 3.832985e-03
## 9623    2 0.0068493151 0.55961579 3.832985e-03
## 9624    4 0.0028248588 1.35812348 3.836507e-03
## 9625    4 0.0028248588 1.35812348 3.836507e-03
## 9626    4 0.0028248588 1.35812348 3.836507e-03
## 9627   14 0.0091443501 0.41985385 3.839291e-03
## 9628    5 0.0053191489 0.72213472 3.841142e-03
## 9629    1 0.0045454545 0.84729786 3.851354e-03
## 9630    4 0.0026126715 1.47590652 3.856059e-03
## 9631    4 0.0026126715 1.47590652 3.856059e-03
## 9632    2 0.0058139535 0.66497630 3.866141e-03
## 9633    1 0.0021929825 1.76358859 3.867519e-03
## 9634    1 0.0021929825 1.76358859 3.867519e-03
## 9635    1 0.0021929825 1.76358859 3.867519e-03
## 9636    1 0.0021929825 1.76358859 3.867519e-03
## 9637    1 0.0021929825 1.76358859 3.867519e-03
## 9638    1 0.0021929825 1.76358859 3.867519e-03
## 9639    1 0.0021929825 1.76358859 3.867519e-03
## 9640    1 0.0021929825 1.76358859 3.867519e-03
## 9641    2 0.0069204152 0.55961579 3.872774e-03
## 9642    2 0.0069204152 0.55961579 3.872774e-03
## 9643    7 0.0045721750 0.84729786 3.873994e-03
## 9644    3 0.0053667263 0.72213472 3.875499e-03
## 9645    3 0.0053667263 0.72213472 3.875499e-03
## 9646    3 0.0102739726 0.37729423 3.876311e-03
## 9647    1 0.0017889088 2.16905370 3.880239e-03
## 9648    1 0.0017889088 2.16905370 3.880239e-03
## 9649    1 0.0017889088 2.16905370 3.880239e-03
## 9650    1 0.0017889088 2.16905370 3.880239e-03
## 9651    1 0.0017889088 2.16905370 3.880239e-03
## 9652    1 0.0017889088 2.16905370 3.880239e-03
## 9653    1 0.0017889088 2.16905370 3.880239e-03
## 9654    1 0.0017889088 2.16905370 3.880239e-03
## 9655    1 0.0017889088 2.16905370 3.880239e-03
## 9656    1 0.0017889088 2.16905370 3.880239e-03
## 9657    1 0.0017889088 2.16905370 3.880239e-03
## 9658    1 0.0017889088 2.16905370 3.880239e-03
## 9659    1 0.0017889088 2.16905370 3.880239e-03
## 9660    1 0.0017889088 2.16905370 3.880239e-03
## 9661    1 0.0017889088 2.16905370 3.880239e-03
## 9662    1 0.0017889088 2.16905370 3.880239e-03
## 9663    1 0.0017889088 2.16905370 3.880239e-03
## 9664    1 0.0017889088 2.16905370 3.880239e-03
## 9665    1 0.0017889088 2.16905370 3.880239e-03
## 9666    1 0.0017889088 2.16905370 3.880239e-03
## 9667    1 0.0017889088 2.16905370 3.880239e-03
## 9668    4 0.0022014309 1.76358859 3.882418e-03
## 9669    4 0.0022014309 1.76358859 3.882418e-03
## 9670    2 0.0022026432 1.76358859 3.884556e-03
## 9671    2 0.0022026432 1.76358859 3.884556e-03
## 9672    2 0.0022026432 1.76358859 3.884556e-03
## 9673    3 0.0031023785 1.25276297 3.886545e-03
## 9674    3 0.0083798883 0.46430561 3.890829e-03
## 9675    3 0.0036363636 1.07044141 3.892514e-03
## 9676    3 0.0036363636 1.07044141 3.892514e-03
## 9677    2 0.0053908356 0.72213472 3.892910e-03
## 9678    1 0.0026385224 1.47590652 3.894212e-03
## 9679    1 0.0026385224 1.47590652 3.894212e-03
## 9680    1 0.0026385224 1.47590652 3.894212e-03
## 9681    1 0.0026385224 1.47590652 3.894212e-03
## 9682    5 0.0031094527 1.25276297 3.895407e-03
## 9683    4 0.0042553191 0.91629073 3.899109e-03
## 9684    3 0.0033707865 1.15745279 3.901526e-03
## 9685    2 0.0024242424 1.60943791 3.901668e-03
## 9686    2 0.0024242424 1.60943791 3.901668e-03
## 9687    2 0.0024242424 1.60943791 3.901668e-03
## 9688    2 0.0024242424 1.60943791 3.901668e-03
## 9689    2 0.0049875312 0.78275934 3.904037e-03
## 9690    2 0.0011007155 3.55534806 3.913427e-03
## 9691    2 0.0011007155 3.55534806 3.913427e-03
## 9692    2 0.0011007155 3.55534806 3.913427e-03
## 9693    2 0.0011007155 3.55534806 3.913427e-03
## 9694    2 0.0011007155 3.55534806 3.913427e-03
## 9695    2 0.0011007155 3.55534806 3.913427e-03
## 9696    2 0.0011007155 3.55534806 3.913427e-03
## 9697    2 0.0011007155 3.55534806 3.913427e-03
## 9698    2 0.0011007155 3.55534806 3.913427e-03
## 9699    2 0.0011007155 3.55534806 3.913427e-03
## 9700    2 0.0011007155 3.55534806 3.913427e-03
## 9701    2 0.0011007155 3.55534806 3.913427e-03
## 9702    2 0.0011007155 3.55534806 3.913427e-03
## 9703    1 0.0011013216 3.55534806 3.915582e-03
## 9704    1 0.0011013216 3.55534806 3.915582e-03
## 9705    1 0.0011013216 3.55534806 3.915582e-03
## 9706    1 0.0011013216 3.55534806 3.915582e-03
## 9707    1 0.0011013216 3.55534806 3.915582e-03
## 9708    1 0.0011013216 3.55534806 3.915582e-03
## 9709    1 0.0011013216 3.55534806 3.915582e-03
## 9710    1 0.0011013216 3.55534806 3.915582e-03
## 9711    1 0.0011013216 3.55534806 3.915582e-03
## 9712    1 0.0011013216 3.55534806 3.915582e-03
## 9713    1 0.0011013216 3.55534806 3.915582e-03
## 9714    1 0.0011013216 3.55534806 3.915582e-03
## 9715    1 0.0011013216 3.55534806 3.915582e-03
## 9716    1 0.0011013216 3.55534806 3.915582e-03
## 9717    1 0.0011013216 3.55534806 3.915582e-03
## 9718    1 0.0011013216 3.55534806 3.915582e-03
## 9719    1 0.0011013216 3.55534806 3.915582e-03
## 9720    1 0.0011013216 3.55534806 3.915582e-03
## 9721    1 0.0011013216 3.55534806 3.915582e-03
## 9722    1 0.0011013216 3.55534806 3.915582e-03
## 9723    1 0.0011013216 3.55534806 3.915582e-03
## 9724    1 0.0011013216 3.55534806 3.915582e-03
## 9725    1 0.0011013216 3.55534806 3.915582e-03
## 9726    1 0.0011013216 3.55534806 3.915582e-03
## 9727    1 0.0011013216 3.55534806 3.915582e-03
## 9728    1 0.0011013216 3.55534806 3.915582e-03
## 9729    1 0.0011013216 3.55534806 3.915582e-03
## 9730    1 0.0011013216 3.55534806 3.915582e-03
## 9731    1 0.0011013216 3.55534806 3.915582e-03
## 9732    1 0.0011013216 3.55534806 3.915582e-03
## 9733    1 0.0011013216 3.55534806 3.915582e-03
## 9734    1 0.0011013216 3.55534806 3.915582e-03
## 9735    1 0.0011013216 3.55534806 3.915582e-03
## 9736    1 0.0011013216 3.55534806 3.915582e-03
## 9737    1 0.0011013216 3.55534806 3.915582e-03
## 9738    1 0.0011013216 3.55534806 3.915582e-03
## 9739    1 0.0011013216 3.55534806 3.915582e-03
## 9740    1 0.0011013216 3.55534806 3.915582e-03
## 9741    1 0.0011013216 3.55534806 3.915582e-03
## 9742    1 0.0011013216 3.55534806 3.915582e-03
## 9743    1 0.0011013216 3.55534806 3.915582e-03
## 9744    1 0.0011013216 3.55534806 3.915582e-03
## 9745    1 0.0011013216 3.55534806 3.915582e-03
## 9746    1 0.0011013216 3.55534806 3.915582e-03
## 9747    1 0.0011013216 3.55534806 3.915582e-03
## 9748    1 0.0011013216 3.55534806 3.915582e-03
## 9749    1 0.0011013216 3.55534806 3.915582e-03
## 9750    1 0.0011013216 3.55534806 3.915582e-03
## 9751    1 0.0011013216 3.55534806 3.915582e-03
## 9752    1 0.0011013216 3.55534806 3.915582e-03
## 9753    1 0.0011013216 3.55534806 3.915582e-03
## 9754    1 0.0011013216 3.55534806 3.915582e-03
## 9755    1 0.0011013216 3.55534806 3.915582e-03
## 9756    1 0.0011013216 3.55534806 3.915582e-03
## 9757    1 0.0011013216 3.55534806 3.915582e-03
## 9758    1 0.0011013216 3.55534806 3.915582e-03
## 9759    1 0.0011013216 3.55534806 3.915582e-03
## 9760    1 0.0011013216 3.55534806 3.915582e-03
## 9761    1 0.0011013216 3.55534806 3.915582e-03
## 9762    1 0.0011013216 3.55534806 3.915582e-03
## 9763    1 0.0011013216 3.55534806 3.915582e-03
## 9764    1 0.0011013216 3.55534806 3.915582e-03
## 9765    1 0.0011013216 3.55534806 3.915582e-03
## 9766    1 0.0011013216 3.55534806 3.915582e-03
## 9767    1 0.0011013216 3.55534806 3.915582e-03
## 9768    1 0.0011013216 3.55534806 3.915582e-03
## 9769    1 0.0011013216 3.55534806 3.915582e-03
## 9770    1 0.0011013216 3.55534806 3.915582e-03
## 9771    1 0.0011013216 3.55534806 3.915582e-03
## 9772    1 0.0011013216 3.55534806 3.915582e-03
## 9773    1 0.0011013216 3.55534806 3.915582e-03
## 9774    1 0.0011013216 3.55534806 3.915582e-03
## 9775    1 0.0011013216 3.55534806 3.915582e-03
## 9776    1 0.0011013216 3.55534806 3.915582e-03
## 9777    1 0.0011013216 3.55534806 3.915582e-03
## 9778    1 0.0011013216 3.55534806 3.915582e-03
## 9779    1 0.0011013216 3.55534806 3.915582e-03
## 9780    1 0.0011013216 3.55534806 3.915582e-03
## 9781    1 0.0011013216 3.55534806 3.915582e-03
## 9782    1 0.0011013216 3.55534806 3.915582e-03
## 9783    1 0.0011013216 3.55534806 3.915582e-03
## 9784    1 0.0011013216 3.55534806 3.915582e-03
## 9785    1 0.0011013216 3.55534806 3.915582e-03
## 9786    1 0.0011013216 3.55534806 3.915582e-03
## 9787    1 0.0011013216 3.55534806 3.915582e-03
## 9788    1 0.0011013216 3.55534806 3.915582e-03
## 9789    1 0.0011013216 3.55534806 3.915582e-03
## 9790    1 0.0011013216 3.55534806 3.915582e-03
## 9791    1 0.0011013216 3.55534806 3.915582e-03
## 9792    1 0.0011013216 3.55534806 3.915582e-03
## 9793    1 0.0011013216 3.55534806 3.915582e-03
## 9794    1 0.0011013216 3.55534806 3.915582e-03
## 9795    1 0.0011013216 3.55534806 3.915582e-03
## 9796    1 0.0011013216 3.55534806 3.915582e-03
## 9797    1 0.0011013216 3.55534806 3.915582e-03
## 9798    1 0.0011013216 3.55534806 3.915582e-03
## 9799    1 0.0011013216 3.55534806 3.915582e-03
## 9800    1 0.0011013216 3.55534806 3.915582e-03
## 9801    1 0.0011013216 3.55534806 3.915582e-03
## 9802    1 0.0011013216 3.55534806 3.915582e-03
## 9803    1 0.0011013216 3.55534806 3.915582e-03
## 9804    1 0.0011013216 3.55534806 3.915582e-03
## 9805    1 0.0011013216 3.55534806 3.915582e-03
## 9806    1 0.0011013216 3.55534806 3.915582e-03
## 9807    1 0.0011013216 3.55534806 3.915582e-03
## 9808    1 0.0011013216 3.55534806 3.915582e-03
## 9809    1 0.0011013216 3.55534806 3.915582e-03
## 9810    1 0.0011013216 3.55534806 3.915582e-03
## 9811    1 0.0011013216 3.55534806 3.915582e-03
## 9812    1 0.0011013216 3.55534806 3.915582e-03
## 9813    1 0.0011013216 3.55534806 3.915582e-03
## 9814    1 0.0011013216 3.55534806 3.915582e-03
## 9815    1 0.0011013216 3.55534806 3.915582e-03
## 9816    1 0.0011013216 3.55534806 3.915582e-03
## 9817    1 0.0011013216 3.55534806 3.915582e-03
## 9818    1 0.0011013216 3.55534806 3.915582e-03
## 9819    1 0.0011013216 3.55534806 3.915582e-03
## 9820    1 0.0011013216 3.55534806 3.915582e-03
## 9821    1 0.0011013216 3.55534806 3.915582e-03
## 9822    1 0.0011013216 3.55534806 3.915582e-03
## 9823    1 0.0011013216 3.55534806 3.915582e-03
## 9824    1 0.0011013216 3.55534806 3.915582e-03
## 9825    2 0.0026560425 1.47590652 3.920070e-03
## 9826    2 0.0026560425 1.47590652 3.920070e-03
## 9827    2 0.0026560425 1.47590652 3.920070e-03
## 9828    2 0.0026560425 1.47590652 3.920070e-03
## 9829    2 0.0026560425 1.47590652 3.920070e-03
## 9830    5 0.0042808219 0.91629073 3.922477e-03
## 9831    2 0.0026666667 1.47590652 3.935751e-03
## 9832    2 0.0026666667 1.47590652 3.935751e-03
## 9833    2 0.0026666667 1.47590652 3.935751e-03
## 9834    2 0.0026666667 1.47590652 3.935751e-03
## 9835    2 0.0020242915 1.94591015 3.939089e-03
## 9836    1 0.0013774105 2.86220088 3.942425e-03
## 9837    1 0.0013774105 2.86220088 3.942425e-03
## 9838    1 0.0013774105 2.86220088 3.942425e-03
## 9839    1 0.0013774105 2.86220088 3.942425e-03
## 9840    1 0.0013774105 2.86220088 3.942425e-03
## 9841    1 0.0013774105 2.86220088 3.942425e-03
## 9842    1 0.0013774105 2.86220088 3.942425e-03
## 9843    1 0.0013774105 2.86220088 3.942425e-03
## 9844    1 0.0013774105 2.86220088 3.942425e-03
## 9845    1 0.0013774105 2.86220088 3.942425e-03
## 9846    1 0.0013774105 2.86220088 3.942425e-03
## 9847    1 0.0013774105 2.86220088 3.942425e-03
## 9848    1 0.0013774105 2.86220088 3.942425e-03
## 9849    1 0.0013774105 2.86220088 3.942425e-03
## 9850    1 0.0013774105 2.86220088 3.942425e-03
## 9851    1 0.0013774105 2.86220088 3.942425e-03
## 9852    1 0.0013774105 2.86220088 3.942425e-03
## 9853    1 0.0013774105 2.86220088 3.942425e-03
## 9854    1 0.0013774105 2.86220088 3.942425e-03
## 9855    1 0.0013774105 2.86220088 3.942425e-03
## 9856    1 0.0013774105 2.86220088 3.942425e-03
## 9857    1 0.0013774105 2.86220088 3.942425e-03
## 9858    1 0.0013774105 2.86220088 3.942425e-03
## 9859    1 0.0013774105 2.86220088 3.942425e-03
## 9860    1 0.0013774105 2.86220088 3.942425e-03
## 9861    1 0.0013774105 2.86220088 3.942425e-03
## 9862    1 0.0013774105 2.86220088 3.942425e-03
## 9863    1 0.0013774105 2.86220088 3.942425e-03
## 9864    1 0.0013774105 2.86220088 3.942425e-03
## 9865    1 0.0013774105 2.86220088 3.942425e-03
## 9866    1 0.0013774105 2.86220088 3.942425e-03
## 9867    1 0.0013774105 2.86220088 3.942425e-03
## 9868    1 0.0013774105 2.86220088 3.942425e-03
## 9869    1 0.0013774105 2.86220088 3.942425e-03
## 9870    1 0.0013774105 2.86220088 3.942425e-03
## 9871    1 0.0013774105 2.86220088 3.942425e-03
## 9872    1 0.0013774105 2.86220088 3.942425e-03
## 9873    1 0.0013774105 2.86220088 3.942425e-03
## 9874    1 0.0013774105 2.86220088 3.942425e-03
## 9875    1 0.0013774105 2.86220088 3.942425e-03
## 9876    1 0.0013774105 2.86220088 3.942425e-03
## 9877    1 0.0013774105 2.86220088 3.942425e-03
## 9878    3 0.0039840637 0.99039870 3.945812e-03
## 9879    1 0.0029069767 1.35812348 3.948033e-03
## 9880    1 0.0029069767 1.35812348 3.948033e-03
## 9881   11 0.0094178082 0.41985385 3.954103e-03
## 9882    1 0.0024570025 1.60943791 3.954393e-03
## 9883    1 0.0024570025 1.60943791 3.954393e-03
## 9884    1 0.0024570025 1.60943791 3.954393e-03
## 9885    1 0.0024570025 1.60943791 3.954393e-03
## 9886    1 0.0024570025 1.60943791 3.954393e-03
## 9887    1 0.0024570025 1.60943791 3.954393e-03
## 9888    1 0.0024570025 1.60943791 3.954393e-03
## 9889    1 0.0024570025 1.60943791 3.954393e-03
## 9890    1 0.0024570025 1.60943791 3.954393e-03
## 9891    1 0.0024570025 1.60943791 3.954393e-03
## 9892    1 0.0024570025 1.60943791 3.954393e-03
## 9893    1 0.0024570025 1.60943791 3.954393e-03
## 9894    1 0.0024570025 1.60943791 3.954393e-03
## 9895    3 0.0034168565 1.15745279 3.954850e-03
## 9896    3 0.0040000000 0.99039870 3.961595e-03
## 9897    2 0.0022471910 1.76358859 3.963120e-03
## 9898    2 0.0022471910 1.76358859 3.963120e-03
## 9899    2 0.0022471910 1.76358859 3.963120e-03
## 9900    1 0.0034246575 1.15745279 3.963879e-03
## 9901    1 0.0034246575 1.15745279 3.963879e-03
## 9902    1 0.0034246575 1.15745279 3.963879e-03
## 9903    4 0.0064935065 0.61090908 3.966942e-03
## 9904    3 0.0070921986 0.55961579 3.968906e-03
## 9905    2 0.0059701493 0.66497630 3.970008e-03
## 9906    2 0.0037105751 1.07044141 3.971953e-03
## 9907    5 0.0118203310 0.33647224 3.977213e-03
## 9908    1 0.0026954178 1.47590652 3.978185e-03
## 9909    1 0.0026954178 1.47590652 3.978185e-03
## 9910    1 0.0026954178 1.47590652 3.978185e-03
## 9911    1 0.0026954178 1.47590652 3.978185e-03
## 9912    1 0.0026954178 1.47590652 3.978185e-03
## 9913    1 0.0026954178 1.47590652 3.978185e-03
## 9914    1 0.0026954178 1.47590652 3.978185e-03
## 9915    1 0.0026954178 1.47590652 3.978185e-03
## 9916    1 0.0016233766 2.45673577 3.988207e-03
## 9917    1 0.0016233766 2.45673577 3.988207e-03
## 9918    1 0.0016233766 2.45673577 3.988207e-03
## 9919    1 0.0016233766 2.45673577 3.988207e-03
## 9920    1 0.0016233766 2.45673577 3.988207e-03
## 9921    1 0.0016233766 2.45673577 3.988207e-03
## 9922    1 0.0016233766 2.45673577 3.988207e-03
## 9923    1 0.0016233766 2.45673577 3.988207e-03
## 9924    1 0.0016233766 2.45673577 3.988207e-03
## 9925    1 0.0016233766 2.45673577 3.988207e-03
## 9926    1 0.0016233766 2.45673577 3.988207e-03
## 9927    1 0.0016233766 2.45673577 3.988207e-03
## 9928    1 0.0016233766 2.45673577 3.988207e-03
## 9929    1 0.0016233766 2.45673577 3.988207e-03
## 9930    1 0.0016233766 2.45673577 3.988207e-03
## 9931    1 0.0016233766 2.45673577 3.988207e-03
## 9932    1 0.0016233766 2.45673577 3.988207e-03
## 9933    1 0.0016233766 2.45673577 3.988207e-03
## 9934    1 0.0016233766 2.45673577 3.988207e-03
## 9935    1 0.0016233766 2.45673577 3.988207e-03
## 9936    1 0.0016233766 2.45673577 3.988207e-03
## 9937    1 0.0016233766 2.45673577 3.988207e-03
## 9938    1 0.0016233766 2.45673577 3.988207e-03
## 9939    1 0.0016233766 2.45673577 3.988207e-03
## 9940    1 0.0016233766 2.45673577 3.988207e-03
## 9941    1 0.0016233766 2.45673577 3.988207e-03
## 9942    1 0.0016233766 2.45673577 3.988207e-03
## 9943    1 0.0016233766 2.45673577 3.988207e-03
## 9944   10 0.0065316786 0.61090908 3.990262e-03
## 9945    6 0.0037313433 1.07044141 3.994184e-03
## 9946    1 0.0011235955 3.55534806 3.994773e-03
## 9947    1 0.0011235955 3.55534806 3.994773e-03
## 9948    1 0.0011235955 3.55534806 3.994773e-03
## 9949    1 0.0011235955 3.55534806 3.994773e-03
## 9950    1 0.0011235955 3.55534806 3.994773e-03
## 9951    1 0.0011235955 3.55534806 3.994773e-03
## 9952    1 0.0011235955 3.55534806 3.994773e-03
## 9953    1 0.0011235955 3.55534806 3.994773e-03
## 9954    1 0.0011235955 3.55534806 3.994773e-03
## 9955    1 0.0011235955 3.55534806 3.994773e-03
## 9956    1 0.0011235955 3.55534806 3.994773e-03
## 9957    1 0.0011235955 3.55534806 3.994773e-03
## 9958    1 0.0011235955 3.55534806 3.994773e-03
## 9959    1 0.0011235955 3.55534806 3.994773e-03
## 9960    1 0.0011235955 3.55534806 3.994773e-03
## 9961    1 0.0011235955 3.55534806 3.994773e-03
## 9962    1 0.0011235955 3.55534806 3.994773e-03
## 9963    1 0.0011235955 3.55534806 3.994773e-03
## 9964    1 0.0011235955 3.55534806 3.994773e-03
## 9965    1 0.0011235955 3.55534806 3.994773e-03
## 9966    1 0.0011235955 3.55534806 3.994773e-03
## 9967    1 0.0011235955 3.55534806 3.994773e-03
## 9968    1 0.0011235955 3.55534806 3.994773e-03
## 9969    1 0.0011235955 3.55534806 3.994773e-03
## 9970    1 0.0011235955 3.55534806 3.994773e-03
## 9971    1 0.0011235955 3.55534806 3.994773e-03
## 9972    1 0.0011235955 3.55534806 3.994773e-03
## 9973    1 0.0011235955 3.55534806 3.994773e-03
## 9974    1 0.0011235955 3.55534806 3.994773e-03
## 9975    1 0.0011235955 3.55534806 3.994773e-03
## 9976    1 0.0011235955 3.55534806 3.994773e-03
## 9977    1 0.0011235955 3.55534806 3.994773e-03
## 9978    1 0.0011235955 3.55534806 3.994773e-03
## 9979    1 0.0011235955 3.55534806 3.994773e-03
## 9980    1 0.0011235955 3.55534806 3.994773e-03
## 9981    1 0.0011235955 3.55534806 3.994773e-03
## 9982    1 0.0011235955 3.55534806 3.994773e-03
## 9983    1 0.0011235955 3.55534806 3.994773e-03
## 9984    1 0.0011235955 3.55534806 3.994773e-03
## 9985    1 0.0011235955 3.55534806 3.994773e-03
## 9986    1 0.0011235955 3.55534806 3.994773e-03
## 9987    1 0.0011235955 3.55534806 3.994773e-03
## 9988    1 0.0011235955 3.55534806 3.994773e-03
## 9989    1 0.0011235955 3.55534806 3.994773e-03
## 9990    1 0.0011235955 3.55534806 3.994773e-03
## 9991    1 0.0011235955 3.55534806 3.994773e-03
## 9992    1 0.0011235955 3.55534806 3.994773e-03
## 9993    1 0.0011235955 3.55534806 3.994773e-03
## 9994    1 0.0011235955 3.55534806 3.994773e-03
## 9995    1 0.0011235955 3.55534806 3.994773e-03
## 9996    1 0.0011235955 3.55534806 3.994773e-03
## 9997    1 0.0011235955 3.55534806 3.994773e-03
## 9998    1 0.0011235955 3.55534806 3.994773e-03
## 9999    1 0.0011235955 3.55534806 3.994773e-03
## 10000   1 0.0011235955 3.55534806 3.994773e-03
## 10001   1 0.0011235955 3.55534806 3.994773e-03
## 10002   1 0.0011235955 3.55534806 3.994773e-03
## 10003   1 0.0011235955 3.55534806 3.994773e-03
## 10004   1 0.0011235955 3.55534806 3.994773e-03
## 10005   1 0.0011235955 3.55534806 3.994773e-03
## 10006   1 0.0011235955 3.55534806 3.994773e-03
## 10007   1 0.0011235955 3.55534806 3.994773e-03
## 10008   1 0.0011235955 3.55534806 3.994773e-03
## 10009   1 0.0011235955 3.55534806 3.994773e-03
## 10010   1 0.0011235955 3.55534806 3.994773e-03
## 10011   1 0.0011235955 3.55534806 3.994773e-03
## 10012   1 0.0011235955 3.55534806 3.994773e-03
## 10013   1 0.0011235955 3.55534806 3.994773e-03
## 10014   1 0.0011235955 3.55534806 3.994773e-03
## 10015   1 0.0011235955 3.55534806 3.994773e-03
## 10016   1 0.0011235955 3.55534806 3.994773e-03
## 10017   1 0.0011235955 3.55534806 3.994773e-03
## 10018   1 0.0011235955 3.55534806 3.994773e-03
## 10019   1 0.0011235955 3.55534806 3.994773e-03
## 10020   1 0.0011235955 3.55534806 3.994773e-03
## 10021   1 0.0011235955 3.55534806 3.994773e-03
## 10022   1 0.0011235955 3.55534806 3.994773e-03
## 10023   1 0.0011235955 3.55534806 3.994773e-03
## 10024   1 0.0011235955 3.55534806 3.994773e-03
## 10025   1 0.0011235955 3.55534806 3.994773e-03
## 10026   1 0.0011235955 3.55534806 3.994773e-03
## 10027   1 0.0011235955 3.55534806 3.994773e-03
## 10028   1 0.0011235955 3.55534806 3.994773e-03
## 10029   1 0.0011235955 3.55534806 3.994773e-03
## 10030   1 0.0011235955 3.55534806 3.994773e-03
## 10031   1 0.0011235955 3.55534806 3.994773e-03
## 10032   1 0.0011235955 3.55534806 3.994773e-03
## 10033   1 0.0011235955 3.55534806 3.994773e-03
## 10034   1 0.0011235955 3.55534806 3.994773e-03
## 10035   1 0.0011235955 3.55534806 3.994773e-03
## 10036   1 0.0011235955 3.55534806 3.994773e-03
## 10037   1 0.0011235955 3.55534806 3.994773e-03
## 10038   1 0.0011235955 3.55534806 3.994773e-03
## 10039   1 0.0011235955 3.55534806 3.994773e-03
## 10040   1 0.0011235955 3.55534806 3.994773e-03
## 10041   1 0.0011235955 3.55534806 3.994773e-03
## 10042   1 0.0011235955 3.55534806 3.994773e-03
## 10043   1 0.0011235955 3.55534806 3.994773e-03
## 10044   1 0.0011235955 3.55534806 3.994773e-03
## 10045   1 0.0011235955 3.55534806 3.994773e-03
## 10046   1 0.0011235955 3.55534806 3.994773e-03
## 10047   1 0.0011235955 3.55534806 3.994773e-03
## 10048   1 0.0011235955 3.55534806 3.994773e-03
## 10049   1 0.0011235955 3.55534806 3.994773e-03
## 10050   1 0.0011235955 3.55534806 3.994773e-03
## 10051   1 0.0011235955 3.55534806 3.994773e-03
## 10052   1 0.0011235955 3.55534806 3.994773e-03
## 10053   1 0.0011235955 3.55534806 3.994773e-03
## 10054   1 0.0011235955 3.55534806 3.994773e-03
## 10055   1 0.0011235955 3.55534806 3.994773e-03
## 10056   1 0.0011235955 3.55534806 3.994773e-03
## 10057   1 0.0011235955 3.55534806 3.994773e-03
## 10058   1 0.0011235955 3.55534806 3.994773e-03
## 10059   1 0.0011235955 3.55534806 3.994773e-03
## 10060   1 0.0011235955 3.55534806 3.994773e-03
## 10061   1 0.0011235955 3.55534806 3.994773e-03
## 10062   1 0.0011235955 3.55534806 3.994773e-03
## 10063   1 0.0011235955 3.55534806 3.994773e-03
## 10064   1 0.0011235955 3.55534806 3.994773e-03
## 10065   1 0.0011235955 3.55534806 3.994773e-03
## 10066   1 0.0011235955 3.55534806 3.994773e-03
## 10067   1 0.0011235955 3.55534806 3.994773e-03
## 10068   1 0.0011235955 3.55534806 3.994773e-03
## 10069   1 0.0011235955 3.55534806 3.994773e-03
## 10070   1 0.0011235955 3.55534806 3.994773e-03
## 10071   1 0.0011235955 3.55534806 3.994773e-03
## 10072   1 0.0011235955 3.55534806 3.994773e-03
## 10073   1 0.0011235955 3.55534806 3.994773e-03
## 10074   1 0.0011235955 3.55534806 3.994773e-03
## 10075   1 0.0011235955 3.55534806 3.994773e-03
## 10076   1 0.0011235955 3.55534806 3.994773e-03
## 10077   1 0.0011235955 3.55534806 3.994773e-03
## 10078   1 0.0011235955 3.55534806 3.994773e-03
## 10079   1 0.0011235955 3.55534806 3.994773e-03
## 10080   1 0.0011235955 3.55534806 3.994773e-03
## 10081   1 0.0011235955 3.55534806 3.994773e-03
## 10082   1 0.0011235955 3.55534806 3.994773e-03
## 10083   1 0.0011235955 3.55534806 3.994773e-03
## 10084   1 0.0011235955 3.55534806 3.994773e-03
## 10085   3 0.0031914894 1.25276297 3.998180e-03
## 10086   4 0.0024875622 1.60943791 4.003577e-03
## 10087   4 0.0024875622 1.60943791 4.003577e-03
## 10088   4 0.0024875622 1.60943791 4.003577e-03
## 10089   4 0.0071556351 0.55961579 4.004406e-03
## 10090   1 0.0034602076 1.15745279 4.005027e-03
## 10091   1 0.0034602076 1.15745279 4.005027e-03
## 10092   1 0.0034602076 1.15745279 4.005027e-03
## 10093   4 0.0040485830 0.99039870 4.009711e-03
## 10094   4 0.0040485830 0.99039870 4.009711e-03
## 10095   1 0.0024937656 1.60943791 4.013561e-03
## 10096   1 0.0024937656 1.60943791 4.013561e-03
## 10097   1 0.0024937656 1.60943791 4.013561e-03
## 10098   1 0.0024937656 1.60943791 4.013561e-03
## 10099   1 0.0024937656 1.60943791 4.013561e-03
## 10100   2 0.0022779043 1.76358859 4.017286e-03
## 10101   2 0.0022779043 1.76358859 4.017286e-03
## 10102   2 0.0022779043 1.76358859 4.017286e-03
## 10103   2 0.0022779043 1.76358859 4.017286e-03
## 10104   2 0.0022779043 1.76358859 4.017286e-03
## 10105   1 0.0018552876 2.16905370 4.024218e-03
## 10106   1 0.0018552876 2.16905370 4.024218e-03
## 10107   1 0.0018552876 2.16905370 4.024218e-03
## 10108   1 0.0018552876 2.16905370 4.024218e-03
## 10109   1 0.0018552876 2.16905370 4.024218e-03
## 10110   1 0.0018552876 2.16905370 4.024218e-03
## 10111   1 0.0018552876 2.16905370 4.024218e-03
## 10112   1 0.0018552876 2.16905370 4.024218e-03
## 10113   1 0.0018552876 2.16905370 4.024218e-03
## 10114   1 0.0018552876 2.16905370 4.024218e-03
## 10115   1 0.0018552876 2.16905370 4.024218e-03
## 10116   1 0.0018552876 2.16905370 4.024218e-03
## 10117   1 0.0018552876 2.16905370 4.024218e-03
## 10118   1 0.0018552876 2.16905370 4.024218e-03
## 10119   1 0.0018552876 2.16905370 4.024218e-03
## 10120   1 0.0018552876 2.16905370 4.024218e-03
## 10121   2 0.0020682523 1.94591015 4.024633e-03
## 10122   2 0.0020682523 1.94591015 4.024633e-03
## 10123   2 0.0020682523 1.94591015 4.024633e-03
## 10124   2 0.0020682523 1.94591015 4.024633e-03
## 10125   2 0.0020682523 1.94591015 4.024633e-03
## 10126   2 0.0020682523 1.94591015 4.024633e-03
## 10127   2 0.0014124294 2.86220088 4.042657e-03
## 10128   2 0.0014124294 2.86220088 4.042657e-03
## 10129   2 0.0014124294 2.86220088 4.042657e-03
## 10130   2 0.0014124294 2.86220088 4.042657e-03
## 10131   2 0.0014124294 2.86220088 4.042657e-03
## 10132   2 0.0014124294 2.86220088 4.042657e-03
## 10133   2 0.0014124294 2.86220088 4.042657e-03
## 10134   2 0.0014124294 2.86220088 4.042657e-03
## 10135   2 0.0014124294 2.86220088 4.042657e-03
## 10136   2 0.0014124294 2.86220088 4.042657e-03
## 10137   2 0.0014124294 2.86220088 4.042657e-03
## 10138   2 0.0014124294 2.86220088 4.042657e-03
## 10139   3 0.0079155673 0.51082562 4.043475e-03
## 10140   3 0.0018656716 2.16905370 4.046742e-03
## 10141   3 0.0018656716 2.16905370 4.046742e-03
## 10142   3 0.0018656716 2.16905370 4.046742e-03
## 10143   3 0.0018656716 2.16905370 4.046742e-03
## 10144   3 0.0018656716 2.16905370 4.046742e-03
## 10145   3 0.0018656716 2.16905370 4.046742e-03
## 10146   4 0.0025157233 1.60943791 4.048900e-03
## 10147   4 0.0025157233 1.60943791 4.048900e-03
## 10148   3 0.0087209302 0.46430561 4.049177e-03
## 10149   1 0.0011389522 3.55534806 4.049371e-03
## 10150   1 0.0011389522 3.55534806 4.049371e-03
## 10151   1 0.0011389522 3.55534806 4.049371e-03
## 10152   1 0.0011389522 3.55534806 4.049371e-03
## 10153   1 0.0011389522 3.55534806 4.049371e-03
## 10154   1 0.0011389522 3.55534806 4.049371e-03
## 10155   1 0.0011389522 3.55534806 4.049371e-03
## 10156   1 0.0011389522 3.55534806 4.049371e-03
## 10157   1 0.0011389522 3.55534806 4.049371e-03
## 10158   1 0.0011389522 3.55534806 4.049371e-03
## 10159   1 0.0011389522 3.55534806 4.049371e-03
## 10160   1 0.0011389522 3.55534806 4.049371e-03
## 10161   1 0.0011389522 3.55534806 4.049371e-03
## 10162   1 0.0011389522 3.55534806 4.049371e-03
## 10163   1 0.0011389522 3.55534806 4.049371e-03
## 10164   1 0.0011389522 3.55534806 4.049371e-03
## 10165   1 0.0011389522 3.55534806 4.049371e-03
## 10166   1 0.0011389522 3.55534806 4.049371e-03
## 10167   1 0.0011389522 3.55534806 4.049371e-03
## 10168   1 0.0011389522 3.55534806 4.049371e-03
## 10169   1 0.0011389522 3.55534806 4.049371e-03
## 10170   1 0.0011389522 3.55534806 4.049371e-03
## 10171   1 0.0011389522 3.55534806 4.049371e-03
## 10172   1 0.0011389522 3.55534806 4.049371e-03
## 10173   1 0.0011389522 3.55534806 4.049371e-03
## 10174   1 0.0011389522 3.55534806 4.049371e-03
## 10175   1 0.0011389522 3.55534806 4.049371e-03
## 10176   1 0.0011389522 3.55534806 4.049371e-03
## 10177   1 0.0011389522 3.55534806 4.049371e-03
## 10178   1 0.0011389522 3.55534806 4.049371e-03
## 10179   1 0.0011389522 3.55534806 4.049371e-03
## 10180   1 0.0011389522 3.55534806 4.049371e-03
## 10181   1 0.0011389522 3.55534806 4.049371e-03
## 10182   1 0.0011389522 3.55534806 4.049371e-03
## 10183   1 0.0011389522 3.55534806 4.049371e-03
## 10184   1 0.0011389522 3.55534806 4.049371e-03
## 10185   1 0.0011389522 3.55534806 4.049371e-03
## 10186   1 0.0011389522 3.55534806 4.049371e-03
## 10187   1 0.0011389522 3.55534806 4.049371e-03
## 10188   1 0.0011389522 3.55534806 4.049371e-03
## 10189   1 0.0011389522 3.55534806 4.049371e-03
## 10190   1 0.0011389522 3.55534806 4.049371e-03
## 10191   1 0.0011389522 3.55534806 4.049371e-03
## 10192   1 0.0011389522 3.55534806 4.049371e-03
## 10193   1 0.0011389522 3.55534806 4.049371e-03
## 10194   1 0.0011389522 3.55534806 4.049371e-03
## 10195   1 0.0011389522 3.55534806 4.049371e-03
## 10196   1 0.0011389522 3.55534806 4.049371e-03
## 10197   1 0.0011389522 3.55534806 4.049371e-03
## 10198   1 0.0011389522 3.55534806 4.049371e-03
## 10199   1 0.0011389522 3.55534806 4.049371e-03
## 10200   1 0.0011389522 3.55534806 4.049371e-03
## 10201   1 0.0011389522 3.55534806 4.049371e-03
## 10202   1 0.0011389522 3.55534806 4.049371e-03
## 10203   1 0.0011389522 3.55534806 4.049371e-03
## 10204   1 0.0011389522 3.55534806 4.049371e-03
## 10205   1 0.0011389522 3.55534806 4.049371e-03
## 10206   1 0.0011389522 3.55534806 4.049371e-03
## 10207   1 0.0011389522 3.55534806 4.049371e-03
## 10208   1 0.0011389522 3.55534806 4.049371e-03
## 10209   1 0.0011389522 3.55534806 4.049371e-03
## 10210   1 0.0011389522 3.55534806 4.049371e-03
## 10211   1 0.0011389522 3.55534806 4.049371e-03
## 10212   1 0.0011389522 3.55534806 4.049371e-03
## 10213   1 0.0011389522 3.55534806 4.049371e-03
## 10214   1 0.0029850746 1.35812348 4.054100e-03
## 10215   1 0.0029850746 1.35812348 4.054100e-03
## 10216   1 0.0029850746 1.35812348 4.054100e-03
## 10217   1 0.0029850746 1.35812348 4.054100e-03
## 10218   1 0.0029850746 1.35812348 4.054100e-03
## 10219   1 0.0060975610 0.66497630 4.054734e-03
## 10220   1 0.0060975610 0.66497630 4.054734e-03
## 10221   1 0.0060975610 0.66497630 4.054734e-03
## 10222   3 0.0016510732 2.45673577 4.056251e-03
## 10223   5 0.0066401062 0.61090908 4.056501e-03
## 10224   5 0.0027517887 1.47590652 4.061383e-03
## 10225   5 0.0027517887 1.47590652 4.061383e-03
## 10226   2 0.0027548209 1.47590652 4.065858e-03
## 10227   2 0.0027548209 1.47590652 4.065858e-03
## 10228   2 0.0027548209 1.47590652 4.065858e-03
## 10229   8 0.0096969697 0.41985385 4.071310e-03
## 10230   8 0.0056497175 0.72213472 4.079857e-03
## 10231   8 0.0056497175 0.72213472 4.079857e-03
## 10232   3 0.0035294118 1.15745279 4.085127e-03
## 10233  16 0.0088057237 0.46430561 4.088547e-03
## 10234   5 0.0032658393 1.25276297 4.091323e-03
## 10235   3 0.0018867925 2.16905370 4.092554e-03
## 10236   3 0.0018867925 2.16905370 4.092554e-03
## 10237   3 0.0018867925 2.16905370 4.092554e-03
## 10238   3 0.0018867925 2.16905370 4.092554e-03
## 10239   3 0.0018867925 2.16905370 4.092554e-03
## 10240   3 0.0018867925 2.16905370 4.092554e-03
## 10241   5 0.0056947608 0.72213472 4.112384e-03
## 10242   1 0.0027932961 1.47590652 4.122644e-03
## 10243   1 0.0027932961 1.47590652 4.122644e-03
## 10244   1 0.0027932961 1.47590652 4.122644e-03
## 10245   1 0.0027932961 1.47590652 4.122644e-03
## 10246   3 0.0021186441 1.94591015 4.122691e-03
## 10247   3 0.0030364372 1.35812348 4.123857e-03
## 10248   3 0.0030364372 1.35812348 4.123857e-03
## 10249   4 0.0098280098 0.41985385 4.126328e-03
## 10250   3 0.0048701299 0.84729786 4.126451e-03
## 10251   3 0.0048701299 0.84729786 4.126451e-03
## 10252   3 0.0048701299 0.84729786 4.126451e-03
## 10253   2 0.0052770449 0.78275934 4.130656e-03
## 10254   2 0.0052770449 0.78275934 4.130656e-03
## 10255   3 0.0025684932 1.60943791 4.133830e-03
## 10256   3 0.0033039648 1.25276297 4.139085e-03
## 10257   3 0.0033039648 1.25276297 4.139085e-03
## 10258   2 0.0021276596 1.94591015 4.140234e-03
## 10259   2 0.0021276596 1.94591015 4.140234e-03
## 10260   2 0.0021276596 1.94591015 4.140234e-03
## 10261   2 0.0021276596 1.94591015 4.140234e-03
## 10262   2 0.0021276596 1.94591015 4.140234e-03
## 10263   2 0.0021276596 1.94591015 4.140234e-03
## 10264   2 0.0021276596 1.94591015 4.140234e-03
## 10265   2 0.0021276596 1.94591015 4.140234e-03
## 10266   2 0.0021276596 1.94591015 4.140234e-03
## 10267   2 0.0021276596 1.94591015 4.140234e-03
## 10268   2 0.0035778175 1.15745279 4.141155e-03
## 10269   2 0.0035778175 1.15745279 4.141155e-03
## 10270   2 0.0035778175 1.15745279 4.141155e-03
## 10271   2 0.0035778175 1.15745279 4.141155e-03
## 10272   2 0.0023529412 1.76358859 4.149620e-03
## 10273   2 0.0023529412 1.76358859 4.149620e-03
## 10274   2 0.0023529412 1.76358859 4.149620e-03
## 10275   2 0.0023529412 1.76358859 4.149620e-03
## 10276   2 0.0023529412 1.76358859 4.149620e-03
## 10277   2 0.0023529412 1.76358859 4.149620e-03
## 10278   3 0.0089552239 0.46430561 4.157961e-03
## 10279   7 0.0074468085 0.55961579 4.167352e-03
## 10280   7 0.0074468085 0.55961579 4.167352e-03
## 10281   4 0.0028248588 1.47590652 4.169227e-03
## 10282   1 0.0023640662 1.76358859 4.169240e-03
## 10283   1 0.0023640662 1.76358859 4.169240e-03
## 10284   1 0.0023640662 1.76358859 4.169240e-03
## 10285   1 0.0023640662 1.76358859 4.169240e-03
## 10286   1 0.0023640662 1.76358859 4.169240e-03
## 10287   1 0.0023640662 1.76358859 4.169240e-03
## 10288   4 0.0045558087 0.91629073 4.174445e-03
## 10289   4 0.0045558087 0.91629073 4.174445e-03
## 10290  12 0.0124095140 0.33647224 4.175457e-03
## 10291  12 0.0074626866 0.55961579 4.176237e-03
## 10292  12 0.0074626866 0.55961579 4.176237e-03
## 10293  16 0.0099502488 0.41985385 4.177650e-03
## 10294  11 0.0068407960 0.61090908 4.179104e-03
## 10295   1 0.0011764706 3.55534806 4.182762e-03
## 10296   1 0.0011764706 3.55534806 4.182762e-03
## 10297   1 0.0011764706 3.55534806 4.182762e-03
## 10298   1 0.0011764706 3.55534806 4.182762e-03
## 10299   1 0.0011764706 3.55534806 4.182762e-03
## 10300   1 0.0011764706 3.55534806 4.182762e-03
## 10301   1 0.0011764706 3.55534806 4.182762e-03
## 10302   1 0.0011764706 3.55534806 4.182762e-03
## 10303   1 0.0011764706 3.55534806 4.182762e-03
## 10304   1 0.0011764706 3.55534806 4.182762e-03
## 10305   1 0.0011764706 3.55534806 4.182762e-03
## 10306   1 0.0011764706 3.55534806 4.182762e-03
## 10307   1 0.0011764706 3.55534806 4.182762e-03
## 10308   1 0.0011764706 3.55534806 4.182762e-03
## 10309   1 0.0011764706 3.55534806 4.182762e-03
## 10310   1 0.0011764706 3.55534806 4.182762e-03
## 10311   1 0.0011764706 3.55534806 4.182762e-03
## 10312   1 0.0011764706 3.55534806 4.182762e-03
## 10313   1 0.0011764706 3.55534806 4.182762e-03
## 10314   1 0.0011764706 3.55534806 4.182762e-03
## 10315   1 0.0011764706 3.55534806 4.182762e-03
## 10316   1 0.0011764706 3.55534806 4.182762e-03
## 10317   1 0.0011764706 3.55534806 4.182762e-03
## 10318   1 0.0011764706 3.55534806 4.182762e-03
## 10319   1 0.0011764706 3.55534806 4.182762e-03
## 10320   1 0.0011764706 3.55534806 4.182762e-03
## 10321   1 0.0011764706 3.55534806 4.182762e-03
## 10322   1 0.0011764706 3.55534806 4.182762e-03
## 10323   1 0.0011764706 3.55534806 4.182762e-03
## 10324   1 0.0011764706 3.55534806 4.182762e-03
## 10325   1 0.0011764706 3.55534806 4.182762e-03
## 10326   1 0.0011764706 3.55534806 4.182762e-03
## 10327   1 0.0011764706 3.55534806 4.182762e-03
## 10328   1 0.0011764706 3.55534806 4.182762e-03
## 10329   1 0.0011764706 3.55534806 4.182762e-03
## 10330   1 0.0011764706 3.55534806 4.182762e-03
## 10331   1 0.0011764706 3.55534806 4.182762e-03
## 10332   1 0.0011764706 3.55534806 4.182762e-03
## 10333   1 0.0011764706 3.55534806 4.182762e-03
## 10334   1 0.0011764706 3.55534806 4.182762e-03
## 10335   1 0.0011764706 3.55534806 4.182762e-03
## 10336   1 0.0011764706 3.55534806 4.182762e-03
## 10337   1 0.0011764706 3.55534806 4.182762e-03
## 10338   1 0.0011764706 3.55534806 4.182762e-03
## 10339   1 0.0011764706 3.55534806 4.182762e-03
## 10340   1 0.0011764706 3.55534806 4.182762e-03
## 10341   1 0.0011764706 3.55534806 4.182762e-03
## 10342   1 0.0011764706 3.55534806 4.182762e-03
## 10343   1 0.0011764706 3.55534806 4.182762e-03
## 10344   1 0.0011764706 3.55534806 4.182762e-03
## 10345   1 0.0011764706 3.55534806 4.182762e-03
## 10346   1 0.0011764706 3.55534806 4.182762e-03
## 10347   1 0.0011764706 3.55534806 4.182762e-03
## 10348   1 0.0011764706 3.55534806 4.182762e-03
## 10349   1 0.0011764706 3.55534806 4.182762e-03
## 10350   1 0.0011764706 3.55534806 4.182762e-03
## 10351   1 0.0011764706 3.55534806 4.182762e-03
## 10352   1 0.0011764706 3.55534806 4.182762e-03
## 10353   1 0.0011764706 3.55534806 4.182762e-03
## 10354   1 0.0011764706 3.55534806 4.182762e-03
## 10355   1 0.0011764706 3.55534806 4.182762e-03
## 10356   1 0.0011764706 3.55534806 4.182762e-03
## 10357   1 0.0011764706 3.55534806 4.182762e-03
## 10358   1 0.0011764706 3.55534806 4.182762e-03
## 10359   1 0.0011764706 3.55534806 4.182762e-03
## 10360   1 0.0011764706 3.55534806 4.182762e-03
## 10361   1 0.0011764706 3.55534806 4.182762e-03
## 10362   1 0.0011764706 3.55534806 4.182762e-03
## 10363   1 0.0011764706 3.55534806 4.182762e-03
## 10364   1 0.0011764706 3.55534806 4.182762e-03
## 10365   1 0.0011764706 3.55534806 4.182762e-03
## 10366   1 0.0011764706 3.55534806 4.182762e-03
## 10367   1 0.0011764706 3.55534806 4.182762e-03
## 10368   1 0.0011764706 3.55534806 4.182762e-03
## 10369   1 0.0011764706 3.55534806 4.182762e-03
## 10370   1 0.0011764706 3.55534806 4.182762e-03
## 10371   1 0.0011764706 3.55534806 4.182762e-03
## 10372   1 0.0011764706 3.55534806 4.182762e-03
## 10373   1 0.0011764706 3.55534806 4.182762e-03
## 10374   1 0.0011764706 3.55534806 4.182762e-03
## 10375   1 0.0011764706 3.55534806 4.182762e-03
## 10376   1 0.0011764706 3.55534806 4.182762e-03
## 10377   1 0.0011764706 3.55534806 4.182762e-03
## 10378   1 0.0011764706 3.55534806 4.182762e-03
## 10379   1 0.0011764706 3.55534806 4.182762e-03
## 10380   1 0.0011764706 3.55534806 4.182762e-03
## 10381   1 0.0011764706 3.55534806 4.182762e-03
## 10382   1 0.0011764706 3.55534806 4.182762e-03
## 10383   1 0.0011764706 3.55534806 4.182762e-03
## 10384   1 0.0011764706 3.55534806 4.182762e-03
## 10385   1 0.0011764706 3.55534806 4.182762e-03
## 10386   1 0.0011764706 3.55534806 4.182762e-03
## 10387   1 0.0011764706 3.55534806 4.182762e-03
## 10388   1 0.0011764706 3.55534806 4.182762e-03
## 10389   1 0.0011764706 3.55534806 4.182762e-03
## 10390   1 0.0011764706 3.55534806 4.182762e-03
## 10391   1 0.0011764706 3.55534806 4.182762e-03
## 10392   1 0.0011764706 3.55534806 4.182762e-03
## 10393   1 0.0011764706 3.55534806 4.182762e-03
## 10394   1 0.0011764706 3.55534806 4.182762e-03
## 10395   1 0.0011764706 3.55534806 4.182762e-03
## 10396   1 0.0011764706 3.55534806 4.182762e-03
## 10397   1 0.0011764706 3.55534806 4.182762e-03
## 10398   1 0.0011764706 3.55534806 4.182762e-03
## 10399   1 0.0011764706 3.55534806 4.182762e-03
## 10400   1 0.0011764706 3.55534806 4.182762e-03
## 10401   1 0.0011764706 3.55534806 4.182762e-03
## 10402   1 0.0011764706 3.55534806 4.182762e-03
## 10403   1 0.0011764706 3.55534806 4.182762e-03
## 10404   1 0.0011764706 3.55534806 4.182762e-03
## 10405   1 0.0011764706 3.55534806 4.182762e-03
## 10406   1 0.0011764706 3.55534806 4.182762e-03
## 10407   1 0.0011764706 3.55534806 4.182762e-03
## 10408   1 0.0011764706 3.55534806 4.182762e-03
## 10409   1 0.0011764706 3.55534806 4.182762e-03
## 10410   1 0.0011764706 3.55534806 4.182762e-03
## 10411   1 0.0011764706 3.55534806 4.182762e-03
## 10412   4 0.0068493151 0.61090908 4.184309e-03
## 10413   3 0.0074812968 0.55961579 4.186652e-03
## 10414   6 0.0039190072 1.07044141 4.195068e-03
## 10415   3 0.0053667263 0.78275934 4.200855e-03
## 10416   2 0.0017123288 2.45673577 4.206739e-03
## 10417   2 0.0017123288 2.45673577 4.206739e-03
## 10418   2 0.0017123288 2.45673577 4.206739e-03
## 10419   2 0.0017123288 2.45673577 4.206739e-03
## 10420   2 0.0017123288 2.45673577 4.206739e-03
## 10421   2 0.0017123288 2.45673577 4.206739e-03
## 10422   2 0.0017123288 2.45673577 4.206739e-03
## 10423   1 0.0017123288 2.45673577 4.206739e-03
## 10424   1 0.0017123288 2.45673577 4.206739e-03
## 10425   1 0.0017123288 2.45673577 4.206739e-03
## 10426   1 0.0017123288 2.45673577 4.206739e-03
## 10427   1 0.0017123288 2.45673577 4.206739e-03
## 10428   1 0.0017123288 2.45673577 4.206739e-03
## 10429   1 0.0017123288 2.45673577 4.206739e-03
## 10430   1 0.0017123288 2.45673577 4.206739e-03
## 10431   1 0.0017123288 2.45673577 4.206739e-03
## 10432   1 0.0017123288 2.45673577 4.206739e-03
## 10433   1 0.0017123288 2.45673577 4.206739e-03
## 10434   1 0.0017123288 2.45673577 4.206739e-03
## 10435   1 0.0017123288 2.45673577 4.206739e-03
## 10436   1 0.0017123288 2.45673577 4.206739e-03
## 10437   1 0.0017123288 2.45673577 4.206739e-03
## 10438   1 0.0017123288 2.45673577 4.206739e-03
## 10439   1 0.0017123288 2.45673577 4.206739e-03
## 10440   1 0.0017123288 2.45673577 4.206739e-03
## 10441   1 0.0017123288 2.45673577 4.206739e-03
## 10442   1 0.0017123288 2.45673577 4.206739e-03
## 10443   1 0.0017123288 2.45673577 4.206739e-03
## 10444   1 0.0017123288 2.45673577 4.206739e-03
## 10445   1 0.0017123288 2.45673577 4.206739e-03
## 10446   1 0.0017123288 2.45673577 4.206739e-03
## 10447   1 0.0017123288 2.45673577 4.206739e-03
## 10448   5 0.0068870523 0.61090908 4.207363e-03
## 10449   4 0.0042553191 0.99039870 4.214463e-03
## 10450   2 0.0053908356 0.78275934 4.219727e-03
## 10451   2 0.0053908356 0.78275934 4.219727e-03
## 10452   2 0.0053908356 0.78275934 4.219727e-03
## 10453   2 0.0090909091 0.46430561 4.220960e-03
## 10454   3 0.0033707865 1.25276297 4.222797e-03
## 10455   5 0.0031094527 1.35812348 4.223021e-03
## 10456   5 0.0031094527 1.35812348 4.223021e-03
## 10457   2 0.0049875312 0.84729786 4.225924e-03
## 10458   2 0.0049875312 0.84729786 4.225924e-03
## 10459  11 0.0069182390 0.61090908 4.226415e-03
## 10460   8 0.0091116173 0.46430561 4.230575e-03
## 10461   6 0.0063829787 0.66497630 4.244530e-03
## 10462   1 0.0026385224 1.60943791 4.246538e-03
## 10463   1 0.0026385224 1.60943791 4.246538e-03
## 10464   1 0.0026385224 1.60943791 4.246538e-03
## 10465   1 0.0026385224 1.60943791 4.246538e-03
## 10466   1 0.0026385224 1.60943791 4.246538e-03
## 10467   1 0.0026385224 1.60943791 4.246538e-03
## 10468   1 0.0026385224 1.60943791 4.246538e-03
## 10469   1 0.0026385224 1.60943791 4.246538e-03
## 10470   1 0.0026385224 1.60943791 4.246538e-03
## 10471   1 0.0026385224 1.60943791 4.246538e-03
## 10472   1 0.0026385224 1.60943791 4.246538e-03
## 10473   1 0.0026385224 1.60943791 4.246538e-03
## 10474   1 0.0026385224 1.60943791 4.246538e-03
## 10475   1 0.0026385224 1.60943791 4.246538e-03
## 10476   1 0.0026385224 1.60943791 4.246538e-03
## 10477   1 0.0026385224 1.60943791 4.246538e-03
## 10478   5 0.0058823529 0.72213472 4.247851e-03
## 10479   3 0.0019595036 2.16905370 4.250269e-03
## 10480   3 0.0039840637 1.07044141 4.264707e-03
## 10481   3 0.0039840637 1.07044141 4.264707e-03
## 10482   3 0.0039840637 1.07044141 4.264707e-03
## 10483   1 0.0021929825 1.94591015 4.267347e-03
## 10484   1 0.0021929825 1.94591015 4.267347e-03
## 10485   1 0.0021929825 1.94591015 4.267347e-03
## 10486   1 0.0021929825 1.94591015 4.267347e-03
## 10487   1 0.0021929825 1.94591015 4.267347e-03
## 10488   1 0.0021929825 1.94591015 4.267347e-03
## 10489   1 0.0021929825 1.94591015 4.267347e-03
## 10490   1 0.0021929825 1.94591015 4.267347e-03
## 10491   1 0.0021929825 1.94591015 4.267347e-03
## 10492   1 0.0021929825 1.94591015 4.267347e-03
## 10493   2 0.0026560425 1.60943791 4.274735e-03
## 10494   2 0.0024242424 1.76358859 4.275366e-03
## 10495   2 0.0024242424 1.76358859 4.275366e-03
## 10496   2 0.0024242424 1.76358859 4.275366e-03
## 10497   2 0.0024242424 1.76358859 4.275366e-03
## 10498   2 0.0024242424 1.76358859 4.275366e-03
## 10499   2 0.0024242424 1.76358859 4.275366e-03
## 10500   2 0.0024242424 1.76358859 4.275366e-03
## 10501   2 0.0024242424 1.76358859 4.275366e-03
## 10502   2 0.0024242424 1.76358859 4.275366e-03
## 10503   3 0.0034168565 1.25276297 4.280511e-03
## 10504   3 0.0034168565 1.25276297 4.280511e-03
## 10505   3 0.0083798883 0.51082562 4.280662e-03
## 10506   3 0.0040000000 1.07044141 4.281766e-03
## 10507   3 0.0040000000 1.07044141 4.281766e-03
## 10508   4 0.0022014309 1.94591015 4.283787e-03
## 10509   2 0.0022026432 1.94591015 4.286146e-03
## 10510   2 0.0022026432 1.94591015 4.286146e-03
## 10511   2 0.0022026432 1.94591015 4.286146e-03
## 10512   2 0.0022026432 1.94591015 4.286146e-03
## 10513   2 0.0022026432 1.94591015 4.286146e-03
## 10514   4 0.0034246575 1.25276297 4.290284e-03
## 10515   4 0.0034246575 1.25276297 4.290284e-03
## 10516   2 0.0034246575 1.25276297 4.290284e-03
## 10517   1 0.0034246575 1.25276297 4.290284e-03
## 10518   1 0.0034246575 1.25276297 4.290284e-03
## 10519   1 0.0034246575 1.25276297 4.290284e-03
## 10520   1 0.0034246575 1.25276297 4.290284e-03
## 10521   1 0.0029069767 1.47590652 4.290426e-03
## 10522   1 0.0029069767 1.47590652 4.290426e-03
## 10523   2 0.0026666667 1.60943791 4.291834e-03
## 10524   2 0.0026666667 1.60943791 4.291834e-03
## 10525   2 0.0026666667 1.60943791 4.291834e-03
## 10526   1 0.0012121212 3.55534806 4.309513e-03
## 10527   1 0.0012121212 3.55534806 4.309513e-03
## 10528   1 0.0012121212 3.55534806 4.309513e-03
## 10529   1 0.0012121212 3.55534806 4.309513e-03
## 10530   1 0.0012121212 3.55534806 4.309513e-03
## 10531   1 0.0012121212 3.55534806 4.309513e-03
## 10532   1 0.0012121212 3.55534806 4.309513e-03
## 10533   1 0.0012121212 3.55534806 4.309513e-03
## 10534   1 0.0012121212 3.55534806 4.309513e-03
## 10535   1 0.0012121212 3.55534806 4.309513e-03
## 10536   1 0.0012121212 3.55534806 4.309513e-03
## 10537   1 0.0012121212 3.55534806 4.309513e-03
## 10538   1 0.0012121212 3.55534806 4.309513e-03
## 10539   1 0.0012121212 3.55534806 4.309513e-03
## 10540   1 0.0012121212 3.55534806 4.309513e-03
## 10541   1 0.0012121212 3.55534806 4.309513e-03
## 10542   1 0.0012121212 3.55534806 4.309513e-03
## 10543   1 0.0012121212 3.55534806 4.309513e-03
## 10544   1 0.0012121212 3.55534806 4.309513e-03
## 10545   1 0.0012121212 3.55534806 4.309513e-03
## 10546   1 0.0012121212 3.55534806 4.309513e-03
## 10547   1 0.0012121212 3.55534806 4.309513e-03
## 10548   1 0.0012121212 3.55534806 4.309513e-03
## 10549   1 0.0012121212 3.55534806 4.309513e-03
## 10550   1 0.0012121212 3.55534806 4.309513e-03
## 10551   1 0.0012121212 3.55534806 4.309513e-03
## 10552   1 0.0012121212 3.55534806 4.309513e-03
## 10553   1 0.0012121212 3.55534806 4.309513e-03
## 10554   1 0.0012121212 3.55534806 4.309513e-03
## 10555   1 0.0012121212 3.55534806 4.309513e-03
## 10556   1 0.0012121212 3.55534806 4.309513e-03
## 10557   1 0.0012121212 3.55534806 4.309513e-03
## 10558   1 0.0012121212 3.55534806 4.309513e-03
## 10559   1 0.0012121212 3.55534806 4.309513e-03
## 10560   1 0.0012121212 3.55534806 4.309513e-03
## 10561   1 0.0012121212 3.55534806 4.309513e-03
## 10562   1 0.0012121212 3.55534806 4.309513e-03
## 10563   1 0.0012121212 3.55534806 4.309513e-03
## 10564   1 0.0012121212 3.55534806 4.309513e-03
## 10565   1 0.0012121212 3.55534806 4.309513e-03
## 10566   1 0.0012121212 3.55534806 4.309513e-03
## 10567   1 0.0012121212 3.55534806 4.309513e-03
## 10568   1 0.0012121212 3.55534806 4.309513e-03
## 10569   1 0.0012121212 3.55534806 4.309513e-03
## 10570   1 0.0012121212 3.55534806 4.309513e-03
## 10571   1 0.0012121212 3.55534806 4.309513e-03
## 10572   1 0.0012121212 3.55534806 4.309513e-03
## 10573   1 0.0012121212 3.55534806 4.309513e-03
## 10574   1 0.0012121212 3.55534806 4.309513e-03
## 10575   1 0.0012121212 3.55534806 4.309513e-03
## 10576   1 0.0012121212 3.55534806 4.309513e-03
## 10577   1 0.0012121212 3.55534806 4.309513e-03
## 10578   1 0.0012121212 3.55534806 4.309513e-03
## 10579   1 0.0012121212 3.55534806 4.309513e-03
## 10580   1 0.0012121212 3.55534806 4.309513e-03
## 10581   1 0.0012121212 3.55534806 4.309513e-03
## 10582   1 0.0012121212 3.55534806 4.309513e-03
## 10583   1 0.0012121212 3.55534806 4.309513e-03
## 10584   1 0.0012121212 3.55534806 4.309513e-03
## 10585   1 0.0012121212 3.55534806 4.309513e-03
## 10586   1 0.0012121212 3.55534806 4.309513e-03
## 10587   1 0.0012121212 3.55534806 4.309513e-03
## 10588   1 0.0012121212 3.55534806 4.309513e-03
## 10589   1 0.0012121212 3.55534806 4.309513e-03
## 10590   1 0.0012121212 3.55534806 4.309513e-03
## 10591   1 0.0012121212 3.55534806 4.309513e-03
## 10592   1 0.0012121212 3.55534806 4.309513e-03
## 10593   1 0.0012121212 3.55534806 4.309513e-03
## 10594   1 0.0012121212 3.55534806 4.309513e-03
## 10595   1 0.0012121212 3.55534806 4.309513e-03
## 10596   1 0.0012121212 3.55534806 4.309513e-03
## 10597   1 0.0012121212 3.55534806 4.309513e-03
## 10598   1 0.0012121212 3.55534806 4.309513e-03
## 10599   1 0.0012121212 3.55534806 4.309513e-03
## 10600   1 0.0012121212 3.55534806 4.309513e-03
## 10601   1 0.0012121212 3.55534806 4.309513e-03
## 10602   1 0.0012121212 3.55534806 4.309513e-03
## 10603   1 0.0012121212 3.55534806 4.309513e-03
## 10604   1 0.0012121212 3.55534806 4.309513e-03
## 10605   1 0.0012121212 3.55534806 4.309513e-03
## 10606   1 0.0012121212 3.55534806 4.309513e-03
## 10607   1 0.0012121212 3.55534806 4.309513e-03
## 10608   1 0.0012121212 3.55534806 4.309513e-03
## 10609   1 0.0012121212 3.55534806 4.309513e-03
## 10610   1 0.0012121212 3.55534806 4.309513e-03
## 10611   1 0.0012121212 3.55534806 4.309513e-03
## 10612   1 0.0012121212 3.55534806 4.309513e-03
## 10613   1 0.0012121212 3.55534806 4.309513e-03
## 10614   1 0.0012121212 3.55534806 4.309513e-03
## 10615   1 0.0012121212 3.55534806 4.309513e-03
## 10616   1 0.0012121212 3.55534806 4.309513e-03
## 10617   1 0.0012121212 3.55534806 4.309513e-03
## 10618   1 0.0012121212 3.55534806 4.309513e-03
## 10619   1 0.0012121212 3.55534806 4.309513e-03
## 10620   1 0.0012121212 3.55534806 4.309513e-03
## 10621   1 0.0012121212 3.55534806 4.309513e-03
## 10622   1 0.0012121212 3.55534806 4.309513e-03
## 10623   1 0.0012121212 3.55534806 4.309513e-03
## 10624   1 0.0012121212 3.55534806 4.309513e-03
## 10625   1 0.0012121212 3.55534806 4.309513e-03
## 10626   1 0.0012121212 3.55534806 4.309513e-03
## 10627   1 0.0012121212 3.55534806 4.309513e-03
## 10628   1 0.0012121212 3.55534806 4.309513e-03
## 10629   1 0.0012121212 3.55534806 4.309513e-03
## 10630   1 0.0012121212 3.55534806 4.309513e-03
## 10631   1 0.0012121212 3.55534806 4.309513e-03
## 10632   2 0.0059701493 0.72213472 4.311252e-03
## 10633   2 0.0059701493 0.72213472 4.311252e-03
## 10634   3 0.0102739726 0.41985385 4.313567e-03
## 10635   7 0.0077092511 0.55961579 4.314219e-03
## 10636   6 0.0037313433 1.15745279 4.318854e-03
## 10637   7 0.0070850202 0.61090908 4.328303e-03
## 10638   2 0.0047281324 0.91629073 4.332344e-03
## 10639   2 0.0047281324 0.91629073 4.332344e-03
## 10640   3 0.0070921986 0.61090908 4.332689e-03
## 10641   1 0.0024570025 1.76358859 4.333142e-03
## 10642   1 0.0024570025 1.76358859 4.333142e-03
## 10643   1 0.0024570025 1.76358859 4.333142e-03
## 10644   4 0.0040485830 1.07044141 4.333771e-03
## 10645   4 0.0040485830 1.07044141 4.333771e-03
## 10646   4 0.0040485830 1.07044141 4.333771e-03
## 10647   3 0.0031914894 1.35812348 4.334437e-03
## 10648   1 0.0034602076 1.25276297 4.334820e-03
## 10649   1 0.0026954178 1.60943791 4.338108e-03
## 10650   1 0.0026954178 1.60943791 4.338108e-03
## 10651   1 0.0026954178 1.60943791 4.338108e-03
## 10652   1 0.0026954178 1.60943791 4.338108e-03
## 10653   1 0.0026954178 1.60943791 4.338108e-03
## 10654   1 0.0026954178 1.60943791 4.338108e-03
## 10655   1 0.0026954178 1.60943791 4.338108e-03
## 10656   1 0.0026954178 1.60943791 4.338108e-03
## 10657   1 0.0026954178 1.60943791 4.338108e-03
## 10658   1 0.0026954178 1.60943791 4.338108e-03
## 10659  10 0.0103412616 0.41985385 4.341818e-03
## 10660   2 0.0043859649 0.99039870 4.343854e-03
## 10661   6 0.0051369863 0.84729786 4.352558e-03
## 10662   6 0.0051369863 0.84729786 4.352558e-03
## 10663   3 0.0051369863 0.84729786 4.352558e-03
## 10664   3 0.0015228426 2.86220088 4.358682e-03
## 10665   3 0.0015228426 2.86220088 4.358682e-03
## 10666   3 0.0015228426 2.86220088 4.358682e-03
## 10667   3 0.0015228426 2.86220088 4.358682e-03
## 10668   3 0.0015228426 2.86220088 4.358682e-03
## 10669   3 0.0015228426 2.86220088 4.358682e-03
## 10670   3 0.0015228426 2.86220088 4.358682e-03
## 10671   3 0.0015228426 2.86220088 4.358682e-03
## 10672   3 0.0015228426 2.86220088 4.358682e-03
## 10673   3 0.0015228426 2.86220088 4.358682e-03
## 10674   7 0.0044025157 0.99039870 4.360246e-03
## 10675   6 0.0037735849 1.15745279 4.367746e-03
## 10676   6 0.0037735849 1.15745279 4.367746e-03
## 10677   4 0.0071556351 0.61090908 4.371442e-03
## 10678   2 0.0022471910 1.94591015 4.372832e-03
## 10679   2 0.0022471910 1.94591015 4.372832e-03
## 10680   2 0.0022471910 1.94591015 4.372832e-03
## 10681   2 0.0022471910 1.94591015 4.372832e-03
## 10682   9 0.0055970149 0.78275934 4.381116e-03
## 10683   4 0.0024875622 1.76358859 4.387036e-03
## 10684   4 0.0024875622 1.76358859 4.387036e-03
## 10685   2 0.0020242915 2.16905370 4.390797e-03
## 10686   2 0.0020242915 2.16905370 4.390797e-03
## 10687   2 0.0020242915 2.16905370 4.390797e-03
## 10688   2 0.0020242915 2.16905370 4.390797e-03
## 10689   2 0.0020242915 2.16905370 4.390797e-03
## 10690   2 0.0020242915 2.16905370 4.390797e-03
## 10691   2 0.0020242915 2.16905370 4.390797e-03
## 10692   2 0.0020242915 2.16905370 4.390797e-03
## 10693   1 0.0017889088 2.45673577 4.394876e-03
## 10694   1 0.0017889088 2.45673577 4.394876e-03
## 10695   1 0.0017889088 2.45673577 4.394876e-03
## 10696   1 0.0017889088 2.45673577 4.394876e-03
## 10697   1 0.0017889088 2.45673577 4.394876e-03
## 10698   1 0.0017889088 2.45673577 4.394876e-03
## 10699   1 0.0017889088 2.45673577 4.394876e-03
## 10700   1 0.0017889088 2.45673577 4.394876e-03
## 10701   1 0.0017889088 2.45673577 4.394876e-03
## 10702   1 0.0017889088 2.45673577 4.394876e-03
## 10703   1 0.0017889088 2.45673577 4.394876e-03
## 10704   1 0.0017889088 2.45673577 4.394876e-03
## 10705   1 0.0017889088 2.45673577 4.394876e-03
## 10706   1 0.0017889088 2.45673577 4.394876e-03
## 10707   1 0.0017889088 2.45673577 4.394876e-03
## 10708   1 0.0017889088 2.45673577 4.394876e-03
## 10709   1 0.0017889088 2.45673577 4.394876e-03
## 10710   1 0.0017889088 2.45673577 4.394876e-03
## 10711   1 0.0017889088 2.45673577 4.394876e-03
## 10712   1 0.0017889088 2.45673577 4.394876e-03
## 10713   1 0.0017889088 2.45673577 4.394876e-03
## 10714   1 0.0017889088 2.45673577 4.394876e-03
## 10715   1 0.0017889088 2.45673577 4.394876e-03
## 10716   1 0.0017889088 2.45673577 4.394876e-03
## 10717   1 0.0024937656 1.76358859 4.397977e-03
## 10718   1 0.0024937656 1.76358859 4.397977e-03
## 10719   1 0.0024937656 1.76358859 4.397977e-03
## 10720   1 0.0024937656 1.76358859 4.397977e-03
## 10721   1 0.0024937656 1.76358859 4.397977e-03
## 10722   1 0.0024937656 1.76358859 4.397977e-03
## 10723   1 0.0024937656 1.76358859 4.397977e-03
## 10724   1 0.0024937656 1.76358859 4.397977e-03
## 10725   1 0.0024937656 1.76358859 4.397977e-03
## 10726   1 0.0024937656 1.76358859 4.397977e-03
## 10727   1 0.0060975610 0.72213472 4.403260e-03
## 10728   1 0.0060975610 0.72213472 4.403260e-03
## 10729   1 0.0060975610 0.72213472 4.403260e-03
## 10730   1 0.0029850746 1.47590652 4.405691e-03
## 10731   1 0.0029850746 1.47590652 4.405691e-03
## 10732   1 0.0029850746 1.47590652 4.405691e-03
## 10733   1 0.0029850746 1.47590652 4.405691e-03
## 10734   1 0.0029850746 1.47590652 4.405691e-03
## 10735   1 0.0029850746 1.47590652 4.405691e-03
## 10736   1 0.0029850746 1.47590652 4.405691e-03
## 10737   1 0.0029850746 1.47590652 4.405691e-03
## 10738   1 0.0029850746 1.47590652 4.405691e-03
## 10739   2 0.0012437811 3.55534806 4.422075e-03
## 10740   2 0.0012437811 3.55534806 4.422075e-03
## 10741   2 0.0012437811 3.55534806 4.422075e-03
## 10742   2 0.0012437811 3.55534806 4.422075e-03
## 10743   2 0.0012437811 3.55534806 4.422075e-03
## 10744   2 0.0012437811 3.55534806 4.422075e-03
## 10745   2 0.0012437811 3.55534806 4.422075e-03
## 10746   2 0.0012437811 3.55534806 4.422075e-03
## 10747   2 0.0012437811 3.55534806 4.422075e-03
## 10748   2 0.0012437811 3.55534806 4.422075e-03
## 10749   2 0.0012437811 3.55534806 4.422075e-03
## 10750   2 0.0012437811 3.55534806 4.422075e-03
## 10751   2 0.0012437811 3.55534806 4.422075e-03
## 10752   2 0.0012437811 3.55534806 4.422075e-03
## 10753   2 0.0012437811 3.55534806 4.422075e-03
## 10754   2 0.0012437811 3.55534806 4.422075e-03
## 10755   2 0.0012437811 3.55534806 4.422075e-03
## 10756   2 0.0012437811 3.55534806 4.422075e-03
## 10757   2 0.0012437811 3.55534806 4.422075e-03
## 10758   2 0.0012437811 3.55534806 4.422075e-03
## 10759   5 0.0035310734 1.25276297 4.423598e-03
## 10760   3 0.0079155673 0.55961579 4.429676e-03
## 10761   2 0.0022779043 1.94591015 4.432597e-03
## 10762   2 0.0022779043 1.94591015 4.432597e-03
## 10763   2 0.0022779043 1.94591015 4.432597e-03
## 10764   2 0.0022779043 1.94591015 4.432597e-03
## 10765   2 0.0022779043 1.94591015 4.432597e-03
## 10766   2 0.0022779043 1.94591015 4.432597e-03
## 10767   2 0.0022779043 1.94591015 4.432597e-03
## 10768   2 0.0022779043 1.94591015 4.432597e-03
## 10769   2 0.0027548209 1.60943791 4.433713e-03
## 10770   2 0.0027548209 1.60943791 4.433713e-03
## 10771   2 0.0027548209 1.60943791 4.433713e-03
## 10772   2 0.0027548209 1.60943791 4.433713e-03
## 10773   2 0.0027548209 1.60943791 4.433713e-03
## 10774   4 0.0025157233 1.76358859 4.436701e-03
## 10775  17 0.0105721393 0.41985385 4.438753e-03
## 10776   7 0.0035532995 1.25276297 4.451442e-03
## 10777   2 0.0052770449 0.84729786 4.471229e-03
## 10778   2 0.0052770449 0.84729786 4.471229e-03
## 10779   2 0.0012578616 3.55534806 4.472136e-03
## 10780   2 0.0012578616 3.55534806 4.472136e-03
## 10781   2 0.0012578616 3.55534806 4.472136e-03
## 10782   2 0.0012578616 3.55534806 4.472136e-03
## 10783   2 0.0012578616 3.55534806 4.472136e-03
## 10784   2 0.0012578616 3.55534806 4.472136e-03
## 10785   2 0.0012578616 3.55534806 4.472136e-03
## 10786   2 0.0012578616 3.55534806 4.472136e-03
## 10787   2 0.0012578616 3.55534806 4.472136e-03
## 10788   2 0.0012578616 3.55534806 4.472136e-03
## 10789   2 0.0012578616 3.55534806 4.472136e-03
## 10790   2 0.0012578616 3.55534806 4.472136e-03
## 10791   2 0.0012578616 3.55534806 4.472136e-03
## 10792   2 0.0012578616 3.55534806 4.472136e-03
## 10793   2 0.0012578616 3.55534806 4.472136e-03
## 10794   2 0.0012578616 3.55534806 4.472136e-03
## 10795   2 0.0012578616 3.55534806 4.472136e-03
## 10796   2 0.0012578616 3.55534806 4.472136e-03
## 10797   5 0.0025380711 1.76358859 4.476113e-03
## 10798   5 0.0025380711 1.76358859 4.476113e-03
## 10799   3 0.0030364372 1.47590652 4.481498e-03
## 10800   2 0.0035778175 1.25276297 4.482157e-03
## 10801   2 0.0035778175 1.25276297 4.482157e-03
## 10802   6 0.0033021464 1.35812348 4.484723e-03
## 10803   6 0.0033021464 1.35812348 4.484723e-03
## 10804   6 0.0033021464 1.35812348 4.484723e-03
## 10805   2 0.0020682523 2.16905370 4.486150e-03
## 10806   2 0.0020682523 2.16905370 4.486150e-03
## 10807   2 0.0020682523 2.16905370 4.486150e-03
## 10808   2 0.0020682523 2.16905370 4.486150e-03
## 10809   2 0.0020682523 2.16905370 4.486150e-03
## 10810   2 0.0020682523 2.16905370 4.486150e-03
## 10811   2 0.0020682523 2.16905370 4.486150e-03
## 10812   2 0.0020682523 2.16905370 4.486150e-03
## 10813   3 0.0033039648 1.35812348 4.487192e-03
## 10814   3 0.0033039648 1.35812348 4.487192e-03
## 10815   3 0.0033039648 1.35812348 4.487192e-03
## 10816   1 0.0027932961 1.60943791 4.495637e-03
## 10817   1 0.0027932961 1.60943791 4.495637e-03
## 10818   1 0.0027932961 1.60943791 4.495637e-03
## 10819   1 0.0027932961 1.60943791 4.495637e-03
## 10820   1 0.0027932961 1.60943791 4.495637e-03
## 10821   1 0.0027932961 1.60943791 4.495637e-03
## 10822   1 0.0027932961 1.60943791 4.495637e-03
## 10823   1 0.0027932961 1.60943791 4.495637e-03
## 10824   1 0.0045454545 0.99039870 4.501812e-03
## 10825   1 0.0045454545 0.99039870 4.501812e-03
## 10826   2 0.0049140049 0.91629073 4.502657e-03
## 10827   3 0.0080862534 0.55961579 4.525195e-03
## 10828   4 0.0107816712 0.41985385 4.526726e-03
## 10829   3 0.0025684932 1.76358859 4.529765e-03
## 10830   3 0.0025684932 1.76358859 4.529765e-03
## 10831   3 0.0025684932 1.76358859 4.529765e-03
## 10832   7 0.0174563591 0.25951120 4.530121e-03
## 10833   4 0.0074211503 0.61090908 4.533648e-03
## 10834   4 0.0028248588 1.60943791 4.546435e-03
## 10835   3 0.0053667263 0.84729786 4.547216e-03
## 10836   3 0.0053667263 0.84729786 4.547216e-03
## 10837  11 0.0068407960 0.66497630 4.548967e-03
## 10838   7 0.0242214533 0.18805223 4.554898e-03
## 10839   4 0.0042553191 1.07044141 4.555070e-03
## 10840   4 0.0042553191 1.07044141 4.555070e-03
## 10841   4 0.0042553191 1.07044141 4.555070e-03
## 10842   4 0.0042553191 1.07044141 4.555070e-03
## 10843   1 0.0018552876 2.45673577 4.557951e-03
## 10844   1 0.0018552876 2.45673577 4.557951e-03
## 10845   1 0.0018552876 2.45673577 4.557951e-03
## 10846   1 0.0018552876 2.45673577 4.557951e-03
## 10847   1 0.0018552876 2.45673577 4.557951e-03
## 10848   1 0.0018552876 2.45673577 4.557951e-03
## 10849   1 0.0018552876 2.45673577 4.557951e-03
## 10850   1 0.0018552876 2.45673577 4.557951e-03
## 10851   1 0.0018552876 2.45673577 4.557951e-03
## 10852   1 0.0018552876 2.45673577 4.557951e-03
## 10853   1 0.0018552876 2.45673577 4.557951e-03
## 10854   1 0.0018552876 2.45673577 4.557951e-03
## 10855   1 0.0018552876 2.45673577 4.557951e-03
## 10856   1 0.0018552876 2.45673577 4.557951e-03
## 10857   1 0.0018552876 2.45673577 4.557951e-03
## 10858   1 0.0018552876 2.45673577 4.557951e-03
## 10859   1 0.0018552876 2.45673577 4.557951e-03
## 10860   1 0.0018552876 2.45673577 4.557951e-03
## 10861   1 0.0018552876 2.45673577 4.557951e-03
## 10862   1 0.0018552876 2.45673577 4.557951e-03
## 10863   1 0.0018552876 2.45673577 4.557951e-03
## 10864   1 0.0018552876 2.45673577 4.557951e-03
## 10865   1 0.0018552876 2.45673577 4.557951e-03
## 10866   1 0.0018552876 2.45673577 4.557951e-03
## 10867   1 0.0018552876 2.45673577 4.557951e-03
## 10868   2 0.0053908356 0.84729786 4.567643e-03
## 10869   2 0.0049875312 0.91629073 4.570029e-03
## 10870   2 0.0049875312 0.91629073 4.570029e-03
## 10871   3 0.0074812968 0.61090908 4.570392e-03
## 10872   3 0.0089552239 0.51082562 4.574558e-03
## 10873   2 0.0023529412 1.94591015 4.578612e-03
## 10874   2 0.0023529412 1.94591015 4.578612e-03
## 10875   2 0.0023529412 1.94591015 4.578612e-03
## 10876   2 0.0023529412 1.94591015 4.578612e-03
## 10877   3 0.0031023785 1.47590652 4.578821e-03
## 10878   3 0.0031023785 1.47590652 4.578821e-03
## 10879   5 0.0068870523 0.66497630 4.579727e-03
## 10880   3 0.0018656716 2.45673577 4.583462e-03
## 10881   3 0.0018656716 2.45673577 4.583462e-03
## 10882   3 0.0018656716 2.45673577 4.583462e-03
## 10883   3 0.0021186441 2.16905370 4.595453e-03
## 10884   3 0.0021186441 2.16905370 4.595453e-03
## 10885   3 0.0021186441 2.16905370 4.595453e-03
## 10886   1 0.0023640662 1.94591015 4.600260e-03
## 10887   1 0.0023640662 1.94591015 4.600260e-03
## 10888   1 0.0023640662 1.94591015 4.600260e-03
## 10889   1 0.0023640662 1.94591015 4.600260e-03
## 10890   1 0.0023640662 1.94591015 4.600260e-03
## 10891   1 0.0023640662 1.94591015 4.600260e-03
## 10892   1 0.0023640662 1.94591015 4.600260e-03
## 10893   1 0.0023640662 1.94591015 4.600260e-03
## 10894   1 0.0023640662 1.94591015 4.600260e-03
## 10895   1 0.0023640662 1.94591015 4.600260e-03
## 10896   1 0.0023640662 1.94591015 4.600260e-03
## 10897   1 0.0023640662 1.94591015 4.600260e-03
## 10898   1 0.0023640662 1.94591015 4.600260e-03
## 10899   1 0.0023640662 1.94591015 4.600260e-03
## 10900   1 0.0023640662 1.94591015 4.600260e-03
## 10901   1 0.0023640662 1.94591015 4.600260e-03
## 10902   1 0.0023640662 1.94591015 4.600260e-03
## 10903   1 0.0023640662 1.94591015 4.600260e-03
## 10904   2 0.0069204152 0.66497630 4.601912e-03
## 10905   4 0.0026126715 1.76358859 4.607678e-03
## 10906   6 0.0063829787 0.72213472 4.609371e-03
## 10907   6 0.0063829787 0.72213472 4.609371e-03
## 10908   3 0.0039840637 1.15745279 4.611366e-03
## 10909   2 0.0021276596 2.16905370 4.615008e-03
## 10910   2 0.0021276596 2.16905370 4.615008e-03
## 10911   2 0.0021276596 2.16905370 4.615008e-03
## 10912   2 0.0021276596 2.16905370 4.615008e-03
## 10913  16 0.0099502488 0.46430561 4.619956e-03
## 10914   8 0.0110192837 0.41985385 4.626489e-03
## 10915   3 0.0040000000 1.15745279 4.629811e-03
## 10916   4 0.0099750623 0.46430561 4.631477e-03
## 10917   3 0.0018867925 2.45673577 4.635351e-03
## 10918   3 0.0018867925 2.45673577 4.635351e-03
## 10919   3 0.0018867925 2.45673577 4.635351e-03
## 10920   3 0.0034168565 1.35812348 4.640513e-03
## 10921   2 0.0013063357 3.55534806 4.644478e-03
## 10922   2 0.0013063357 3.55534806 4.644478e-03
## 10923   2 0.0013063357 3.55534806 4.644478e-03
## 10924   2 0.0013063357 3.55534806 4.644478e-03
## 10925   2 0.0013063357 3.55534806 4.644478e-03
## 10926   2 0.0013063357 3.55534806 4.644478e-03
## 10927   2 0.0013063357 3.55534806 4.644478e-03
## 10928   2 0.0013063357 3.55534806 4.644478e-03
## 10929   2 0.0013063357 3.55534806 4.644478e-03
## 10930   2 0.0013063357 3.55534806 4.644478e-03
## 10931   2 0.0013063357 3.55534806 4.644478e-03
## 10932   2 0.0013063357 3.55534806 4.644478e-03
## 10933   2 0.0013063357 3.55534806 4.644478e-03
## 10934   2 0.0013063357 3.55534806 4.644478e-03
## 10935   2 0.0013063357 3.55534806 4.644478e-03
## 10936   1 0.0016233766 2.86220088 4.646430e-03
## 10937   1 0.0016233766 2.86220088 4.646430e-03
## 10938   1 0.0016233766 2.86220088 4.646430e-03
## 10939   1 0.0016233766 2.86220088 4.646430e-03
## 10940   1 0.0016233766 2.86220088 4.646430e-03
## 10941   1 0.0016233766 2.86220088 4.646430e-03
## 10942   1 0.0016233766 2.86220088 4.646430e-03
## 10943   1 0.0016233766 2.86220088 4.646430e-03
## 10944   1 0.0016233766 2.86220088 4.646430e-03
## 10945   1 0.0016233766 2.86220088 4.646430e-03
## 10946   1 0.0016233766 2.86220088 4.646430e-03
## 10947   1 0.0016233766 2.86220088 4.646430e-03
## 10948   1 0.0016233766 2.86220088 4.646430e-03
## 10949   1 0.0016233766 2.86220088 4.646430e-03
## 10950   1 0.0016233766 2.86220088 4.646430e-03
## 10951   1 0.0016233766 2.86220088 4.646430e-03
## 10952   1 0.0016233766 2.86220088 4.646430e-03
## 10953   1 0.0016233766 2.86220088 4.646430e-03
## 10954   1 0.0016233766 2.86220088 4.646430e-03
## 10955   1 0.0016233766 2.86220088 4.646430e-03
## 10956   1 0.0016233766 2.86220088 4.646430e-03
## 10957   1 0.0016233766 2.86220088 4.646430e-03
## 10958   1 0.0016233766 2.86220088 4.646430e-03
## 10959   1 0.0016233766 2.86220088 4.646430e-03
## 10960   2 0.0037105751 1.25276297 4.648471e-03
## 10961   2 0.0034246575 1.35812348 4.651108e-03
## 10962   2 0.0034246575 1.35812348 4.651108e-03
## 10963   1 0.0034246575 1.35812348 4.651108e-03
## 10964   1 0.0034246575 1.35812348 4.651108e-03
## 10965   1 0.0034246575 1.35812348 4.651108e-03
## 10966   1 0.0034246575 1.35812348 4.651108e-03
## 10967   1 0.0034246575 1.35812348 4.651108e-03
## 10968   1 0.0034246575 1.35812348 4.651108e-03
## 10969   1 0.0034246575 1.35812348 4.651108e-03
## 10970   1 0.0034246575 1.35812348 4.651108e-03
## 10971   1 0.0034246575 1.35812348 4.651108e-03
## 10972   1 0.0034246575 1.35812348 4.651108e-03
## 10973   1 0.0026385224 1.76358859 4.653268e-03
## 10974   1 0.0026385224 1.76358859 4.653268e-03
## 10975   1 0.0026385224 1.76358859 4.653268e-03
## 10976   1 0.0026385224 1.76358859 4.653268e-03
## 10977   1 0.0026385224 1.76358859 4.653268e-03
## 10978   1 0.0026385224 1.76358859 4.653268e-03
## 10979   1 0.0029069767 1.60943791 4.678599e-03
## 10980   1 0.0029069767 1.60943791 4.678599e-03
## 10981   1 0.0029069767 1.60943791 4.678599e-03
## 10982   1 0.0029069767 1.60943791 4.678599e-03
## 10983   1 0.0029069767 1.60943791 4.678599e-03
## 10984   1 0.0029069767 1.60943791 4.678599e-03
## 10985   2 0.0047281324 0.99039870 4.682736e-03
## 10986   2 0.0047281324 0.99039870 4.682736e-03
## 10987   2 0.0047281324 0.99039870 4.682736e-03
## 10988   2 0.0047281324 0.99039870 4.682736e-03
## 10989   2 0.0026560425 1.76358859 4.684166e-03
## 10990   2 0.0026560425 1.76358859 4.684166e-03
## 10991   4 0.0040485830 1.15745279 4.686044e-03
## 10992   4 0.0111731844 0.41985385 4.691104e-03
## 10993   2 0.0043859649 1.07044141 4.694918e-03
## 10994   5 0.0139664804 0.33647224 4.699333e-03
## 10995   1 0.0034602076 1.35812348 4.699389e-03
## 10996   1 0.0034602076 1.35812348 4.699389e-03
## 10997   1 0.0034602076 1.35812348 4.699389e-03
## 10998   1 0.0034602076 1.35812348 4.699389e-03
## 10999   2 0.0026666667 1.76358859 4.702903e-03
## 11000   2 0.0026666667 1.76358859 4.702903e-03
## 11001   2 0.0026666667 1.76358859 4.702903e-03
## 11002   2 0.0026666667 1.76358859 4.702903e-03
## 11003   3 0.0051369863 0.91629073 4.706973e-03
## 11004   3 0.0051369863 0.91629073 4.706973e-03
## 11005   3 0.0031914894 1.47590652 4.710340e-03
## 11006   8 0.0044028619 1.07044141 4.713006e-03
## 11007   2 0.0024242424 1.94591015 4.717358e-03
## 11008   2 0.0024242424 1.94591015 4.717358e-03
## 11009   1 0.0013280212 3.55534806 4.721578e-03
## 11010   1 0.0013280212 3.55534806 4.721578e-03
## 11011   1 0.0013280212 3.55534806 4.721578e-03
## 11012   1 0.0013280212 3.55534806 4.721578e-03
## 11013   1 0.0013280212 3.55534806 4.721578e-03
## 11014   1 0.0013280212 3.55534806 4.721578e-03
## 11015   1 0.0013280212 3.55534806 4.721578e-03
## 11016   1 0.0013280212 3.55534806 4.721578e-03
## 11017   1 0.0013280212 3.55534806 4.721578e-03
## 11018   1 0.0013280212 3.55534806 4.721578e-03
## 11019   1 0.0013280212 3.55534806 4.721578e-03
## 11020   1 0.0013280212 3.55534806 4.721578e-03
## 11021   1 0.0013280212 3.55534806 4.721578e-03
## 11022   1 0.0013280212 3.55534806 4.721578e-03
## 11023   1 0.0013280212 3.55534806 4.721578e-03
## 11024   1 0.0013280212 3.55534806 4.721578e-03
## 11025   1 0.0013280212 3.55534806 4.721578e-03
## 11026   1 0.0013280212 3.55534806 4.721578e-03
## 11027   1 0.0013280212 3.55534806 4.721578e-03
## 11028   1 0.0013280212 3.55534806 4.721578e-03
## 11029   1 0.0013280212 3.55534806 4.721578e-03
## 11030   1 0.0013280212 3.55534806 4.721578e-03
## 11031   1 0.0013280212 3.55534806 4.721578e-03
## 11032   1 0.0013280212 3.55534806 4.721578e-03
## 11033   1 0.0013280212 3.55534806 4.721578e-03
## 11034   1 0.0013280212 3.55534806 4.721578e-03
## 11035   1 0.0013280212 3.55534806 4.721578e-03
## 11036   1 0.0013280212 3.55534806 4.721578e-03
## 11037   1 0.0013280212 3.55534806 4.721578e-03
## 11038   1 0.0013280212 3.55534806 4.721578e-03
## 11039   1 0.0013280212 3.55534806 4.721578e-03
## 11040   1 0.0013280212 3.55534806 4.721578e-03
## 11041   1 0.0013280212 3.55534806 4.721578e-03
## 11042   1 0.0013280212 3.55534806 4.721578e-03
## 11043   1 0.0013280212 3.55534806 4.721578e-03
## 11044   1 0.0013280212 3.55534806 4.721578e-03
## 11045   1 0.0013280212 3.55534806 4.721578e-03
## 11046   3 0.0016510732 2.86220088 4.725703e-03
## 11047   3 0.0016510732 2.86220088 4.725703e-03
## 11048   3 0.0016510732 2.86220088 4.725703e-03
## 11049   6 0.0037735849 1.25276297 4.727407e-03
## 11050   2 0.0055865922 0.84729786 4.733508e-03
## 11051   1 0.0013333333 3.55534806 4.740464e-03
## 11052   1 0.0013333333 3.55534806 4.740464e-03
## 11053   1 0.0013333333 3.55534806 4.740464e-03
## 11054   1 0.0013333333 3.55534806 4.740464e-03
## 11055   1 0.0013333333 3.55534806 4.740464e-03
## 11056   1 0.0013333333 3.55534806 4.740464e-03
## 11057   1 0.0013333333 3.55534806 4.740464e-03
## 11058   1 0.0013333333 3.55534806 4.740464e-03
## 11059   1 0.0013333333 3.55534806 4.740464e-03
## 11060   1 0.0013333333 3.55534806 4.740464e-03
## 11061   1 0.0013333333 3.55534806 4.740464e-03
## 11062   1 0.0013333333 3.55534806 4.740464e-03
## 11063   1 0.0013333333 3.55534806 4.740464e-03
## 11064   1 0.0013333333 3.55534806 4.740464e-03
## 11065   1 0.0013333333 3.55534806 4.740464e-03
## 11066   1 0.0013333333 3.55534806 4.740464e-03
## 11067   1 0.0013333333 3.55534806 4.740464e-03
## 11068   1 0.0013333333 3.55534806 4.740464e-03
## 11069   1 0.0013333333 3.55534806 4.740464e-03
## 11070   1 0.0013333333 3.55534806 4.740464e-03
## 11071   1 0.0013333333 3.55534806 4.740464e-03
## 11072   1 0.0013333333 3.55534806 4.740464e-03
## 11073   1 0.0013333333 3.55534806 4.740464e-03
## 11074   1 0.0013333333 3.55534806 4.740464e-03
## 11075   1 0.0013333333 3.55534806 4.740464e-03
## 11076   1 0.0013333333 3.55534806 4.740464e-03
## 11077   1 0.0013333333 3.55534806 4.740464e-03
## 11078   1 0.0013333333 3.55534806 4.740464e-03
## 11079   1 0.0013333333 3.55534806 4.740464e-03
## 11080   1 0.0013333333 3.55534806 4.740464e-03
## 11081   1 0.0013333333 3.55534806 4.740464e-03
## 11082   1 0.0013333333 3.55534806 4.740464e-03
## 11083   1 0.0013333333 3.55534806 4.740464e-03
## 11084   1 0.0013333333 3.55534806 4.740464e-03
## 11085   1 0.0013333333 3.55534806 4.740464e-03
## 11086   1 0.0013333333 3.55534806 4.740464e-03
## 11087   1 0.0013333333 3.55534806 4.740464e-03
## 11088   1 0.0013333333 3.55534806 4.740464e-03
## 11089   1 0.0013333333 3.55534806 4.740464e-03
## 11090   1 0.0013333333 3.55534806 4.740464e-03
## 11091   1 0.0013333333 3.55534806 4.740464e-03
## 11092   1 0.0013333333 3.55534806 4.740464e-03
## 11093   1 0.0013333333 3.55534806 4.740464e-03
## 11094   1 0.0013333333 3.55534806 4.740464e-03
## 11095   1 0.0013333333 3.55534806 4.740464e-03
## 11096   1 0.0013333333 3.55534806 4.740464e-03
## 11097   1 0.0013333333 3.55534806 4.740464e-03
## 11098   1 0.0013333333 3.55534806 4.740464e-03
## 11099   1 0.0013333333 3.55534806 4.740464e-03
## 11100   1 0.0013333333 3.55534806 4.740464e-03
## 11101   1 0.0013333333 3.55534806 4.740464e-03
## 11102   1 0.0013333333 3.55534806 4.740464e-03
## 11103   1 0.0013333333 3.55534806 4.740464e-03
## 11104   1 0.0013333333 3.55534806 4.740464e-03
## 11105   1 0.0013333333 3.55534806 4.740464e-03
## 11106   1 0.0013333333 3.55534806 4.740464e-03
## 11107   1 0.0013333333 3.55534806 4.740464e-03
## 11108   1 0.0013333333 3.55534806 4.740464e-03
## 11109   1 0.0013333333 3.55534806 4.740464e-03
## 11110   1 0.0013333333 3.55534806 4.740464e-03
## 11111   1 0.0013333333 3.55534806 4.740464e-03
## 11112   1 0.0013333333 3.55534806 4.740464e-03
## 11113   1 0.0013333333 3.55534806 4.740464e-03
## 11114   1 0.0013333333 3.55534806 4.740464e-03
## 11115   1 0.0013333333 3.55534806 4.740464e-03
## 11116   1 0.0013333333 3.55534806 4.740464e-03
## 11117   1 0.0013333333 3.55534806 4.740464e-03
## 11118   1 0.0013333333 3.55534806 4.740464e-03
## 11119   1 0.0013333333 3.55534806 4.740464e-03
## 11120   1 0.0013333333 3.55534806 4.740464e-03
## 11121   1 0.0013333333 3.55534806 4.740464e-03
## 11122   1 0.0013333333 3.55534806 4.740464e-03
## 11123   1 0.0013333333 3.55534806 4.740464e-03
## 11124   1 0.0013333333 3.55534806 4.740464e-03
## 11125   1 0.0013333333 3.55534806 4.740464e-03
## 11126   1 0.0013333333 3.55534806 4.740464e-03
## 11127   1 0.0013333333 3.55534806 4.740464e-03
## 11128   1 0.0013333333 3.55534806 4.740464e-03
## 11129   1 0.0013333333 3.55534806 4.740464e-03
## 11130   1 0.0013333333 3.55534806 4.740464e-03
## 11131   1 0.0013333333 3.55534806 4.740464e-03
## 11132   1 0.0013333333 3.55534806 4.740464e-03
## 11133   1 0.0013333333 3.55534806 4.740464e-03
## 11134   1 0.0013333333 3.55534806 4.740464e-03
## 11135   1 0.0013333333 3.55534806 4.740464e-03
## 11136   1 0.0013333333 3.55534806 4.740464e-03
## 11137   1 0.0013333333 3.55534806 4.740464e-03
## 11138   1 0.0013333333 3.55534806 4.740464e-03
## 11139   1 0.0013333333 3.55534806 4.740464e-03
## 11140   1 0.0013333333 3.55534806 4.740464e-03
## 11141   1 0.0013333333 3.55534806 4.740464e-03
## 11142   1 0.0013333333 3.55534806 4.740464e-03
## 11143   1 0.0013333333 3.55534806 4.740464e-03
## 11144   1 0.0013333333 3.55534806 4.740464e-03
## 11145   9 0.0055970149 0.84729786 4.742339e-03
## 11146  20 0.0141242938 0.33647224 4.752433e-03
## 11147   1 0.0026954178 1.76358859 4.753608e-03
## 11148   1 0.0026954178 1.76358859 4.753608e-03
## 11149   1 0.0026954178 1.76358859 4.753608e-03
## 11150   1 0.0026954178 1.76358859 4.753608e-03
## 11151   1 0.0026954178 1.76358859 4.753608e-03
## 11152   1 0.0026954178 1.76358859 4.753608e-03
## 11153   1 0.0026954178 1.76358859 4.753608e-03
## 11154   1 0.0026954178 1.76358859 4.753608e-03
## 11155   1 0.0021929825 2.16905370 4.756697e-03
## 11156   1 0.0021929825 2.16905370 4.756697e-03
## 11157   1 0.0021929825 2.16905370 4.756697e-03
## 11158   1 0.0021929825 2.16905370 4.756697e-03
## 11159   1 0.0021929825 2.16905370 4.756697e-03
## 11160   1 0.0021929825 2.16905370 4.756697e-03
## 11161   1 0.0021929825 2.16905370 4.756697e-03
## 11162   1 0.0021929825 2.16905370 4.756697e-03
## 11163   1 0.0021929825 2.16905370 4.756697e-03
## 11164   1 0.0021929825 2.16905370 4.756697e-03
## 11165   1 0.0021929825 2.16905370 4.756697e-03
## 11166   1 0.0021929825 2.16905370 4.756697e-03
## 11167  13 0.0071546505 0.66497630 4.757673e-03
## 11168  13 0.0065989848 0.72213472 4.765356e-03
## 11169   1 0.0060975610 0.78275934 4.772923e-03
## 11170   4 0.0022014309 2.16905370 4.775022e-03
## 11171   4 0.0022014309 2.16905370 4.775022e-03
## 11172   4 0.0022014309 2.16905370 4.775022e-03
## 11173   2 0.0022026432 2.16905370 4.777651e-03
## 11174   2 0.0022026432 2.16905370 4.777651e-03
## 11175   2 0.0022026432 2.16905370 4.777651e-03
## 11176   2 0.0022026432 2.16905370 4.777651e-03
## 11177   2 0.0022026432 2.16905370 4.777651e-03
## 11178   2 0.0022026432 2.16905370 4.777651e-03
## 11179   2 0.0022026432 2.16905370 4.777651e-03
## 11180   1 0.0024570025 1.94591015 4.781106e-03
## 11181   1 0.0024570025 1.94591015 4.781106e-03
## 11182   1 0.0024570025 1.94591015 4.781106e-03
## 11183   1 0.0024570025 1.94591015 4.781106e-03
## 11184   1 0.0024570025 1.94591015 4.781106e-03
## 11185   1 0.0024570025 1.94591015 4.781106e-03
## 11186   1 0.0024570025 1.94591015 4.781106e-03
## 11187   1 0.0024570025 1.94591015 4.781106e-03
## 11188   1 0.0024570025 1.94591015 4.781106e-03
## 11189   1 0.0024570025 1.94591015 4.781106e-03
## 11190   1 0.0024570025 1.94591015 4.781106e-03
## 11191   1 0.0024570025 1.94591015 4.781106e-03
## 11192   1 0.0024570025 1.94591015 4.781106e-03
## 11193   1 0.0024570025 1.94591015 4.781106e-03
## 11194   1 0.0024570025 1.94591015 4.781106e-03
## 11195   1 0.0024570025 1.94591015 4.781106e-03
## 11196   3 0.0041322314 1.15745279 4.782863e-03
## 11197   2 0.0032467532 1.47590652 4.791904e-03
## 11198   2 0.0032467532 1.47590652 4.791904e-03
## 11199   2 0.0032467532 1.47590652 4.791904e-03
## 11200   4 0.0048484848 0.99039870 4.801933e-03
## 11201   1 0.0029850746 1.60943791 4.804292e-03
## 11202   1 0.0029850746 1.60943791 4.804292e-03
## 11203   1 0.0029850746 1.60943791 4.804292e-03
## 11204   4 0.0044943820 1.07044141 4.810973e-03
## 11205   3 0.0019595036 2.45673577 4.813983e-03
## 11206   3 0.0019595036 2.45673577 4.813983e-03
## 11207   3 0.0019595036 2.45673577 4.813983e-03
## 11208   3 0.0048701299 0.99039870 4.823370e-03
## 11209   2 0.0052770449 0.91629073 4.835307e-03
## 11210   2 0.0052770449 0.91629073 4.835307e-03
## 11211   3 0.0079155673 0.61090908 4.835692e-03
## 11212   4 0.0024875622 1.94591015 4.840573e-03
## 11213   1 0.0024937656 1.94591015 4.852644e-03
## 11214   1 0.0024937656 1.94591015 4.852644e-03
## 11215   1 0.0024937656 1.94591015 4.852644e-03
## 11216   1 0.0024937656 1.94591015 4.852644e-03
## 11217   1 0.0024937656 1.94591015 4.852644e-03
## 11218   1 0.0024937656 1.94591015 4.852644e-03
## 11219   1 0.0024937656 1.94591015 4.852644e-03
## 11220   1 0.0024937656 1.94591015 4.852644e-03
## 11221   1 0.0024937656 1.94591015 4.852644e-03
## 11222   1 0.0024937656 1.94591015 4.852644e-03
## 11223   5 0.0027517887 1.76358859 4.853023e-03
## 11224   2 0.0027548209 1.76358859 4.858371e-03
## 11225   2 0.0035778175 1.35812348 4.859118e-03
## 11226   1 0.0045454545 1.07044141 4.865643e-03
## 11227   1 0.0045454545 1.07044141 4.865643e-03
## 11228   1 0.0045454545 1.07044141 4.865643e-03
## 11229   1 0.0045454545 1.07044141 4.865643e-03
## 11230   1 0.0045454545 1.07044141 4.865643e-03
## 11231   1 0.0045454545 1.07044141 4.865643e-03
## 11232   1 0.0045454545 1.07044141 4.865643e-03
## 11233   2 0.0049140049 0.99039870 4.866824e-03
## 11234   6 0.0033021464 1.47590652 4.873659e-03
## 11235   5 0.0053191489 0.91629073 4.873887e-03
## 11236   2 0.0022471910 2.16905370 4.874278e-03
## 11237   2 0.0022471910 2.16905370 4.874278e-03
## 11238   2 0.0022471910 2.16905370 4.874278e-03
## 11239   3 0.0033039648 1.47590652 4.876343e-03
## 11240   3 0.0033039648 1.47590652 4.876343e-03
## 11241   3 0.0033039648 1.47590652 4.876343e-03
## 11242   3 0.0033039648 1.47590652 4.876343e-03
## 11243   4 0.0045558087 1.07044141 4.876726e-03
## 11244   3 0.0087209302 0.55961579 4.880370e-03
## 11245   4 0.0053333333 0.91629073 4.886884e-03
## 11246   3 0.0030364372 1.60943791 4.886957e-03
## 11247   3 0.0030364372 1.60943791 4.886957e-03
## 11248   4 0.0025157233 1.94591015 4.895371e-03
## 11249   4 0.0025157233 1.94591015 4.895371e-03
## 11250   1 0.0013774105 3.55534806 4.897174e-03
## 11251   1 0.0013774105 3.55534806 4.897174e-03
## 11252   1 0.0013774105 3.55534806 4.897174e-03
## 11253   1 0.0013774105 3.55534806 4.897174e-03
## 11254   1 0.0013774105 3.55534806 4.897174e-03
## 11255   1 0.0013774105 3.55534806 4.897174e-03
## 11256   1 0.0013774105 3.55534806 4.897174e-03
## 11257   1 0.0013774105 3.55534806 4.897174e-03
## 11258   1 0.0013774105 3.55534806 4.897174e-03
## 11259   1 0.0013774105 3.55534806 4.897174e-03
## 11260   1 0.0013774105 3.55534806 4.897174e-03
## 11261   1 0.0013774105 3.55534806 4.897174e-03
## 11262   1 0.0013774105 3.55534806 4.897174e-03
## 11263   1 0.0013774105 3.55534806 4.897174e-03
## 11264   1 0.0013774105 3.55534806 4.897174e-03
## 11265   1 0.0013774105 3.55534806 4.897174e-03
## 11266   1 0.0013774105 3.55534806 4.897174e-03
## 11267   1 0.0013774105 3.55534806 4.897174e-03
## 11268   1 0.0013774105 3.55534806 4.897174e-03
## 11269   1 0.0013774105 3.55534806 4.897174e-03
## 11270   1 0.0013774105 3.55534806 4.897174e-03
## 11271   1 0.0013774105 3.55534806 4.897174e-03
## 11272   1 0.0013774105 3.55534806 4.897174e-03
## 11273   1 0.0013774105 3.55534806 4.897174e-03
## 11274   1 0.0013774105 3.55534806 4.897174e-03
## 11275   1 0.0013774105 3.55534806 4.897174e-03
## 11276   1 0.0013774105 3.55534806 4.897174e-03
## 11277   1 0.0013774105 3.55534806 4.897174e-03
## 11278   1 0.0013774105 3.55534806 4.897174e-03
## 11279   1 0.0013774105 3.55534806 4.897174e-03
## 11280   1 0.0013774105 3.55534806 4.897174e-03
## 11281   1 0.0013774105 3.55534806 4.897174e-03
## 11282   1 0.0013774105 3.55534806 4.897174e-03
## 11283   1 0.0013774105 3.55534806 4.897174e-03
## 11284   1 0.0013774105 3.55534806 4.897174e-03
## 11285   1 0.0013774105 3.55534806 4.897174e-03
## 11286   1 0.0013774105 3.55534806 4.897174e-03
## 11287   1 0.0013774105 3.55534806 4.897174e-03
## 11288   1 0.0013774105 3.55534806 4.897174e-03
## 11289   1 0.0013774105 3.55534806 4.897174e-03
## 11290   1 0.0013774105 3.55534806 4.897174e-03
## 11291   1 0.0013774105 3.55534806 4.897174e-03
## 11292   1 0.0013774105 3.55534806 4.897174e-03
## 11293   1 0.0013774105 3.55534806 4.897174e-03
## 11294   1 0.0013774105 3.55534806 4.897174e-03
## 11295   1 0.0013774105 3.55534806 4.897174e-03
## 11296   1 0.0013774105 3.55534806 4.897174e-03
## 11297   1 0.0013774105 3.55534806 4.897174e-03
## 11298   1 0.0013774105 3.55534806 4.897174e-03
## 11299   1 0.0013774105 3.55534806 4.897174e-03
## 11300   1 0.0013774105 3.55534806 4.897174e-03
## 11301   1 0.0013774105 3.55534806 4.897174e-03
## 11302   1 0.0013774105 3.55534806 4.897174e-03
## 11303   1 0.0013774105 3.55534806 4.897174e-03
## 11304   1 0.0013774105 3.55534806 4.897174e-03
## 11305   1 0.0013774105 3.55534806 4.897174e-03
## 11306   1 0.0013774105 3.55534806 4.897174e-03
## 11307   1 0.0013774105 3.55534806 4.897174e-03
## 11308   1 0.0013774105 3.55534806 4.897174e-03
## 11309   1 0.0013774105 3.55534806 4.897174e-03
## 11310   1 0.0013774105 3.55534806 4.897174e-03
## 11311   1 0.0013774105 3.55534806 4.897174e-03
## 11312   1 0.0013774105 3.55534806 4.897174e-03
## 11313   1 0.0013774105 3.55534806 4.897174e-03
## 11314   1 0.0013774105 3.55534806 4.897174e-03
## 11315   1 0.0013774105 3.55534806 4.897174e-03
## 11316   1 0.0013774105 3.55534806 4.897174e-03
## 11317   1 0.0013774105 3.55534806 4.897174e-03
## 11318   1 0.0013774105 3.55534806 4.897174e-03
## 11319   1 0.0013774105 3.55534806 4.897174e-03
## 11320   1 0.0013774105 3.55534806 4.897174e-03
## 11321   1 0.0013774105 3.55534806 4.897174e-03
## 11322   1 0.0013774105 3.55534806 4.897174e-03
## 11323   1 0.0013774105 3.55534806 4.897174e-03
## 11324   1 0.0013774105 3.55534806 4.897174e-03
## 11325   1 0.0013774105 3.55534806 4.897174e-03
## 11326   1 0.0013774105 3.55534806 4.897174e-03
## 11327   1 0.0013774105 3.55534806 4.897174e-03
## 11328   1 0.0013774105 3.55534806 4.897174e-03
## 11329   1 0.0013774105 3.55534806 4.897174e-03
## 11330   1 0.0013774105 3.55534806 4.897174e-03
## 11331   1 0.0013774105 3.55534806 4.897174e-03
## 11332   1 0.0013774105 3.55534806 4.897174e-03
## 11333   1 0.0013774105 3.55534806 4.897174e-03
## 11334   1 0.0013774105 3.55534806 4.897174e-03
## 11335   1 0.0013774105 3.55534806 4.897174e-03
## 11336   1 0.0013774105 3.55534806 4.897174e-03
## 11337   1 0.0013774105 3.55534806 4.897174e-03
## 11338   1 0.0013774105 3.55534806 4.897174e-03
## 11339   1 0.0013774105 3.55534806 4.897174e-03
## 11340   1 0.0013774105 3.55534806 4.897174e-03
## 11341   1 0.0013774105 3.55534806 4.897174e-03
## 11342   1 0.0013774105 3.55534806 4.897174e-03
## 11343   1 0.0013774105 3.55534806 4.897174e-03
## 11344   1 0.0013774105 3.55534806 4.897174e-03
## 11345   4 0.0105540897 0.46430561 4.900323e-03
## 11346   2 0.0017123288 2.86220088 4.901029e-03
## 11347   2 0.0017123288 2.86220088 4.901029e-03
## 11348   2 0.0017123288 2.86220088 4.901029e-03
## 11349   2 0.0017123288 2.86220088 4.901029e-03
## 11350   2 0.0017123288 2.86220088 4.901029e-03
## 11351   2 0.0017123288 2.86220088 4.901029e-03
## 11352   2 0.0017123288 2.86220088 4.901029e-03
## 11353   2 0.0017123288 2.86220088 4.901029e-03
## 11354   2 0.0017123288 2.86220088 4.901029e-03
## 11355   2 0.0017123288 2.86220088 4.901029e-03
## 11356   2 0.0017123288 2.86220088 4.901029e-03
## 11357   1 0.0017123288 2.86220088 4.901029e-03
## 11358   1 0.0017123288 2.86220088 4.901029e-03
## 11359   1 0.0017123288 2.86220088 4.901029e-03
## 11360   1 0.0017123288 2.86220088 4.901029e-03
## 11361   1 0.0017123288 2.86220088 4.901029e-03
## 11362   1 0.0017123288 2.86220088 4.901029e-03
## 11363   1 0.0017123288 2.86220088 4.901029e-03
## 11364   1 0.0017123288 2.86220088 4.901029e-03
## 11365   1 0.0017123288 2.86220088 4.901029e-03
## 11366   1 0.0017123288 2.86220088 4.901029e-03
## 11367   1 0.0017123288 2.86220088 4.901029e-03
## 11368   1 0.0017123288 2.86220088 4.901029e-03
## 11369   1 0.0017123288 2.86220088 4.901029e-03
## 11370   1 0.0017123288 2.86220088 4.901029e-03
## 11371   1 0.0017123288 2.86220088 4.901029e-03
## 11372   1 0.0017123288 2.86220088 4.901029e-03
## 11373   1 0.0017123288 2.86220088 4.901029e-03
## 11374   1 0.0017123288 2.86220088 4.901029e-03
## 11375   1 0.0017123288 2.86220088 4.901029e-03
## 11376   1 0.0017123288 2.86220088 4.901029e-03
## 11377   1 0.0017123288 2.86220088 4.901029e-03
## 11378   1 0.0017123288 2.86220088 4.901029e-03
## 11379   1 0.0017123288 2.86220088 4.901029e-03
## 11380   6 0.0042372881 1.15745279 4.904461e-03
## 11381   4 0.0087719298 0.55961579 4.908910e-03
## 11382   4 0.0042553191 1.15745279 4.925331e-03
## 11383   1 0.0027932961 1.76358859 4.926225e-03
## 11384   1 0.0027932961 1.76358859 4.926225e-03
## 11385   1 0.0027932961 1.76358859 4.926225e-03
## 11386   1 0.0027932961 1.76358859 4.926225e-03
## 11387   1 0.0027932961 1.76358859 4.926225e-03
## 11388   1 0.0027932961 1.76358859 4.926225e-03
## 11389   1 0.0027932961 1.76358859 4.926225e-03
## 11390   1 0.0027932961 1.76358859 4.926225e-03
## 11391   1 0.0027932961 1.76358859 4.926225e-03
## 11392   1 0.0027932961 1.76358859 4.926225e-03
## 11393   1 0.0027932961 1.76358859 4.926225e-03
## 11394   1 0.0027932961 1.76358859 4.926225e-03
## 11395   8 0.0088105727 0.55961579 4.930536e-03
## 11396   6 0.0068337130 0.72213472 4.934861e-03
## 11397   3 0.0036363636 1.35812348 4.938631e-03
## 11398   3 0.0036363636 1.35812348 4.938631e-03
## 11399   5 0.0025380711 1.94591015 4.938858e-03
## 11400   2 0.0053908356 0.91629073 4.939573e-03
## 11401   2 0.0053908356 0.91629073 4.939573e-03
## 11402   2 0.0049875312 0.99039870 4.939644e-03
## 11403   2 0.0022779043 2.16905370 4.940897e-03
## 11404   2 0.0022779043 2.16905370 4.940897e-03
## 11405   2 0.0022779043 2.16905370 4.940897e-03
## 11406   2 0.0022779043 2.16905370 4.940897e-03
## 11407   2 0.0022779043 2.16905370 4.940897e-03
## 11408   4 0.0068493151 0.72213472 4.946128e-03
## 11409   2 0.0068493151 0.72213472 4.946128e-03
## 11410   2 0.0068493151 0.72213472 4.946128e-03
## 11411   2 0.0020242915 2.45673577 4.973149e-03
## 11412   2 0.0020242915 2.45673577 4.973149e-03
## 11413   2 0.0020242915 2.45673577 4.973149e-03
## 11414   2 0.0020242915 2.45673577 4.973149e-03
## 11415   2 0.0020242915 2.45673577 4.973149e-03
## 11416   2 0.0020242915 2.45673577 4.973149e-03
## 11417   2 0.0020242915 2.45673577 4.973149e-03
## 11418   2 0.0020242915 2.45673577 4.973149e-03
## 11419   3 0.0074812968 0.66497630 4.974885e-03
## 11420   8 0.0050314465 0.99039870 4.983138e-03
## 11421   4 0.0020304569 2.45673577 4.988296e-03
## 11422   4 0.0020304569 2.45673577 4.988296e-03
## 11423   3 0.0039840637 1.25276297 4.991088e-03
## 11424   3 0.0031023785 1.60943791 4.993086e-03
## 11425   3 0.0025684932 1.94591015 4.998057e-03
## 11426   3 0.0025684932 1.94591015 4.998057e-03
## 11427   3 0.0025684932 1.94591015 4.998057e-03
## 11428   2 0.0014124294 3.55534806 5.021678e-03
## 11429   2 0.0014124294 3.55534806 5.021678e-03
## 11430   2 0.0014124294 3.55534806 5.021678e-03
## 11431   2 0.0014124294 3.55534806 5.021678e-03
## 11432   2 0.0014124294 3.55534806 5.021678e-03
## 11433   2 0.0014124294 3.55534806 5.021678e-03
## 11434   2 0.0014124294 3.55534806 5.021678e-03
## 11435   2 0.0014124294 3.55534806 5.021678e-03
## 11436   2 0.0014124294 3.55534806 5.021678e-03
## 11437   2 0.0014124294 3.55534806 5.021678e-03
## 11438   2 0.0014124294 3.55534806 5.021678e-03
## 11439   2 0.0014124294 3.55534806 5.021678e-03
## 11440   2 0.0014124294 3.55534806 5.021678e-03
## 11441   2 0.0014124294 3.55534806 5.021678e-03
## 11442   2 0.0014124294 3.55534806 5.021678e-03
## 11443   2 0.0014124294 3.55534806 5.021678e-03
## 11444   7 0.0082352941 0.61090908 5.031016e-03
## 11445   4 0.0047058824 1.07044141 5.037371e-03
## 11446   2 0.0037105751 1.35812348 5.039419e-03
## 11447   2 0.0037105751 1.35812348 5.039419e-03
## 11448   3 0.0034168565 1.47590652 5.042961e-03
## 11449   4 0.0034246575 1.47590652 5.054474e-03
## 11450   2 0.0034246575 1.47590652 5.054474e-03
## 11451   2 0.0034246575 1.47590652 5.054474e-03
## 11452   2 0.0034246575 1.47590652 5.054474e-03
## 11453   1 0.0034246575 1.47590652 5.054474e-03
## 11454   1 0.0034246575 1.47590652 5.054474e-03
## 11455   1 0.0034246575 1.47590652 5.054474e-03
## 11456   1 0.0034246575 1.47590652 5.054474e-03
## 11457   2 0.0059701493 0.84729786 5.058495e-03
## 11458   2 0.0059701493 0.84729786 5.058495e-03
## 11459   2 0.0059701493 0.84729786 5.058495e-03
## 11460   5 0.0031446541 1.60943791 5.061126e-03
## 11461   2 0.0047281324 1.07044141 5.061189e-03
## 11462   2 0.0047281324 1.07044141 5.061189e-03
## 11463   6 0.0037313433 1.35812348 5.067625e-03
## 11464   4 0.0040485830 1.25276297 5.071915e-03
## 11465   4 0.0040485830 1.25276297 5.071915e-03
## 11466   2 0.0043859649 1.15745279 5.076547e-03
## 11467   7 0.0059931507 0.84729786 5.077984e-03
## 11468   2 0.0020682523 2.45673577 5.081149e-03
## 11469   2 0.0020682523 2.45673577 5.081149e-03
## 11470   2 0.0020682523 2.45673577 5.081149e-03
## 11471   2 0.0020682523 2.45673577 5.081149e-03
## 11472   2 0.0020682523 2.45673577 5.081149e-03
## 11473   2 0.0020682523 2.45673577 5.081149e-03
## 11474   2 0.0020682523 2.45673577 5.081149e-03
## 11475   2 0.0020682523 2.45673577 5.081149e-03
## 11476   2 0.0020682523 2.45673577 5.081149e-03
## 11477   4 0.0026126715 1.94591015 5.084024e-03
## 11478   2 0.0090909091 0.55961579 5.087416e-03
## 11479   3 0.0051369863 0.99039870 5.087665e-03
## 11480   3 0.0051369863 0.99039870 5.087665e-03
## 11481   2 0.0023529412 2.16905370 5.103656e-03
## 11482   2 0.0023529412 2.16905370 5.103656e-03
## 11483   2 0.0023529412 2.16905370 5.103656e-03
## 11484   2 0.0023529412 2.16905370 5.103656e-03
## 11485   2 0.0023529412 2.16905370 5.103656e-03
## 11486   2 0.0023529412 2.16905370 5.103656e-03
## 11487   1 0.0034602076 1.47590652 5.106943e-03
## 11488   1 0.0034602076 1.47590652 5.106943e-03
## 11489   1 0.0034602076 1.47590652 5.106943e-03
## 11490   1 0.0034602076 1.47590652 5.106943e-03
## 11491   1 0.0034602076 1.47590652 5.106943e-03
## 11492   1 0.0034602076 1.47590652 5.106943e-03
## 11493   1 0.0034602076 1.47590652 5.106943e-03
## 11494   8 0.0110192837 0.46430561 5.116315e-03
## 11495   2 0.0055865922 0.91629073 5.118943e-03
## 11496   2 0.0055865922 0.91629073 5.118943e-03
## 11497   1 0.0017889088 2.86220088 5.120216e-03
## 11498   1 0.0017889088 2.86220088 5.120216e-03
## 11499   1 0.0017889088 2.86220088 5.120216e-03
## 11500   1 0.0017889088 2.86220088 5.120216e-03
## 11501   1 0.0017889088 2.86220088 5.120216e-03
## 11502   1 0.0017889088 2.86220088 5.120216e-03
## 11503   1 0.0017889088 2.86220088 5.120216e-03
## 11504   1 0.0017889088 2.86220088 5.120216e-03
## 11505   1 0.0017889088 2.86220088 5.120216e-03
## 11506   1 0.0017889088 2.86220088 5.120216e-03
## 11507   1 0.0017889088 2.86220088 5.120216e-03
## 11508   1 0.0017889088 2.86220088 5.120216e-03
## 11509   1 0.0017889088 2.86220088 5.120216e-03
## 11510   1 0.0017889088 2.86220088 5.120216e-03
## 11511   1 0.0017889088 2.86220088 5.120216e-03
## 11512   1 0.0017889088 2.86220088 5.120216e-03
## 11513   1 0.0017889088 2.86220088 5.120216e-03
## 11514   1 0.0017889088 2.86220088 5.120216e-03
## 11515   1 0.0017889088 2.86220088 5.120216e-03
## 11516   1 0.0017889088 2.86220088 5.120216e-03
## 11517   1 0.0017889088 2.86220088 5.120216e-03
## 11518   1 0.0017889088 2.86220088 5.120216e-03
## 11519   1 0.0017889088 2.86220088 5.120216e-03
## 11520   1 0.0017889088 2.86220088 5.120216e-03
## 11521   1 0.0017889088 2.86220088 5.120216e-03
## 11522   1 0.0017889088 2.86220088 5.120216e-03
## 11523   1 0.0017889088 2.86220088 5.120216e-03
## 11524   1 0.0017889088 2.86220088 5.120216e-03
## 11525   1 0.0017889088 2.86220088 5.120216e-03
## 11526   1 0.0017889088 2.86220088 5.120216e-03
## 11527   1 0.0017889088 2.86220088 5.120216e-03
## 11528   1 0.0017889088 2.86220088 5.120216e-03
## 11529   1 0.0017889088 2.86220088 5.120216e-03
## 11530   1 0.0017889088 2.86220088 5.120216e-03
## 11531   1 0.0017889088 2.86220088 5.120216e-03
## 11532   1 0.0017889088 2.86220088 5.120216e-03
## 11533   1 0.0017889088 2.86220088 5.120216e-03
## 11534   1 0.0017889088 2.86220088 5.120216e-03
## 11535   1 0.0017889088 2.86220088 5.120216e-03
## 11536   1 0.0017889088 2.86220088 5.120216e-03
## 11537   5 0.0051706308 0.99039870 5.120986e-03
## 11538   5 0.0051706308 0.99039870 5.120986e-03
## 11539   3 0.0070921986 0.72213472 5.121523e-03
## 11540   3 0.0070921986 0.72213472 5.121523e-03
## 11541   1 0.0029069767 1.76358859 5.126711e-03
## 11542   1 0.0029069767 1.76358859 5.126711e-03
## 11543   1 0.0029069767 1.76358859 5.126711e-03
## 11544   1 0.0029069767 1.76358859 5.126711e-03
## 11545   1 0.0029069767 1.76358859 5.126711e-03
## 11546   1 0.0023640662 2.16905370 5.127787e-03
## 11547   1 0.0023640662 2.16905370 5.127787e-03
## 11548   1 0.0023640662 2.16905370 5.127787e-03
## 11549   1 0.0023640662 2.16905370 5.127787e-03
## 11550   1 0.0023640662 2.16905370 5.127787e-03
## 11551   1 0.0023640662 2.16905370 5.127787e-03
## 11552   1 0.0023640662 2.16905370 5.127787e-03
## 11553   1 0.0023640662 2.16905370 5.127787e-03
## 11554   1 0.0023640662 2.16905370 5.127787e-03
## 11555   1 0.0023640662 2.16905370 5.127787e-03
## 11556   1 0.0023640662 2.16905370 5.127787e-03
## 11557   1 0.0023640662 2.16905370 5.127787e-03
## 11558   1 0.0023640662 2.16905370 5.127787e-03
## 11559   1 0.0023640662 2.16905370 5.127787e-03
## 11560   1 0.0023640662 2.16905370 5.127787e-03
## 11561   1 0.0023640662 2.16905370 5.127787e-03
## 11562   1 0.0023640662 2.16905370 5.127787e-03
## 11563   1 0.0023640662 2.16905370 5.127787e-03
## 11564   1 0.0023640662 2.16905370 5.127787e-03
## 11565   9 0.0055970149 0.91629073 5.128493e-03
## 11566   1 0.0026385224 1.94591015 5.134328e-03
## 11567   1 0.0026385224 1.94591015 5.134328e-03
## 11568   1 0.0026385224 1.94591015 5.134328e-03
## 11569   1 0.0026385224 1.94591015 5.134328e-03
## 11570   1 0.0026385224 1.94591015 5.134328e-03
## 11571   1 0.0026385224 1.94591015 5.134328e-03
## 11572   1 0.0026385224 1.94591015 5.134328e-03
## 11573   1 0.0026385224 1.94591015 5.134328e-03
## 11574   1 0.0026385224 1.94591015 5.134328e-03
## 11575   1 0.0026385224 1.94591015 5.134328e-03
## 11576   1 0.0026385224 1.94591015 5.134328e-03
## 11577   1 0.0026385224 1.94591015 5.134328e-03
## 11578   1 0.0026385224 1.94591015 5.134328e-03
## 11579   6 0.0060728745 0.84729786 5.145534e-03
## 11580  11 0.0274314214 0.18805223 5.158540e-03
## 11581  11 0.0077683616 0.66497630 5.165776e-03
## 11582   1 0.0060975610 0.84729786 5.166450e-03
## 11583   1 0.0060975610 0.84729786 5.166450e-03
## 11584   1 0.0060975610 0.84729786 5.166450e-03
## 11585   2 0.0026560425 1.94591015 5.168420e-03
## 11586   2 0.0026560425 1.94591015 5.168420e-03
## 11587   2 0.0026666667 1.94591015 5.189094e-03
## 11588   2 0.0026666667 1.94591015 5.189094e-03
## 11589   2 0.0026666667 1.94591015 5.189094e-03
## 11590   4 0.0048484848 1.07044141 5.190019e-03
## 11591   5 0.0092764378 0.55961579 5.191241e-03
## 11592   5 0.0092764378 0.55961579 5.191241e-03
## 11593   8 0.0085106383 0.61090908 5.199226e-03
## 11594   3 0.0021186441 2.45673577 5.204949e-03
## 11595   3 0.0035294118 1.47590652 5.209082e-03
## 11596   3 0.0035294118 1.47590652 5.209082e-03
## 11597   3 0.0048701299 1.07044141 5.213189e-03
## 11598   3 0.0048701299 1.07044141 5.213189e-03
## 11599   5 0.0056947608 0.91629073 5.218057e-03
## 11600   4 0.0138408304 0.37729423 5.222065e-03
## 11601   2 0.0032467532 1.60943791 5.225448e-03
## 11602   2 0.0052770449 0.99039870 5.226378e-03
## 11603   2 0.0021276596 2.45673577 5.227097e-03
## 11604   2 0.0021276596 2.45673577 5.227097e-03
## 11605   2 0.0021276596 2.45673577 5.227097e-03
## 11606   2 0.0021276596 2.45673577 5.227097e-03
## 11607   2 0.0021276596 2.45673577 5.227097e-03
## 11608   2 0.0021276596 2.45673577 5.227097e-03
## 11609   2 0.0021276596 2.45673577 5.227097e-03
## 11610   5 0.0085616438 0.61090908 5.230386e-03
## 11611   1 0.0026954178 1.94591015 5.245041e-03
## 11612   1 0.0026954178 1.94591015 5.245041e-03
## 11613   1 0.0026954178 1.94591015 5.245041e-03
## 11614   1 0.0026954178 1.94591015 5.245041e-03
## 11615   1 0.0026954178 1.94591015 5.245041e-03
## 11616   1 0.0026954178 1.94591015 5.245041e-03
## 11617   1 0.0026954178 1.94591015 5.245041e-03
## 11618   1 0.0026954178 1.94591015 5.245041e-03
## 11619   1 0.0026954178 1.94591015 5.245041e-03
## 11620   1 0.0026954178 1.94591015 5.245041e-03
## 11621   1 0.0026954178 1.94591015 5.245041e-03
## 11622   1 0.0026954178 1.94591015 5.245041e-03
## 11623   6 0.0072727273 0.72213472 5.251889e-03
## 11624   2 0.0024242424 2.16905370 5.258312e-03
## 11625   2 0.0024242424 2.16905370 5.258312e-03
## 11626   2 0.0024242424 2.16905370 5.258312e-03
## 11627   2 0.0024242424 2.16905370 5.258312e-03
## 11628   2 0.0024242424 2.16905370 5.258312e-03
## 11629   2 0.0024242424 2.16905370 5.258312e-03
## 11630   2 0.0024242424 2.16905370 5.258312e-03
## 11631   2 0.0024242424 2.16905370 5.258312e-03
## 11632   2 0.0024242424 2.16905370 5.258312e-03
## 11633   2 0.0049140049 1.07044141 5.260154e-03
## 11634   2 0.0049140049 1.07044141 5.260154e-03
## 11635   4 0.0053120850 0.99039870 5.261082e-03
## 11636   4 0.0053120850 0.99039870 5.261082e-03
## 11637   1 0.0045454545 1.15745279 5.261149e-03
## 11638   1 0.0045454545 1.15745279 5.261149e-03
## 11639   1 0.0045454545 1.15745279 5.261149e-03
## 11640   3 0.0079155673 0.66497630 5.263665e-03
## 11641   1 0.0029850746 1.76358859 5.264444e-03
## 11642   1 0.0029850746 1.76358859 5.264444e-03
## 11643   1 0.0029850746 1.76358859 5.264444e-03
## 11644   1 0.0029850746 1.76358859 5.264444e-03
## 11645   1 0.0029850746 1.76358859 5.264444e-03
## 11646   5 0.0053191489 0.99039870 5.268078e-03
## 11647   5 0.0053191489 0.99039870 5.268078e-03
## 11648   2 0.0035778175 1.47590652 5.280524e-03
## 11649   7 0.0049435028 1.07044141 5.291730e-03
## 11650   1 0.0018552876 2.86220088 5.310206e-03
## 11651   1 0.0018552876 2.86220088 5.310206e-03
## 11652   1 0.0018552876 2.86220088 5.310206e-03
## 11653   1 0.0018552876 2.86220088 5.310206e-03
## 11654   1 0.0018552876 2.86220088 5.310206e-03
## 11655   1 0.0018552876 2.86220088 5.310206e-03
## 11656   1 0.0018552876 2.86220088 5.310206e-03
## 11657   1 0.0018552876 2.86220088 5.310206e-03
## 11658   1 0.0018552876 2.86220088 5.310206e-03
## 11659   1 0.0018552876 2.86220088 5.310206e-03
## 11660   1 0.0018552876 2.86220088 5.310206e-03
## 11661   1 0.0018552876 2.86220088 5.310206e-03
## 11662   1 0.0018552876 2.86220088 5.310206e-03
## 11663   1 0.0018552876 2.86220088 5.310206e-03
## 11664   1 0.0018552876 2.86220088 5.310206e-03
## 11665   1 0.0018552876 2.86220088 5.310206e-03
## 11666   1 0.0018552876 2.86220088 5.310206e-03
## 11667   1 0.0018552876 2.86220088 5.310206e-03
## 11668   1 0.0018552876 2.86220088 5.310206e-03
## 11669   1 0.0018552876 2.86220088 5.310206e-03
## 11670   1 0.0018552876 2.86220088 5.310206e-03
## 11671   6 0.0033021464 1.60943791 5.314600e-03
## 11672  23 0.0126582278 0.41985385 5.314606e-03
## 11673   3 0.0033039648 1.60943791 5.317526e-03
## 11674   6 0.0039190072 1.35812348 5.322496e-03
## 11675   2 0.0058139535 0.91629073 5.327272e-03
## 11676   2 0.0058139535 0.91629073 5.327272e-03
## 11677   1 0.0024570025 2.16905370 5.329370e-03
## 11678   1 0.0024570025 2.16905370 5.329370e-03
## 11679   1 0.0024570025 2.16905370 5.329370e-03
## 11680   1 0.0024570025 2.16905370 5.329370e-03
## 11681   1 0.0024570025 2.16905370 5.329370e-03
## 11682   1 0.0024570025 2.16905370 5.329370e-03
## 11683   1 0.0024570025 2.16905370 5.329370e-03
## 11684   1 0.0024570025 2.16905370 5.329370e-03
## 11685   1 0.0024570025 2.16905370 5.329370e-03
## 11686   1 0.0024570025 2.16905370 5.329370e-03
## 11687   2 0.0049875312 1.07044141 5.338860e-03
## 11688   2 0.0049875312 1.07044141 5.338860e-03
## 11689   2 0.0053908356 0.99039870 5.339077e-03
## 11690   2 0.0053908356 0.99039870 5.339077e-03
## 11691   3 0.0018656716 2.86220088 5.339927e-03
## 11692   3 0.0018656716 2.86220088 5.339927e-03
## 11693   3 0.0018656716 2.86220088 5.339927e-03
## 11694   4 0.0074211503 0.72213472 5.359070e-03
## 11695   2 0.0027548209 1.94591015 5.360634e-03
## 11696   2 0.0027548209 1.94591015 5.360634e-03
## 11697   2 0.0027548209 1.94591015 5.360634e-03
## 11698   2 0.0027548209 1.94591015 5.360634e-03
## 11699   2 0.0027548209 1.94591015 5.360634e-03
## 11700   4 0.0068493151 0.78275934 5.361365e-03
## 11701   2 0.0068493151 0.78275934 5.361365e-03
## 11702   3 0.0080862534 0.66497630 5.377167e-03
## 11703   1 0.0021929825 2.45673577 5.387578e-03
## 11704   1 0.0021929825 2.45673577 5.387578e-03
## 11705   1 0.0021929825 2.45673577 5.387578e-03
## 11706   1 0.0021929825 2.45673577 5.387578e-03
## 11707   1 0.0021929825 2.45673577 5.387578e-03
## 11708   1 0.0021929825 2.45673577 5.387578e-03
## 11709   1 0.0021929825 2.45673577 5.387578e-03
## 11710   1 0.0021929825 2.45673577 5.387578e-03
## 11711   1 0.0021929825 2.45673577 5.387578e-03
## 11712   1 0.0021929825 2.45673577 5.387578e-03
## 11713   1 0.0021929825 2.45673577 5.387578e-03
## 11714   1 0.0021929825 2.45673577 5.387578e-03
## 11715   1 0.0021929825 2.45673577 5.387578e-03
## 11716   1 0.0021929825 2.45673577 5.387578e-03
## 11717   1 0.0021929825 2.45673577 5.387578e-03
## 11718   1 0.0021929825 2.45673577 5.387578e-03
## 11719   1 0.0021929825 2.45673577 5.387578e-03
## 11720   1 0.0021929825 2.45673577 5.387578e-03
## 11721   1 0.0021929825 2.45673577 5.387578e-03
## 11722   5 0.0081168831 0.66497630 5.397535e-03
## 11723   3 0.0018867925 2.86220088 5.400379e-03
## 11724   3 0.0018867925 2.86220088 5.400379e-03
## 11725   3 0.0018867925 2.86220088 5.400379e-03
## 11726   3 0.0018867925 2.86220088 5.400379e-03
## 11727   3 0.0074812968 0.72213472 5.402504e-03
## 11728   6 0.0063829787 0.84729786 5.408284e-03
## 11729   4 0.0022014309 2.45673577 5.408334e-03
## 11730   1 0.0024937656 2.16905370 5.409111e-03
## 11731   1 0.0024937656 2.16905370 5.409111e-03
## 11732   1 0.0024937656 2.16905370 5.409111e-03
## 11733   1 0.0024937656 2.16905370 5.409111e-03
## 11734   1 0.0024937656 2.16905370 5.409111e-03
## 11735   1 0.0024937656 2.16905370 5.409111e-03
## 11736   1 0.0024937656 2.16905370 5.409111e-03
## 11737   1 0.0024937656 2.16905370 5.409111e-03
## 11738   1 0.0024937656 2.16905370 5.409111e-03
## 11739   1 0.0024937656 2.16905370 5.409111e-03
## 11740   1 0.0024937656 2.16905370 5.409111e-03
## 11741   1 0.0024937656 2.16905370 5.409111e-03
## 11742   1 0.0024937656 2.16905370 5.409111e-03
## 11743   3 0.0039840637 1.35812348 5.410851e-03
## 11744   3 0.0039840637 1.35812348 5.410851e-03
## 11745   2 0.0022026432 2.45673577 5.411312e-03
## 11746   2 0.0022026432 2.45673577 5.411312e-03
## 11747   2 0.0022026432 2.45673577 5.411312e-03
## 11748   2 0.0022026432 2.45673577 5.411312e-03
## 11749   2 0.0022026432 2.45673577 5.411312e-03
## 11750   2 0.0022026432 2.45673577 5.411312e-03
## 11751   3 0.0015228426 3.55534806 5.414236e-03
## 11752   3 0.0015228426 3.55534806 5.414236e-03
## 11753   3 0.0015228426 3.55534806 5.414236e-03
## 11754   3 0.0015228426 3.55534806 5.414236e-03
## 11755   3 0.0015228426 3.55534806 5.414236e-03
## 11756   3 0.0015228426 3.55534806 5.414236e-03
## 11757   3 0.0015228426 3.55534806 5.414236e-03
## 11758  11 0.0069182390 0.78275934 5.415316e-03
## 11759   2 0.0069204152 0.78275934 5.417020e-03
## 11760   2 0.0069204152 0.78275934 5.417020e-03
## 11761   3 0.0033707865 1.60943791 5.425072e-03
## 11762   3 0.0040000000 1.35812348 5.432494e-03
## 11763   3 0.0040000000 1.35812348 5.432494e-03
## 11764   1 0.0027932961 1.94591015 5.435503e-03
## 11765   1 0.0027932961 1.94591015 5.435503e-03
## 11766   1 0.0027932961 1.94591015 5.435503e-03
## 11767   1 0.0027932961 1.94591015 5.435503e-03
## 11768   1 0.0027932961 1.94591015 5.435503e-03
## 11769   1 0.0027932961 1.94591015 5.435503e-03
## 11770   1 0.0027932961 1.94591015 5.435503e-03
## 11771   1 0.0027932961 1.94591015 5.435503e-03
## 11772   1 0.0027932961 1.94591015 5.435503e-03
## 11773   4 0.0047058824 1.15745279 5.446837e-03
## 11774   4 0.0047058824 1.15745279 5.446837e-03
## 11775   6 0.0097402597 0.55961579 5.450803e-03
## 11776   7 0.0043532338 1.25276297 5.453570e-03
## 11777   4 0.0025157233 2.16905370 5.456739e-03
## 11778   2 0.0059701493 0.91629073 5.470392e-03
## 11779   2 0.0059701493 0.91629073 5.470392e-03
## 11780   3 0.0031023785 1.76358859 5.471319e-03
## 11781   2 0.0047281324 1.15745279 5.472590e-03
## 11782   2 0.0037105751 1.47590652 5.476462e-03
## 11783   2 0.0037105751 1.47590652 5.476462e-03
## 11784   7 0.0059931507 0.91629073 5.491468e-03
## 11785   2 0.0043859649 1.25276297 5.494574e-03
## 11786   2 0.0043859649 1.25276297 5.494574e-03
## 11787   6 0.0051369863 1.07044141 5.498843e-03
## 11788   3 0.0034168565 1.60943791 5.499218e-03
## 11789   4 0.0064935065 0.84729786 5.501934e-03
## 11790   5 0.0025380711 2.16905370 5.505212e-03
## 11791   4 0.0107816712 0.51082562 5.507554e-03
## 11792   2 0.0034246575 1.60943791 5.511774e-03
## 11793   2 0.0034246575 1.60943791 5.511774e-03
## 11794   2 0.0034246575 1.60943791 5.511774e-03
## 11795   1 0.0034246575 1.60943791 5.511774e-03
## 11796   1 0.0034246575 1.60943791 5.511774e-03
## 11797   1 0.0034246575 1.60943791 5.511774e-03
## 11798   1 0.0034246575 1.60943791 5.511774e-03
## 11799   1 0.0034246575 1.60943791 5.511774e-03
## 11800   1 0.0034246575 1.60943791 5.511774e-03
## 11801   1 0.0034246575 1.60943791 5.511774e-03
## 11802   1 0.0034246575 1.60943791 5.511774e-03
## 11803   1 0.0034246575 1.60943791 5.511774e-03
## 11804   1 0.0034246575 1.60943791 5.511774e-03
## 11805   4 0.0044052863 1.25276297 5.518780e-03
## 11806   4 0.0044052863 1.25276297 5.518780e-03
## 11807   2 0.0022471910 2.45673577 5.520755e-03
## 11808   2 0.0022471910 2.45673577 5.520755e-03
## 11809   2 0.0022471910 2.45673577 5.520755e-03
## 11810   2 0.0022471910 2.45673577 5.520755e-03
## 11811   2 0.0022471910 2.45673577 5.520755e-03
## 11812   2 0.0022471910 2.45673577 5.520755e-03
## 11813   2 0.0022471910 2.45673577 5.520755e-03
## 11814   2 0.0022471910 2.45673577 5.520755e-03
## 11815   6 0.0070588235 0.78275934 5.525360e-03
## 11816   2 0.0055865922 0.99039870 5.532954e-03
## 11817   5 0.0051706308 1.07044141 5.534857e-03
## 11818   5 0.0051706308 1.07044141 5.534857e-03
## 11819   5 0.0031446541 1.76358859 5.545876e-03
## 11820   2 0.0090909091 0.61090908 5.553719e-03
## 11821   1 0.0034602076 1.60943791 5.568989e-03
## 11822   1 0.0034602076 1.60943791 5.568989e-03
## 11823   1 0.0034602076 1.60943791 5.568989e-03
## 11824   1 0.0034602076 1.60943791 5.568989e-03
## 11825   1 0.0034602076 1.60943791 5.568989e-03
## 11826   1 0.0034602076 1.60943791 5.568989e-03
## 11827   1 0.0034602076 1.60943791 5.568989e-03
## 11828   1 0.0034602076 1.60943791 5.568989e-03
## 11829   1 0.0034602076 1.60943791 5.568989e-03
## 11830   1 0.0034602076 1.60943791 5.568989e-03
## 11831   1 0.0034602076 1.60943791 5.568989e-03
## 11832   6 0.0037735849 1.47590652 5.569459e-03
## 11833   3 0.0025684932 2.16905370 5.571200e-03
## 11834   3 0.0025684932 2.16905370 5.571200e-03
## 11835   3 0.0025684932 2.16905370 5.571200e-03
## 11836   4 0.0099750623 0.55961579 5.582202e-03
## 11837   1 0.0060975610 0.91629073 5.587139e-03
## 11838   1 0.0060975610 0.91629073 5.587139e-03
## 11839   1 0.0060975610 0.91629073 5.587139e-03
## 11840   1 0.0060975610 0.91629073 5.587139e-03
## 11841   1 0.0060975610 0.91629073 5.587139e-03
## 11842   8 0.0052253429 1.07044141 5.593423e-03
## 11843   8 0.0056497175 0.99039870 5.595473e-03
## 11844   2 0.0022779043 2.45673577 5.596209e-03
## 11845   2 0.0022779043 2.45673577 5.596209e-03
## 11846   2 0.0022779043 2.45673577 5.596209e-03
## 11847   2 0.0022779043 2.45673577 5.596209e-03
## 11848   2 0.0022779043 2.45673577 5.596209e-03
## 11849   3 0.0019595036 2.86220088 5.608493e-03
## 11850   3 0.0041322314 1.35812348 5.612081e-03
## 11851   3 0.0031914894 1.76358859 5.628474e-03
## 11852   3 0.0031914894 1.76358859 5.628474e-03
## 11853   3 0.0031914894 1.76358859 5.628474e-03
## 11854   5 0.0056947608 0.99039870 5.640084e-03
## 11855   2 0.0052770449 1.07044141 5.648767e-03
## 11856   2 0.0052770449 1.07044141 5.648767e-03
## 11857   2 0.0052770449 1.07044141 5.648767e-03
## 11858   1 0.0029069767 1.94591015 5.656716e-03
## 11859   1 0.0029069767 1.94591015 5.656716e-03
## 11860   1 0.0029069767 1.94591015 5.656716e-03
## 11861   1 0.0029069767 1.94591015 5.656716e-03
## 11862   1 0.0029069767 1.94591015 5.656716e-03
## 11863   1 0.0029069767 1.94591015 5.656716e-03
## 11864   1 0.0029069767 1.94591015 5.656716e-03
## 11865   1 0.0029069767 1.94591015 5.656716e-03
## 11866   1 0.0029069767 1.94591015 5.656716e-03
## 11867   1 0.0029069767 1.94591015 5.656716e-03
## 11868   1 0.0029069767 1.94591015 5.656716e-03
## 11869   1 0.0029069767 1.94591015 5.656716e-03
## 11870   1 0.0029069767 1.94591015 5.656716e-03
## 11871   4 0.0026126715 2.16905370 5.667025e-03
## 11872   4 0.0026126715 2.16905370 5.667025e-03
## 11873   5 0.0035310734 1.60943791 5.683043e-03
## 11874   4 0.0053120850 1.07044141 5.686276e-03
## 11875   2 0.0049140049 1.15745279 5.687729e-03
## 11876   2 0.0049140049 1.15745279 5.687729e-03
## 11877   1 0.0045454545 1.25276297 5.694377e-03
## 11878   1 0.0045454545 1.25276297 5.694377e-03
## 11879   1 0.0026385224 2.16905370 5.723097e-03
## 11880   1 0.0026385224 2.16905370 5.723097e-03
## 11881   1 0.0026385224 2.16905370 5.723097e-03
## 11882   1 0.0026385224 2.16905370 5.723097e-03
## 11883   1 0.0026385224 2.16905370 5.723097e-03
## 11884   1 0.0026385224 2.16905370 5.723097e-03
## 11885   1 0.0026385224 2.16905370 5.723097e-03
## 11886   1 0.0026385224 2.16905370 5.723097e-03
## 11887   1 0.0026385224 2.16905370 5.723097e-03
## 11888   1 0.0026385224 2.16905370 5.723097e-03
## 11889   1 0.0026385224 2.16905370 5.723097e-03
## 11890   1 0.0026385224 2.16905370 5.723097e-03
## 11891   1 0.0026385224 2.16905370 5.723097e-03
## 11892   1 0.0026385224 2.16905370 5.723097e-03
## 11893   1 0.0026385224 2.16905370 5.723097e-03
## 11894   1 0.0026385224 2.16905370 5.723097e-03
## 11895   1 0.0026385224 2.16905370 5.723097e-03
## 11896   1 0.0026385224 2.16905370 5.723097e-03
## 11897   1 0.0026385224 2.16905370 5.723097e-03
## 11898   1 0.0026385224 2.16905370 5.723097e-03
## 11899   2 0.0032467532 1.76358859 5.725937e-03
## 11900   2 0.0032467532 1.76358859 5.725937e-03
## 11901   2 0.0032467532 1.76358859 5.725937e-03
## 11902   2 0.0032467532 1.76358859 5.725937e-03
## 11903   2 0.0032467532 1.76358859 5.725937e-03
## 11904   3 0.0102739726 0.55961579 5.749477e-03
## 11905   3 0.0102739726 0.55961579 5.749477e-03
## 11906   3 0.0102739726 0.55961579 5.749477e-03
## 11907   6 0.0042372881 1.35812348 5.754761e-03
## 11908   6 0.0042372881 1.35812348 5.754761e-03
## 11909   2 0.0058139535 0.99039870 5.758132e-03
## 11910   2 0.0058139535 0.99039870 5.758132e-03
## 11911   2 0.0035778175 1.60943791 5.758275e-03
## 11912   2 0.0035778175 1.60943791 5.758275e-03
## 11913   2 0.0035778175 1.60943791 5.758275e-03
## 11914   5 0.0032658393 1.76358859 5.759597e-03
## 11915   2 0.0026560425 2.16905370 5.761099e-03
## 11916   2 0.0026560425 2.16905370 5.761099e-03
## 11917   2 0.0026560425 2.16905370 5.761099e-03
## 11918   2 0.0026560425 2.16905370 5.761099e-03
## 11919   2 0.0026560425 2.16905370 5.761099e-03
## 11920   2 0.0026560425 2.16905370 5.761099e-03
## 11921   2 0.0026560425 2.16905370 5.761099e-03
## 11922   3 0.0073710074 0.78275934 5.769725e-03
## 11923   2 0.0053908356 1.07044141 5.770574e-03
## 11924   2 0.0053908356 1.07044141 5.770574e-03
## 11925   2 0.0053908356 1.07044141 5.770574e-03
## 11926   1 0.0016233766 3.55534806 5.771669e-03
## 11927   1 0.0016233766 3.55534806 5.771669e-03
## 11928   1 0.0016233766 3.55534806 5.771669e-03
## 11929   1 0.0016233766 3.55534806 5.771669e-03
## 11930   1 0.0016233766 3.55534806 5.771669e-03
## 11931   1 0.0016233766 3.55534806 5.771669e-03
## 11932   1 0.0016233766 3.55534806 5.771669e-03
## 11933   1 0.0016233766 3.55534806 5.771669e-03
## 11934   1 0.0016233766 3.55534806 5.771669e-03
## 11935   1 0.0016233766 3.55534806 5.771669e-03
## 11936   1 0.0016233766 3.55534806 5.771669e-03
## 11937   1 0.0016233766 3.55534806 5.771669e-03
## 11938   1 0.0016233766 3.55534806 5.771669e-03
## 11939   1 0.0016233766 3.55534806 5.771669e-03
## 11940   1 0.0016233766 3.55534806 5.771669e-03
## 11941   1 0.0016233766 3.55534806 5.771669e-03
## 11942   1 0.0016233766 3.55534806 5.771669e-03
## 11943   1 0.0016233766 3.55534806 5.771669e-03
## 11944   1 0.0016233766 3.55534806 5.771669e-03
## 11945   1 0.0016233766 3.55534806 5.771669e-03
## 11946   1 0.0016233766 3.55534806 5.771669e-03
## 11947   1 0.0016233766 3.55534806 5.771669e-03
## 11948   1 0.0016233766 3.55534806 5.771669e-03
## 11949   1 0.0016233766 3.55534806 5.771669e-03
## 11950   1 0.0016233766 3.55534806 5.771669e-03
## 11951   1 0.0016233766 3.55534806 5.771669e-03
## 11952   1 0.0016233766 3.55534806 5.771669e-03
## 11953   1 0.0016233766 3.55534806 5.771669e-03
## 11954   1 0.0016233766 3.55534806 5.771669e-03
## 11955   1 0.0016233766 3.55534806 5.771669e-03
## 11956   1 0.0016233766 3.55534806 5.771669e-03
## 11957   1 0.0016233766 3.55534806 5.771669e-03
## 11958   1 0.0016233766 3.55534806 5.771669e-03
## 11959   1 0.0016233766 3.55534806 5.771669e-03
## 11960   1 0.0016233766 3.55534806 5.771669e-03
## 11961   1 0.0016233766 3.55534806 5.771669e-03
## 11962   1 0.0016233766 3.55534806 5.771669e-03
## 11963   1 0.0016233766 3.55534806 5.771669e-03
## 11964   1 0.0016233766 3.55534806 5.771669e-03
## 11965   1 0.0016233766 3.55534806 5.771669e-03
## 11966   1 0.0016233766 3.55534806 5.771669e-03
## 11967   1 0.0016233766 3.55534806 5.771669e-03
## 11968   1 0.0016233766 3.55534806 5.771669e-03
## 11969   1 0.0016233766 3.55534806 5.771669e-03
## 11970   1 0.0016233766 3.55534806 5.771669e-03
## 11971   1 0.0016233766 3.55534806 5.771669e-03
## 11972   1 0.0016233766 3.55534806 5.771669e-03
## 11973   1 0.0016233766 3.55534806 5.771669e-03
## 11974   1 0.0016233766 3.55534806 5.771669e-03
## 11975   1 0.0016233766 3.55534806 5.771669e-03
## 11976   1 0.0016233766 3.55534806 5.771669e-03
## 11977   1 0.0016233766 3.55534806 5.771669e-03
## 11978   1 0.0016233766 3.55534806 5.771669e-03
## 11979   1 0.0016233766 3.55534806 5.771669e-03
## 11980   1 0.0016233766 3.55534806 5.771669e-03
## 11981   1 0.0016233766 3.55534806 5.771669e-03
## 11982   1 0.0016233766 3.55534806 5.771669e-03
## 11983   1 0.0016233766 3.55534806 5.771669e-03
## 11984   1 0.0016233766 3.55534806 5.771669e-03
## 11985   1 0.0016233766 3.55534806 5.771669e-03
## 11986   1 0.0016233766 3.55534806 5.771669e-03
## 11987   2 0.0049875312 1.15745279 5.772832e-03
## 11988   2 0.0049875312 1.15745279 5.772832e-03
## 11989   4 0.0042553191 1.35812348 5.779249e-03
## 11990   4 0.0042553191 1.35812348 5.779249e-03
## 11991   2 0.0023529412 2.45673577 5.780555e-03
## 11992   2 0.0023529412 2.45673577 5.780555e-03
## 11993   2 0.0023529412 2.45673577 5.780555e-03
## 11994   2 0.0026666667 2.16905370 5.784143e-03
## 11995   2 0.0026666667 2.16905370 5.784143e-03
## 11996   2 0.0026666667 2.16905370 5.784143e-03
## 11997   2 0.0026666667 2.16905370 5.784143e-03
## 11998   6 0.0068337130 0.84729786 5.790190e-03
## 11999   2 0.0020242915 2.86220088 5.793929e-03
## 12000   2 0.0020242915 2.86220088 5.793929e-03
## 12001   2 0.0020242915 2.86220088 5.793929e-03
## 12002   2 0.0020242915 2.86220088 5.793929e-03
## 12003   2 0.0020242915 2.86220088 5.793929e-03
## 12004   2 0.0020242915 2.86220088 5.793929e-03
## 12005   2 0.0020242915 2.86220088 5.793929e-03
## 12006   2 0.0020242915 2.86220088 5.793929e-03
## 12007   2 0.0068493151 0.84729786 5.803410e-03
## 12008   2 0.0068493151 0.84729786 5.803410e-03
## 12009   1 0.0023640662 2.45673577 5.807886e-03
## 12010   1 0.0023640662 2.45673577 5.807886e-03
## 12011   1 0.0023640662 2.45673577 5.807886e-03
## 12012   1 0.0023640662 2.45673577 5.807886e-03
## 12013   1 0.0023640662 2.45673577 5.807886e-03
## 12014   1 0.0023640662 2.45673577 5.807886e-03
## 12015   1 0.0023640662 2.45673577 5.807886e-03
## 12016   1 0.0023640662 2.45673577 5.807886e-03
## 12017   1 0.0023640662 2.45673577 5.807886e-03
## 12018   1 0.0023640662 2.45673577 5.807886e-03
## 12019   1 0.0023640662 2.45673577 5.807886e-03
## 12020   1 0.0023640662 2.45673577 5.807886e-03
## 12021   1 0.0023640662 2.45673577 5.807886e-03
## 12022   1 0.0023640662 2.45673577 5.807886e-03
## 12023   1 0.0023640662 2.45673577 5.807886e-03
## 12024   1 0.0023640662 2.45673577 5.807886e-03
## 12025   1 0.0023640662 2.45673577 5.807886e-03
## 12026   1 0.0029850746 1.94591015 5.808687e-03
## 12027   1 0.0029850746 1.94591015 5.808687e-03
## 12028   1 0.0029850746 1.94591015 5.808687e-03
## 12029   1 0.0029850746 1.94591015 5.808687e-03
## 12030   1 0.0029850746 1.94591015 5.808687e-03
## 12031   1 0.0029850746 1.94591015 5.808687e-03
## 12032   1 0.0029850746 1.94591015 5.808687e-03
## 12033   1 0.0029850746 1.94591015 5.808687e-03
## 12034   1 0.0029850746 1.94591015 5.808687e-03
## 12035   1 0.0029850746 1.94591015 5.808687e-03
## 12036   1 0.0029850746 1.94591015 5.808687e-03
## 12037   4 0.0074211503 0.78275934 5.808975e-03
## 12038   4 0.0020304569 2.86220088 5.811575e-03
## 12039   4 0.0020304569 2.86220088 5.811575e-03
## 12040   5 0.0042808219 1.35812348 5.813885e-03
## 12041   5 0.0042808219 1.35812348 5.813885e-03
## 12042   3 0.0033039648 1.76358859 5.826835e-03
## 12043   3 0.0033039648 1.76358859 5.826835e-03
## 12044   3 0.0033039648 1.76358859 5.826835e-03
## 12045   1 0.0026954178 2.16905370 5.846506e-03
## 12046   1 0.0026954178 2.16905370 5.846506e-03
## 12047   1 0.0026954178 2.16905370 5.846506e-03
## 12048   1 0.0026954178 2.16905370 5.846506e-03
## 12049   1 0.0026954178 2.16905370 5.846506e-03
## 12050   1 0.0026954178 2.16905370 5.846506e-03
## 12051   1 0.0026954178 2.16905370 5.846506e-03
## 12052   1 0.0026954178 2.16905370 5.846506e-03
## 12053   1 0.0026954178 2.16905370 5.846506e-03
## 12054   1 0.0026954178 2.16905370 5.846506e-03
## 12055   1 0.0026954178 2.16905370 5.846506e-03
## 12056   1 0.0026954178 2.16905370 5.846506e-03
## 12057   1 0.0026954178 2.16905370 5.846506e-03
## 12058   6 0.0063829787 0.91629073 5.848664e-03
## 12059   6 0.0063829787 0.91629073 5.848664e-03
## 12060   3 0.0036363636 1.60943791 5.852501e-03
## 12061   5 0.0081168831 0.72213472 5.861483e-03
## 12062   2 0.0069204152 0.84729786 5.863653e-03
## 12063   3 0.0016510732 3.55534806 5.870140e-03
## 12064   3 0.0016510732 3.55534806 5.870140e-03
## 12065   4 0.0047058824 1.25276297 5.895355e-03
## 12066   4 0.0055096419 1.07044141 5.897749e-03
## 12067   3 0.0040000000 1.47590652 5.903626e-03
## 12068   3 0.0030364372 1.94591015 5.908634e-03
## 12069   2 0.0059701493 0.99039870 5.912828e-03
## 12070   2 0.0059701493 0.99039870 5.912828e-03
## 12071   2 0.0020682523 2.86220088 5.919754e-03
## 12072   2 0.0020682523 2.86220088 5.919754e-03
## 12073   2 0.0020682523 2.86220088 5.919754e-03
## 12074   2 0.0020682523 2.86220088 5.919754e-03
## 12075   2 0.0020682523 2.86220088 5.919754e-03
## 12076   2 0.0020682523 2.86220088 5.919754e-03
## 12077   2 0.0020682523 2.86220088 5.919754e-03
## 12078   2 0.0020682523 2.86220088 5.919754e-03
## 12079   2 0.0047281324 1.25276297 5.923229e-03
## 12080   6 0.0030456853 1.94591015 5.926630e-03
## 12081   6 0.0030456853 1.94591015 5.926630e-03
## 12082   2 0.0024242424 2.45673577 5.955723e-03
## 12083   2 0.0024242424 2.45673577 5.955723e-03
## 12084   2 0.0024242424 2.45673577 5.955723e-03
## 12085   2 0.0024242424 2.45673577 5.955723e-03
## 12086   2 0.0024242424 2.45673577 5.955723e-03
## 12087   2 0.0024242424 2.45673577 5.955723e-03
## 12088   2 0.0043859649 1.35812348 5.956682e-03
## 12089   2 0.0043859649 1.35812348 5.956682e-03
## 12090   5 0.0027517887 2.16905370 5.968777e-03
## 12091   2 0.0037105751 1.60943791 5.971940e-03
## 12092   4 0.0040485830 1.47590652 5.975330e-03
## 12093   2 0.0027548209 2.16905370 5.975355e-03
## 12094   2 0.0027548209 2.16905370 5.975355e-03
## 12095   2 0.0027548209 2.16905370 5.975355e-03
## 12096   2 0.0027548209 2.16905370 5.975355e-03
## 12097   2 0.0027548209 2.16905370 5.975355e-03
## 12098   2 0.0027548209 2.16905370 5.975355e-03
## 12099   2 0.0027548209 2.16905370 5.975355e-03
## 12100   7 0.0044025157 1.35812348 5.979160e-03
## 12101   7 0.0044025157 1.35812348 5.979160e-03
## 12102   8 0.0044028619 1.35812348 5.979630e-03
## 12103   2 0.0055865922 1.07044141 5.980120e-03
## 12104   2 0.0055865922 1.07044141 5.980120e-03
## 12105   8 0.0040609137 1.47590652 5.993529e-03
## 12106   8 0.0040609137 1.47590652 5.993529e-03
## 12107   3 0.0034168565 1.76358859 6.025929e-03
## 12108   3 0.0034168565 1.76358859 6.025929e-03
## 12109   3 0.0034168565 1.76358859 6.025929e-03
## 12110   3 0.0065789474 0.91629073 6.028228e-03
## 12111   4 0.0107816712 0.55961579 6.033593e-03
## 12112   7 0.0077092511 0.78275934 6.034488e-03
## 12113   1 0.0024570025 2.45673577 6.036206e-03
## 12114   1 0.0024570025 2.45673577 6.036206e-03
## 12115   1 0.0024570025 2.45673577 6.036206e-03
## 12116   1 0.0024570025 2.45673577 6.036206e-03
## 12117   1 0.0024570025 2.45673577 6.036206e-03
## 12118   1 0.0024570025 2.45673577 6.036206e-03
## 12119   1 0.0024570025 2.45673577 6.036206e-03
## 12120   1 0.0024570025 2.45673577 6.036206e-03
## 12121   1 0.0024570025 2.45673577 6.036206e-03
## 12122   1 0.0024570025 2.45673577 6.036206e-03
## 12123   1 0.0024570025 2.45673577 6.036206e-03
## 12124   1 0.0024570025 2.45673577 6.036206e-03
## 12125   1 0.0024570025 2.45673577 6.036206e-03
## 12126   1 0.0024570025 2.45673577 6.036206e-03
## 12127   1 0.0024570025 2.45673577 6.036206e-03
## 12128   1 0.0024570025 2.45673577 6.036206e-03
## 12129   1 0.0024570025 2.45673577 6.036206e-03
## 12130   3 0.0031023785 1.94591015 6.036950e-03
## 12131   1 0.0060975610 0.99039870 6.039016e-03
## 12132   1 0.0060975610 0.99039870 6.039016e-03
## 12133   1 0.0060975610 0.99039870 6.039016e-03
## 12134   4 0.0034246575 1.76358859 6.039687e-03
## 12135   4 0.0034246575 1.76358859 6.039687e-03
## 12136   2 0.0034246575 1.76358859 6.039687e-03
## 12137   2 0.0034246575 1.76358859 6.039687e-03
## 12138   2 0.0034246575 1.76358859 6.039687e-03
## 12139   1 0.0034246575 1.76358859 6.039687e-03
## 12140   1 0.0034246575 1.76358859 6.039687e-03
## 12141   1 0.0034246575 1.76358859 6.039687e-03
## 12142   1 0.0034246575 1.76358859 6.039687e-03
## 12143   1 0.0034246575 1.76358859 6.039687e-03
## 12144   8 0.0052253429 1.15745279 6.048088e-03
## 12145   5 0.0031094527 1.94591015 6.050716e-03
## 12146   1 0.0027932961 2.16905370 6.058809e-03
## 12147   1 0.0027932961 2.16905370 6.058809e-03
## 12148   1 0.0027932961 2.16905370 6.058809e-03
## 12149   1 0.0027932961 2.16905370 6.058809e-03
## 12150   1 0.0027932961 2.16905370 6.058809e-03
## 12151   1 0.0027932961 2.16905370 6.058809e-03
## 12152   1 0.0027932961 2.16905370 6.058809e-03
## 12153   1 0.0027932961 2.16905370 6.058809e-03
## 12154   1 0.0027932961 2.16905370 6.058809e-03
## 12155   1 0.0027932961 2.16905370 6.058809e-03
## 12156   1 0.0027932961 2.16905370 6.058809e-03
## 12157   1 0.0027932961 2.16905370 6.058809e-03
## 12158   1 0.0027932961 2.16905370 6.058809e-03
## 12159   1 0.0027932961 2.16905370 6.058809e-03
## 12160   1 0.0027932961 2.16905370 6.058809e-03
## 12161  13 0.0071546505 0.84729786 6.062120e-03
## 12162   3 0.0021186441 2.86220088 6.063985e-03
## 12163   4 0.0048484848 1.25276297 6.074002e-03
## 12164   4 0.0048484848 1.25276297 6.074002e-03
## 12165   2 0.0017123288 3.55534806 6.087925e-03
## 12166   2 0.0017123288 3.55534806 6.087925e-03
## 12167   2 0.0017123288 3.55534806 6.087925e-03
## 12168   2 0.0017123288 3.55534806 6.087925e-03
## 12169   2 0.0017123288 3.55534806 6.087925e-03
## 12170   2 0.0017123288 3.55534806 6.087925e-03
## 12171   2 0.0017123288 3.55534806 6.087925e-03
## 12172   2 0.0017123288 3.55534806 6.087925e-03
## 12173   2 0.0017123288 3.55534806 6.087925e-03
## 12174   2 0.0017123288 3.55534806 6.087925e-03
## 12175   2 0.0017123288 3.55534806 6.087925e-03
## 12176   1 0.0017123288 3.55534806 6.087925e-03
## 12177   1 0.0017123288 3.55534806 6.087925e-03
## 12178   1 0.0017123288 3.55534806 6.087925e-03
## 12179   1 0.0017123288 3.55534806 6.087925e-03
## 12180   1 0.0017123288 3.55534806 6.087925e-03
## 12181   1 0.0017123288 3.55534806 6.087925e-03
## 12182   1 0.0017123288 3.55534806 6.087925e-03
## 12183   1 0.0017123288 3.55534806 6.087925e-03
## 12184   1 0.0017123288 3.55534806 6.087925e-03
## 12185   1 0.0017123288 3.55534806 6.087925e-03
## 12186   1 0.0017123288 3.55534806 6.087925e-03
## 12187   1 0.0017123288 3.55534806 6.087925e-03
## 12188   1 0.0017123288 3.55534806 6.087925e-03
## 12189   1 0.0017123288 3.55534806 6.087925e-03
## 12190   1 0.0017123288 3.55534806 6.087925e-03
## 12191   1 0.0017123288 3.55534806 6.087925e-03
## 12192   1 0.0017123288 3.55534806 6.087925e-03
## 12193   1 0.0017123288 3.55534806 6.087925e-03
## 12194   1 0.0017123288 3.55534806 6.087925e-03
## 12195   1 0.0017123288 3.55534806 6.087925e-03
## 12196   1 0.0017123288 3.55534806 6.087925e-03
## 12197   1 0.0017123288 3.55534806 6.087925e-03
## 12198   1 0.0017123288 3.55534806 6.087925e-03
## 12199   1 0.0017123288 3.55534806 6.087925e-03
## 12200   1 0.0017123288 3.55534806 6.087925e-03
## 12201   1 0.0017123288 3.55534806 6.087925e-03
## 12202   1 0.0017123288 3.55534806 6.087925e-03
## 12203   1 0.0017123288 3.55534806 6.087925e-03
## 12204   2 0.0021276596 2.86220088 6.089789e-03
## 12205   2 0.0021276596 2.86220088 6.089789e-03
## 12206   2 0.0021276596 2.86220088 6.089789e-03
## 12207   2 0.0021276596 2.86220088 6.089789e-03
## 12208   2 0.0021276596 2.86220088 6.089789e-03
## 12209   2 0.0021276596 2.86220088 6.089789e-03
## 12210   2 0.0021276596 2.86220088 6.089789e-03
## 12211   4 0.0099750623 0.61090908 6.093856e-03
## 12212   1 0.0034602076 1.76358859 6.102383e-03
## 12213   1 0.0034602076 1.76358859 6.102383e-03
## 12214   1 0.0034602076 1.76358859 6.102383e-03
## 12215   1 0.0034602076 1.76358859 6.102383e-03
## 12216   1 0.0034602076 1.76358859 6.102383e-03
## 12217   1 0.0034602076 1.76358859 6.102383e-03
## 12218   1 0.0034602076 1.76358859 6.102383e-03
## 12219   1 0.0034602076 1.76358859 6.102383e-03
## 12220   1 0.0034602076 1.76358859 6.102383e-03
## 12221   1 0.0034602076 1.76358859 6.102383e-03
## 12222   1 0.0034602076 1.76358859 6.102383e-03
## 12223   1 0.0034602076 1.76358859 6.102383e-03
## 12224   1 0.0034602076 1.76358859 6.102383e-03
## 12225   4 0.0044943820 1.35812348 6.103926e-03
## 12226   4 0.0044943820 1.35812348 6.103926e-03
## 12227  13 0.0091807910 0.66497630 6.105008e-03
## 12228   2 0.0052770449 1.15745279 6.107930e-03
## 12229   2 0.0052770449 1.15745279 6.107930e-03
## 12230   2 0.0052770449 1.15745279 6.107930e-03
## 12231   4 0.0024875622 2.45673577 6.111283e-03
## 12232   1 0.0024937656 2.45673577 6.126523e-03
## 12233   1 0.0024937656 2.45673577 6.126523e-03
## 12234   1 0.0024937656 2.45673577 6.126523e-03
## 12235   1 0.0024937656 2.45673577 6.126523e-03
## 12236   1 0.0024937656 2.45673577 6.126523e-03
## 12237   1 0.0024937656 2.45673577 6.126523e-03
## 12238   1 0.0024937656 2.45673577 6.126523e-03
## 12239   1 0.0024937656 2.45673577 6.126523e-03
## 12240   1 0.0024937656 2.45673577 6.126523e-03
## 12241   1 0.0024937656 2.45673577 6.126523e-03
## 12242   1 0.0024937656 2.45673577 6.126523e-03
## 12243   1 0.0024937656 2.45673577 6.126523e-03
## 12244   1 0.0024937656 2.45673577 6.126523e-03
## 12245   4 0.0028248588 2.16905370 6.127270e-03
## 12246   4 0.0028248588 2.16905370 6.127270e-03
## 12247   4 0.0028248588 2.16905370 6.127270e-03
## 12248  13 0.0084911822 0.72213472 6.131777e-03
## 12249   4 0.0053120850 1.15745279 6.148488e-03
## 12250   4 0.0053120850 1.15745279 6.148488e-03
## 12251   2 0.0049140049 1.25276297 6.156083e-03
## 12252   2 0.0049140049 1.25276297 6.156083e-03
## 12253   2 0.0049140049 1.25276297 6.156083e-03
## 12254   4 0.0053333333 1.15745279 6.173082e-03
## 12255   1 0.0045454545 1.35812348 6.173289e-03
## 12256   1 0.0045454545 1.35812348 6.173289e-03
## 12257   1 0.0045454545 1.35812348 6.173289e-03
## 12258  15 0.0093283582 0.66497630 6.203137e-03
## 12259   3 0.0031914894 1.94591015 6.210352e-03
## 12260   3 0.0031914894 1.94591015 6.210352e-03
## 12261   3 0.0053667263 1.15745279 6.211732e-03
## 12262   2 0.0058139535 1.07044141 6.223497e-03
## 12263   3 0.0035294118 1.76358859 6.224430e-03
## 12264   3 0.0035294118 1.76358859 6.224430e-03
## 12265   3 0.0035294118 1.76358859 6.224430e-03
## 12266   5 0.0035310734 1.76358859 6.227361e-03
## 12267   2 0.0121951220 0.51082562 6.229581e-03
## 12268   5 0.0025380711 2.45673577 6.235370e-03
## 12269   5 0.0025380711 2.45673577 6.235370e-03
## 12270   5 0.0025380711 2.45673577 6.235370e-03
## 12271   2 0.0053908356 1.15745279 6.239638e-03
## 12272   2 0.0053908356 1.15745279 6.239638e-03
## 12273   2 0.0049875312 1.25276297 6.248194e-03
## 12274   2 0.0049875312 1.25276297 6.248194e-03
## 12275   2 0.0049875312 1.25276297 6.248194e-03
## 12276   2 0.0049875312 1.25276297 6.248194e-03
## 12277   7 0.0035532995 1.76358859 6.266558e-03
## 12278  13 0.0211038961 0.29725152 6.273165e-03
## 12279   4 0.0068493151 0.91629073 6.275964e-03
## 12280   4 0.0068493151 0.91629073 6.275964e-03
## 12281  12 0.0102739726 0.61090908 6.276463e-03
## 12282   3 0.0102739726 0.61090908 6.276463e-03
## 12283   1 0.0021929825 2.86220088 6.276756e-03
## 12284   1 0.0021929825 2.86220088 6.276756e-03
## 12285   1 0.0021929825 2.86220088 6.276756e-03
## 12286   1 0.0021929825 2.86220088 6.276756e-03
## 12287   1 0.0021929825 2.86220088 6.276756e-03
## 12288   1 0.0021929825 2.86220088 6.276756e-03
## 12289   1 0.0021929825 2.86220088 6.276756e-03
## 12290   1 0.0021929825 2.86220088 6.276756e-03
## 12291   1 0.0021929825 2.86220088 6.276756e-03
## 12292   1 0.0021929825 2.86220088 6.276756e-03
## 12293   1 0.0021929825 2.86220088 6.276756e-03
## 12294   1 0.0021929825 2.86220088 6.276756e-03
## 12295   1 0.0021929825 2.86220088 6.276756e-03
## 12296   1 0.0021929825 2.86220088 6.276756e-03
## 12297   1 0.0021929825 2.86220088 6.276756e-03
## 12298   1 0.0021929825 2.86220088 6.276756e-03
## 12299   1 0.0021929825 2.86220088 6.276756e-03
## 12300   1 0.0021929825 2.86220088 6.276756e-03
## 12301   1 0.0021929825 2.86220088 6.276756e-03
## 12302   1 0.0021929825 2.86220088 6.276756e-03
## 12303   1 0.0021929825 2.86220088 6.276756e-03
## 12304   1 0.0021929825 2.86220088 6.276756e-03
## 12305   1 0.0021929825 2.86220088 6.276756e-03
## 12306   1 0.0021929825 2.86220088 6.276756e-03
## 12307   1 0.0021929825 2.86220088 6.276756e-03
## 12308   1 0.0021929825 2.86220088 6.276756e-03
## 12309   1 0.0021929825 2.86220088 6.276756e-03
## 12310   1 0.0021929825 2.86220088 6.276756e-03
## 12311   1 0.0021929825 2.86220088 6.276756e-03
## 12312   1 0.0021929825 2.86220088 6.276756e-03
## 12313   1 0.0021929825 2.86220088 6.276756e-03
## 12314   1 0.0021929825 2.86220088 6.276756e-03
## 12315   1 0.0021929825 2.86220088 6.276756e-03
## 12316   1 0.0021929825 2.86220088 6.276756e-03
## 12317   1 0.0021929825 2.86220088 6.276756e-03
## 12318   1 0.0021929825 2.86220088 6.276756e-03
## 12319   4 0.0042553191 1.47590652 6.280453e-03
## 12320   9 0.0063559322 0.99039870 6.294907e-03
## 12321   3 0.0087209302 0.72213472 6.297686e-03
## 12322   4 0.0022014309 2.86220088 6.300938e-03
## 12323   4 0.0022014309 2.86220088 6.300938e-03
## 12324   2 0.0022026432 2.86220088 6.304407e-03
## 12325   2 0.0022026432 2.86220088 6.304407e-03
## 12326   2 0.0022026432 2.86220088 6.304407e-03
## 12327   2 0.0022026432 2.86220088 6.304407e-03
## 12328   2 0.0022026432 2.86220088 6.304407e-03
## 12329   2 0.0022026432 2.86220088 6.304407e-03
## 12330   2 0.0022026432 2.86220088 6.304407e-03
## 12331   2 0.0022026432 2.86220088 6.304407e-03
## 12332   2 0.0022026432 2.86220088 6.304407e-03
## 12333   2 0.0022026432 2.86220088 6.304407e-03
## 12334   1 0.0029069767 2.16905370 6.305389e-03
## 12335   1 0.0029069767 2.16905370 6.305389e-03
## 12336   1 0.0029069767 2.16905370 6.305389e-03
## 12337   1 0.0029069767 2.16905370 6.305389e-03
## 12338   1 0.0029069767 2.16905370 6.305389e-03
## 12339   1 0.0029069767 2.16905370 6.305389e-03
## 12340   1 0.0029069767 2.16905370 6.305389e-03
## 12341   1 0.0029069767 2.16905370 6.305389e-03
## 12342   1 0.0029069767 2.16905370 6.305389e-03
## 12343   1 0.0029069767 2.16905370 6.305389e-03
## 12344   1 0.0029069767 2.16905370 6.305389e-03
## 12345   6 0.0039190072 1.60943791 6.307399e-03
## 12346   2 0.0035778175 1.76358859 6.309798e-03
## 12347   3 0.0025684932 2.45673577 6.310109e-03
## 12348   2 0.0032467532 1.94591015 6.317890e-03
## 12349   2 0.0032467532 1.94591015 6.317890e-03
## 12350   2 0.0032467532 1.94591015 6.317890e-03
## 12351  15 0.0243506494 0.25951120 6.319266e-03
## 12352   6 0.0063829787 0.99039870 6.321694e-03
## 12353   6 0.0063829787 0.99039870 6.321694e-03
## 12354   3 0.0136363636 0.46430561 6.331440e-03
## 12355  16 0.0188235294 0.33647224 6.333595e-03
## 12356   5 0.0032658393 1.94591015 6.355030e-03
## 12357   5 0.0032658393 1.94591015 6.355030e-03
## 12358   1 0.0017889088 3.55534806 6.360193e-03
## 12359   1 0.0017889088 3.55534806 6.360193e-03
## 12360   1 0.0017889088 3.55534806 6.360193e-03
## 12361   1 0.0017889088 3.55534806 6.360193e-03
## 12362   1 0.0017889088 3.55534806 6.360193e-03
## 12363   1 0.0017889088 3.55534806 6.360193e-03
## 12364   1 0.0017889088 3.55534806 6.360193e-03
## 12365   1 0.0017889088 3.55534806 6.360193e-03
## 12366   1 0.0017889088 3.55534806 6.360193e-03
## 12367   1 0.0017889088 3.55534806 6.360193e-03
## 12368   1 0.0017889088 3.55534806 6.360193e-03
## 12369   1 0.0017889088 3.55534806 6.360193e-03
## 12370   1 0.0017889088 3.55534806 6.360193e-03
## 12371   1 0.0017889088 3.55534806 6.360193e-03
## 12372   1 0.0017889088 3.55534806 6.360193e-03
## 12373   1 0.0017889088 3.55534806 6.360193e-03
## 12374   1 0.0017889088 3.55534806 6.360193e-03
## 12375   1 0.0017889088 3.55534806 6.360193e-03
## 12376   1 0.0017889088 3.55534806 6.360193e-03
## 12377   1 0.0017889088 3.55534806 6.360193e-03
## 12378   1 0.0017889088 3.55534806 6.360193e-03
## 12379   1 0.0017889088 3.55534806 6.360193e-03
## 12380   1 0.0017889088 3.55534806 6.360193e-03
## 12381   1 0.0017889088 3.55534806 6.360193e-03
## 12382   1 0.0017889088 3.55534806 6.360193e-03
## 12383   1 0.0017889088 3.55534806 6.360193e-03
## 12384   1 0.0017889088 3.55534806 6.360193e-03
## 12385   1 0.0017889088 3.55534806 6.360193e-03
## 12386   1 0.0017889088 3.55534806 6.360193e-03
## 12387   1 0.0017889088 3.55534806 6.360193e-03
## 12388   1 0.0017889088 3.55534806 6.360193e-03
## 12389   1 0.0017889088 3.55534806 6.360193e-03
## 12390   1 0.0017889088 3.55534806 6.360193e-03
## 12391   1 0.0017889088 3.55534806 6.360193e-03
## 12392   1 0.0017889088 3.55534806 6.360193e-03
## 12393   1 0.0017889088 3.55534806 6.360193e-03
## 12394   1 0.0017889088 3.55534806 6.360193e-03
## 12395   1 0.0017889088 3.55534806 6.360193e-03
## 12396   1 0.0017889088 3.55534806 6.360193e-03
## 12397   1 0.0017889088 3.55534806 6.360193e-03
## 12398   1 0.0017889088 3.55534806 6.360193e-03
## 12399   1 0.0017889088 3.55534806 6.360193e-03
## 12400   1 0.0017889088 3.55534806 6.360193e-03
## 12401   1 0.0017889088 3.55534806 6.360193e-03
## 12402   1 0.0017889088 3.55534806 6.360193e-03
## 12403   1 0.0017889088 3.55534806 6.360193e-03
## 12404   1 0.0017889088 3.55534806 6.360193e-03
## 12405   1 0.0017889088 3.55534806 6.360193e-03
## 12406   1 0.0017889088 3.55534806 6.360193e-03
## 12407   1 0.0017889088 3.55534806 6.360193e-03
## 12408   1 0.0017889088 3.55534806 6.360193e-03
## 12409   1 0.0017889088 3.55534806 6.360193e-03
## 12410   1 0.0017889088 3.55534806 6.360193e-03
## 12411   1 0.0017889088 3.55534806 6.360193e-03
## 12412   1 0.0017889088 3.55534806 6.360193e-03
## 12413   1 0.0017889088 3.55534806 6.360193e-03
## 12414   1 0.0017889088 3.55534806 6.360193e-03
## 12415   1 0.0017889088 3.55534806 6.360193e-03
## 12416  16 0.0136986301 0.46430561 6.360351e-03
## 12417   5 0.0124688279 0.51082562 6.369397e-03
## 12418   2 0.0059701493 1.07044141 6.390695e-03
## 12419   4 0.0047058824 1.35812348 6.391169e-03
## 12420   3 0.0039840637 1.60943791 6.412103e-03
## 12421   3 0.0036363636 1.76358859 6.413049e-03
## 12422   3 0.0036363636 1.76358859 6.413049e-03
## 12423   3 0.0036363636 1.76358859 6.413049e-03
## 12424   3 0.0036363636 1.76358859 6.413049e-03
## 12425   3 0.0036363636 1.76358859 6.413049e-03
## 12426   4 0.0026126715 2.45673577 6.418643e-03
## 12427  13 0.0138297872 0.46430561 6.421248e-03
## 12428   2 0.0047281324 1.35812348 6.421388e-03
## 12429   7 0.0043532338 1.47590652 6.424966e-03
## 12430   6 0.0033021464 1.94591015 6.425680e-03
## 12431   3 0.0033039648 1.94591015 6.429219e-03
## 12432   3 0.0033039648 1.94591015 6.429219e-03
## 12433   2 0.0022471910 2.86220088 6.431912e-03
## 12434   2 0.0022471910 2.86220088 6.431912e-03
## 12435   2 0.0022471910 2.86220088 6.431912e-03
## 12436   2 0.0022471910 2.86220088 6.431912e-03
## 12437   2 0.0022471910 2.86220088 6.431912e-03
## 12438   2 0.0022471910 2.86220088 6.431912e-03
## 12439   2 0.0022471910 2.86220088 6.431912e-03
## 12440   2 0.0022471910 2.86220088 6.431912e-03
## 12441   2 0.0022471910 2.86220088 6.431912e-03
## 12442   3 0.0051369863 1.25276297 6.435426e-03
## 12443   3 0.0040000000 1.60943791 6.437752e-03
## 12444   2 0.0055865922 1.15745279 6.466217e-03
## 12445   2 0.0055865922 1.15745279 6.466217e-03
## 12446   2 0.0055865922 1.15745279 6.466217e-03
## 12447   6 0.0070588235 0.91629073 6.467935e-03
## 12448   2 0.0043859649 1.47590652 6.473274e-03
## 12449   2 0.0043859649 1.47590652 6.473274e-03
## 12450   2 0.0043859649 1.47590652 6.473274e-03
## 12451   1 0.0029850746 2.16905370 6.474787e-03
## 12452   1 0.0029850746 2.16905370 6.474787e-03
## 12453   1 0.0029850746 2.16905370 6.474787e-03
## 12454   1 0.0029850746 2.16905370 6.474787e-03
## 12455   1 0.0029850746 2.16905370 6.474787e-03
## 12456   1 0.0029850746 2.16905370 6.474787e-03
## 12457   1 0.0029850746 2.16905370 6.474787e-03
## 12458   1 0.0029850746 2.16905370 6.474787e-03
## 12459   1 0.0029850746 2.16905370 6.474787e-03
## 12460   1 0.0029850746 2.16905370 6.474787e-03
## 12461   5 0.0051706308 1.25276297 6.477575e-03
## 12462   1 0.0026385224 2.45673577 6.482152e-03
## 12463   1 0.0026385224 2.45673577 6.482152e-03
## 12464   1 0.0026385224 2.45673577 6.482152e-03
## 12465   1 0.0026385224 2.45673577 6.482152e-03
## 12466   1 0.0026385224 2.45673577 6.482152e-03
## 12467   1 0.0026385224 2.45673577 6.482152e-03
## 12468   1 0.0026385224 2.45673577 6.482152e-03
## 12469   1 0.0026385224 2.45673577 6.482152e-03
## 12470   1 0.0026385224 2.45673577 6.482152e-03
## 12471   1 0.0026385224 2.45673577 6.482152e-03
## 12472   1 0.0026385224 2.45673577 6.482152e-03
## 12473   1 0.0026385224 2.45673577 6.482152e-03
## 12474   1 0.0026385224 2.45673577 6.482152e-03
## 12475   1 0.0026385224 2.45673577 6.482152e-03
## 12476   1 0.0026385224 2.45673577 6.482152e-03
## 12477   1 0.0026385224 2.45673577 6.482152e-03
## 12478   1 0.0026385224 2.45673577 6.482152e-03
## 12479   1 0.0026385224 2.45673577 6.482152e-03
## 12480   8 0.0106241700 0.61090908 6.490402e-03
## 12481   3 0.0070921986 0.91629073 6.498516e-03
## 12482  15 0.0097975180 0.66497630 6.515117e-03
## 12483   2 0.0022779043 2.86220088 6.519820e-03
## 12484   2 0.0022779043 2.86220088 6.519820e-03
## 12485   2 0.0022779043 2.86220088 6.519820e-03
## 12486   2 0.0022779043 2.86220088 6.519820e-03
## 12487   2 0.0022779043 2.86220088 6.519820e-03
## 12488   2 0.0022779043 2.86220088 6.519820e-03
## 12489   2 0.0026560425 2.45673577 6.525195e-03
## 12490   1 0.0060975610 1.07044141 6.527082e-03
## 12491   1 0.0060975610 1.07044141 6.527082e-03
## 12492   1 0.0060975610 1.07044141 6.527082e-03
## 12493   1 0.0060975610 1.07044141 6.527082e-03
## 12494   1 0.0060975610 1.07044141 6.527082e-03
## 12495   1 0.0060975610 1.07044141 6.527082e-03
## 12496   1 0.0060975610 1.07044141 6.527082e-03
## 12497   2 0.0037105751 1.76358859 6.543928e-03
## 12498   2 0.0037105751 1.76358859 6.543928e-03
## 12499   2 0.0037105751 1.76358859 6.543928e-03
## 12500   2 0.0026666667 2.45673577 6.551295e-03
## 12501   2 0.0026666667 2.45673577 6.551295e-03
## 12502   2 0.0026666667 2.45673577 6.551295e-03
## 12503   2 0.0026666667 2.45673577 6.551295e-03
## 12504   2 0.0026666667 2.45673577 6.551295e-03
## 12505   2 0.0026666667 2.45673577 6.551295e-03
## 12506   2 0.0026666667 2.45673577 6.551295e-03
## 12507   2 0.0026666667 2.45673577 6.551295e-03
## 12508   4 0.0071556351 0.91629073 6.556642e-03
## 12509   6 0.0107334526 0.61090908 6.557164e-03
## 12510   3 0.0033707865 1.94591015 6.559248e-03
## 12511   3 0.0083798883 0.78275934 6.559436e-03
## 12512   2 0.0090909091 0.72213472 6.564861e-03
## 12513   3 0.0030364372 2.16905370 6.586195e-03
## 12514   5 0.0056947608 1.15745279 6.591417e-03
## 12515   1 0.0018552876 3.55534806 6.596193e-03
## 12516   1 0.0018552876 3.55534806 6.596193e-03
## 12517   1 0.0018552876 3.55534806 6.596193e-03
## 12518   1 0.0018552876 3.55534806 6.596193e-03
## 12519   1 0.0018552876 3.55534806 6.596193e-03
## 12520   1 0.0018552876 3.55534806 6.596193e-03
## 12521   1 0.0018552876 3.55534806 6.596193e-03
## 12522   1 0.0018552876 3.55534806 6.596193e-03
## 12523   1 0.0018552876 3.55534806 6.596193e-03
## 12524   1 0.0018552876 3.55534806 6.596193e-03
## 12525   1 0.0018552876 3.55534806 6.596193e-03
## 12526   1 0.0018552876 3.55534806 6.596193e-03
## 12527   1 0.0018552876 3.55534806 6.596193e-03
## 12528   1 0.0018552876 3.55534806 6.596193e-03
## 12529   1 0.0018552876 3.55534806 6.596193e-03
## 12530   1 0.0018552876 3.55534806 6.596193e-03
## 12531   1 0.0018552876 3.55534806 6.596193e-03
## 12532   1 0.0018552876 3.55534806 6.596193e-03
## 12533   1 0.0018552876 3.55534806 6.596193e-03
## 12534   1 0.0018552876 3.55534806 6.596193e-03
## 12535   1 0.0018552876 3.55534806 6.596193e-03
## 12536   1 0.0018552876 3.55534806 6.596193e-03
## 12537   1 0.0018552876 3.55534806 6.596193e-03
## 12538   1 0.0018552876 3.55534806 6.596193e-03
## 12539   1 0.0018552876 3.55534806 6.596193e-03
## 12540   1 0.0018552876 3.55534806 6.596193e-03
## 12541   1 0.0018552876 3.55534806 6.596193e-03
## 12542   1 0.0018552876 3.55534806 6.596193e-03
## 12543   1 0.0018552876 3.55534806 6.596193e-03
## 12544   1 0.0018552876 3.55534806 6.596193e-03
## 12545   1 0.0018552876 3.55534806 6.596193e-03
## 12546   1 0.0018552876 3.55534806 6.596193e-03
## 12547   1 0.0018552876 3.55534806 6.596193e-03
## 12548   1 0.0018552876 3.55534806 6.596193e-03
## 12549   1 0.0018552876 3.55534806 6.596193e-03
## 12550   1 0.0018552876 3.55534806 6.596193e-03
## 12551   1 0.0018552876 3.55534806 6.596193e-03
## 12552   1 0.0018552876 3.55534806 6.596193e-03
## 12553   1 0.0018552876 3.55534806 6.596193e-03
## 12554   1 0.0018552876 3.55534806 6.596193e-03
## 12555   1 0.0018552876 3.55534806 6.596193e-03
## 12556   1 0.0018552876 3.55534806 6.596193e-03
## 12557   1 0.0018552876 3.55534806 6.596193e-03
## 12558   1 0.0018552876 3.55534806 6.596193e-03
## 12559   1 0.0018552876 3.55534806 6.596193e-03
## 12560   1 0.0018552876 3.55534806 6.596193e-03
## 12561   1 0.0018552876 3.55534806 6.596193e-03
## 12562   1 0.0018552876 3.55534806 6.596193e-03
## 12563   1 0.0018552876 3.55534806 6.596193e-03
## 12564   1 0.0018552876 3.55534806 6.596193e-03
## 12565   1 0.0018552876 3.55534806 6.596193e-03
## 12566   1 0.0018552876 3.55534806 6.596193e-03
## 12567   1 0.0018552876 3.55534806 6.596193e-03
## 12568   1 0.0018552876 3.55534806 6.596193e-03
## 12569   1 0.0018552876 3.55534806 6.596193e-03
## 12570   1 0.0018552876 3.55534806 6.596193e-03
## 12571   2 0.0052770449 1.25276297 6.610886e-03
## 12572   2 0.0052770449 1.25276297 6.610886e-03
## 12573   2 0.0052770449 1.25276297 6.610886e-03
## 12574   3 0.0048701299 1.35812348 6.614238e-03
## 12575   3 0.0048701299 1.35812348 6.614238e-03
## 12576   1 0.0026954178 2.45673577 6.621929e-03
## 12577   1 0.0026954178 2.45673577 6.621929e-03
## 12578   1 0.0026954178 2.45673577 6.621929e-03
## 12579   1 0.0026954178 2.45673577 6.621929e-03
## 12580   1 0.0026954178 2.45673577 6.621929e-03
## 12581   1 0.0026954178 2.45673577 6.621929e-03
## 12582   1 0.0026954178 2.45673577 6.621929e-03
## 12583   1 0.0026954178 2.45673577 6.621929e-03
## 12584   1 0.0026954178 2.45673577 6.621929e-03
## 12585   1 0.0026954178 2.45673577 6.621929e-03
## 12586   1 0.0026954178 2.45673577 6.621929e-03
## 12587   1 0.0026954178 2.45673577 6.621929e-03
## 12588   1 0.0026954178 2.45673577 6.621929e-03
## 12589   1 0.0026954178 2.45673577 6.621929e-03
## 12590   3 0.0018656716 3.55534806 6.633112e-03
## 12591   3 0.0018656716 3.55534806 6.633112e-03
## 12592   3 0.0018656716 3.55534806 6.633112e-03
## 12593   3 0.0018656716 3.55534806 6.633112e-03
## 12594   3 0.0018656716 3.55534806 6.633112e-03
## 12595   4 0.0044943820 1.47590652 6.633288e-03
## 12596   3 0.0034168565 1.94591015 6.648896e-03
## 12597   3 0.0041322314 1.60943791 6.650570e-03
## 12598   3 0.0041322314 1.60943791 6.650570e-03
## 12599   4 0.0053120850 1.25276297 6.654783e-03
## 12600   8 0.0085106383 0.78275934 6.661782e-03
## 12601   5 0.0053191489 1.25276297 6.663633e-03
## 12602   4 0.0034246575 1.94591015 6.664076e-03
## 12603   4 0.0034246575 1.94591015 6.664076e-03
## 12604   2 0.0034246575 1.94591015 6.664076e-03
## 12605   2 0.0034246575 1.94591015 6.664076e-03
## 12606   2 0.0034246575 1.94591015 6.664076e-03
## 12607   2 0.0034246575 1.94591015 6.664076e-03
## 12608   2 0.0034246575 1.94591015 6.664076e-03
## 12609   1 0.0034246575 1.94591015 6.664076e-03
## 12610   1 0.0034246575 1.94591015 6.664076e-03
## 12611   1 0.0034246575 1.94591015 6.664076e-03
## 12612   1 0.0034246575 1.94591015 6.664076e-03
## 12613   1 0.0034246575 1.94591015 6.664076e-03
## 12614   1 0.0034246575 1.94591015 6.664076e-03
## 12615   1 0.0034246575 1.94591015 6.664076e-03
## 12616   1 0.0034246575 1.94591015 6.664076e-03
## 12617   1 0.0034246575 1.94591015 6.664076e-03
## 12618   1 0.0034246575 1.94591015 6.664076e-03
## 12619   1 0.0034246575 1.94591015 6.664076e-03
## 12620   3 0.0018867925 3.55534806 6.708204e-03
## 12621   3 0.0018867925 3.55534806 6.708204e-03
## 12622   3 0.0018867925 3.55534806 6.708204e-03
## 12623   3 0.0018867925 3.55534806 6.708204e-03
## 12624   1 0.0045454545 1.47590652 6.708666e-03
## 12625   1 0.0045454545 1.47590652 6.708666e-03
## 12626   8 0.0199501247 0.33647224 6.712663e-03
## 12627   7 0.0092961487 0.72213472 6.713072e-03
## 12628   3 0.0053667263 1.25276297 6.723236e-03
## 12629   3 0.0053667263 1.25276297 6.723236e-03
## 12630   3 0.0053667263 1.25276297 6.723236e-03
## 12631   3 0.0031023785 2.16905370 6.729226e-03
## 12632   3 0.0031023785 2.16905370 6.729226e-03
## 12633   2 0.0058139535 1.15745279 6.729377e-03
## 12634   1 0.0034602076 1.94591015 6.733253e-03
## 12635   1 0.0034602076 1.94591015 6.733253e-03
## 12636   1 0.0034602076 1.94591015 6.733253e-03
## 12637   1 0.0034602076 1.94591015 6.733253e-03
## 12638   1 0.0034602076 1.94591015 6.733253e-03
## 12639   1 0.0034602076 1.94591015 6.733253e-03
## 12640   1 0.0034602076 1.94591015 6.733253e-03
## 12641   1 0.0034602076 1.94591015 6.733253e-03
## 12642   1 0.0034602076 1.94591015 6.733253e-03
## 12643   2 0.0023529412 2.86220088 6.734590e-03
## 12644   2 0.0023529412 2.86220088 6.734590e-03
## 12645   5 0.0031094527 2.16905370 6.744570e-03
## 12646   2 0.0053908356 1.25276297 6.753439e-03
## 12647   8 0.0049751244 1.35812348 6.756833e-03
## 12648   5 0.0027517887 2.45673577 6.760418e-03
## 12649   5 0.0027517887 2.45673577 6.760418e-03
## 12650   1 0.0023640662 2.86220088 6.766432e-03
## 12651   1 0.0023640662 2.86220088 6.766432e-03
## 12652   1 0.0023640662 2.86220088 6.766432e-03
## 12653   1 0.0023640662 2.86220088 6.766432e-03
## 12654   1 0.0023640662 2.86220088 6.766432e-03
## 12655   1 0.0023640662 2.86220088 6.766432e-03
## 12656   1 0.0023640662 2.86220088 6.766432e-03
## 12657   1 0.0023640662 2.86220088 6.766432e-03
## 12658   1 0.0023640662 2.86220088 6.766432e-03
## 12659   1 0.0023640662 2.86220088 6.766432e-03
## 12660   1 0.0023640662 2.86220088 6.766432e-03
## 12661   1 0.0023640662 2.86220088 6.766432e-03
## 12662   1 0.0023640662 2.86220088 6.766432e-03
## 12663   1 0.0023640662 2.86220088 6.766432e-03
## 12664   1 0.0023640662 2.86220088 6.766432e-03
## 12665   1 0.0023640662 2.86220088 6.766432e-03
## 12666   1 0.0023640662 2.86220088 6.766432e-03
## 12667   1 0.0023640662 2.86220088 6.766432e-03
## 12668   1 0.0023640662 2.86220088 6.766432e-03
## 12669   1 0.0023640662 2.86220088 6.766432e-03
## 12670   1 0.0023640662 2.86220088 6.766432e-03
## 12671   1 0.0023640662 2.86220088 6.766432e-03
## 12672   1 0.0023640662 2.86220088 6.766432e-03
## 12673   2 0.0027548209 2.45673577 6.767867e-03
## 12674   2 0.0027548209 2.45673577 6.767867e-03
## 12675   2 0.0027548209 2.45673577 6.767867e-03
## 12676   2 0.0027548209 2.45673577 6.767867e-03
## 12677   2 0.0027548209 2.45673577 6.767867e-03
## 12678   2 0.0049875312 1.35812348 6.773683e-03
## 12679  11 0.0068407960 0.99039870 6.775116e-03
## 12680  11 0.0068407960 0.99039870 6.775116e-03
## 12681   2 0.0068493151 0.99039870 6.783553e-03
## 12682   6 0.0161725067 0.41985385 6.790089e-03
## 12683   5 0.0031446541 2.16905370 6.820924e-03
## 12684   3 0.0087209302 0.78275934 6.826390e-03
## 12685   3 0.0102739726 0.66497630 6.831948e-03
## 12686   3 0.0080862534 0.84729786 6.851465e-03
## 12687   2 0.0069204152 0.99039870 6.853970e-03
## 12688   8 0.0080971660 0.84729786 6.860711e-03
## 12689   1 0.0027932961 2.45673577 6.862390e-03
## 12690   1 0.0027932961 2.45673577 6.862390e-03
## 12691   1 0.0027932961 2.45673577 6.862390e-03
## 12692   1 0.0027932961 2.45673577 6.862390e-03
## 12693   1 0.0027932961 2.45673577 6.862390e-03
## 12694   1 0.0027932961 2.45673577 6.862390e-03
## 12695   1 0.0027932961 2.45673577 6.862390e-03
## 12696   1 0.0027932961 2.45673577 6.862390e-03
## 12697   1 0.0027932961 2.45673577 6.862390e-03
## 12698   1 0.0027932961 2.45673577 6.862390e-03
## 12699   1 0.0027932961 2.45673577 6.862390e-03
## 12700   1 0.0027932961 2.45673577 6.862390e-03
## 12701   1 0.0027932961 2.45673577 6.862390e-03
## 12702   1 0.0027932961 2.45673577 6.862390e-03
## 12703   1 0.0027932961 2.45673577 6.862390e-03
## 12704   4 0.0087719298 0.78275934 6.866310e-03
## 12705   5 0.0122850123 0.55961579 6.874887e-03
## 12706   5 0.0055066079 1.25276297 6.898474e-03
## 12707   3 0.0103806228 0.66497630 6.902868e-03
## 12708  33 0.0205223881 0.33647224 6.905214e-03
## 12709   2 0.0059701493 1.15745279 6.910166e-03
## 12710   7 0.0035532995 1.94591015 6.914402e-03
## 12711   3 0.0031914894 2.16905370 6.922512e-03
## 12712   2 0.0024242424 2.86220088 6.938669e-03
## 12713   2 0.0024242424 2.86220088 6.938669e-03
## 12714   2 0.0024242424 2.86220088 6.938669e-03
## 12715   2 0.0024242424 2.86220088 6.938669e-03
## 12716   2 0.0024242424 2.86220088 6.938669e-03
## 12717   4 0.0047058824 1.47590652 6.945442e-03
## 12718   2 0.0035778175 1.94591015 6.962111e-03
## 12719   2 0.0035778175 1.94591015 6.962111e-03
## 12720   3 0.0019595036 3.55534806 6.966717e-03
## 12721   3 0.0019595036 3.55534806 6.966717e-03
## 12722   3 0.0019595036 3.55534806 6.966717e-03
## 12723   3 0.0019595036 3.55534806 6.966717e-03
## 12724   3 0.0019595036 3.55534806 6.966717e-03
## 12725   3 0.0019595036 3.55534806 6.966717e-03
## 12726   3 0.0055658627 1.25276297 6.972707e-03
## 12727   3 0.0055658627 1.25276297 6.972707e-03
## 12728   3 0.0051369863 1.35812348 6.976662e-03
## 12729   5 0.0124688279 0.55961579 6.977753e-03
## 12730   2 0.0047281324 1.47590652 6.978281e-03
## 12731   2 0.0047281324 1.47590652 6.978281e-03
## 12732   9 0.0055970149 1.25276297 7.011733e-03
## 12733   4 0.0105540897 0.66497630 7.018220e-03
## 12734   3 0.0070921986 0.99039870 7.024104e-03
## 12735   3 0.0039840637 1.76358859 7.026249e-03
## 12736   3 0.0039840637 1.76358859 7.026249e-03
## 12737   1 0.0024570025 2.86220088 7.032435e-03
## 12738   1 0.0024570025 2.86220088 7.032435e-03
## 12739   1 0.0024570025 2.86220088 7.032435e-03
## 12740   1 0.0024570025 2.86220088 7.032435e-03
## 12741   1 0.0024570025 2.86220088 7.032435e-03
## 12742   1 0.0024570025 2.86220088 7.032435e-03
## 12743   1 0.0024570025 2.86220088 7.032435e-03
## 12744   1 0.0024570025 2.86220088 7.032435e-03
## 12745   1 0.0024570025 2.86220088 7.032435e-03
## 12746   1 0.0024570025 2.86220088 7.032435e-03
## 12747   1 0.0024570025 2.86220088 7.032435e-03
## 12748   1 0.0024570025 2.86220088 7.032435e-03
## 12749   1 0.0024570025 2.86220088 7.032435e-03
## 12750   1 0.0024570025 2.86220088 7.032435e-03
## 12751   1 0.0024570025 2.86220088 7.032435e-03
## 12752   1 0.0024570025 2.86220088 7.032435e-03
## 12753   1 0.0024570025 2.86220088 7.032435e-03
## 12754   1 0.0024570025 2.86220088 7.032435e-03
## 12755   1 0.0024570025 2.86220088 7.032435e-03
## 12756   1 0.0024570025 2.86220088 7.032435e-03
## 12757   1 0.0024570025 2.86220088 7.032435e-03
## 12758   1 0.0024570025 2.86220088 7.032435e-03
## 12759   1 0.0024570025 2.86220088 7.032435e-03
## 12760   1 0.0024570025 2.86220088 7.032435e-03
## 12761   6 0.0097402597 0.72213472 7.033780e-03
## 12762  20 0.0125786164 0.55961579 7.039192e-03
## 12763   3 0.0065789474 1.07044141 7.042378e-03
## 12764   2 0.0032467532 2.16905370 7.042382e-03
## 12765   2 0.0032467532 2.16905370 7.042382e-03
## 12766   2 0.0032467532 2.16905370 7.042382e-03
## 12767   2 0.0032467532 2.16905370 7.042382e-03
## 12768   1 0.0060975610 1.15745279 7.057639e-03
## 12769   1 0.0060975610 1.15745279 7.057639e-03
## 12770   1 0.0060975610 1.15745279 7.057639e-03
## 12771   2 0.0043859649 1.60943791 7.058938e-03
## 12772   2 0.0043859649 1.60943791 7.058938e-03
## 12773   2 0.0043859649 1.60943791 7.058938e-03
## 12774   6 0.0066079295 1.07044141 7.073401e-03
## 12775   3 0.0036363636 1.94591015 7.076037e-03
## 12776   3 0.0036363636 1.94591015 7.076037e-03
## 12777   7 0.0044025157 1.60943791 7.085576e-03
## 12778   4 0.0044052863 1.60943791 7.090035e-03
## 12779   4 0.0044052863 1.60943791 7.090035e-03
## 12780   9 0.0056603774 1.25276297 7.091111e-03
## 12781  11 0.0071848465 0.99039870 7.115863e-03
## 12782   4 0.0024875622 2.86220088 7.119903e-03
## 12783   1 0.0024937656 2.86220088 7.137658e-03
## 12784   1 0.0024937656 2.86220088 7.137658e-03
## 12785   1 0.0024937656 2.86220088 7.137658e-03
## 12786   1 0.0024937656 2.86220088 7.137658e-03
## 12787   1 0.0024937656 2.86220088 7.137658e-03
## 12788   1 0.0024937656 2.86220088 7.137658e-03
## 12789   1 0.0024937656 2.86220088 7.137658e-03
## 12790   1 0.0024937656 2.86220088 7.137658e-03
## 12791   1 0.0024937656 2.86220088 7.137658e-03
## 12792   1 0.0024937656 2.86220088 7.137658e-03
## 12793   1 0.0024937656 2.86220088 7.137658e-03
## 12794   1 0.0024937656 2.86220088 7.137658e-03
## 12795   1 0.0024937656 2.86220088 7.137658e-03
## 12796   1 0.0024937656 2.86220088 7.137658e-03
## 12797   1 0.0024937656 2.86220088 7.137658e-03
## 12798   1 0.0024937656 2.86220088 7.137658e-03
## 12799   1 0.0024937656 2.86220088 7.137658e-03
## 12800   1 0.0024937656 2.86220088 7.137658e-03
## 12801   1 0.0024937656 2.86220088 7.137658e-03
## 12802   1 0.0024937656 2.86220088 7.137658e-03
## 12803   1 0.0024937656 2.86220088 7.137658e-03
## 12804   1 0.0029069767 2.45673577 7.141674e-03
## 12805   1 0.0029069767 2.45673577 7.141674e-03
## 12806   1 0.0029069767 2.45673577 7.141674e-03
## 12807   1 0.0029069767 2.45673577 7.141674e-03
## 12808   1 0.0029069767 2.45673577 7.141674e-03
## 12809   1 0.0029069767 2.45673577 7.141674e-03
## 12810   1 0.0029069767 2.45673577 7.141674e-03
## 12811   1 0.0029069767 2.45673577 7.141674e-03
## 12812   1 0.0029069767 2.45673577 7.141674e-03
## 12813   1 0.0029069767 2.45673577 7.141674e-03
## 12814   1 0.0029069767 2.45673577 7.141674e-03
## 12815   1 0.0029069767 2.45673577 7.141674e-03
## 12816   1 0.0029069767 2.45673577 7.141674e-03
## 12817   3 0.0033039648 2.16905370 7.166477e-03
## 12818   3 0.0033039648 2.16905370 7.166477e-03
## 12819   3 0.0033039648 2.16905370 7.166477e-03
## 12820   3 0.0033039648 2.16905370 7.166477e-03
## 12821   3 0.0033039648 2.16905370 7.166477e-03
## 12822   3 0.0033039648 2.16905370 7.166477e-03
## 12823   2 0.0052770449 1.35812348 7.166879e-03
## 12824  12 0.0078380144 0.91629073 7.181900e-03
## 12825  19 0.0213483146 0.33647224 7.183115e-03
## 12826   3 0.0048701299 1.47590652 7.187856e-03
## 12827   2 0.0020242915 3.55534806 7.197061e-03
## 12828   2 0.0020242915 3.55534806 7.197061e-03
## 12829   2 0.0020242915 3.55534806 7.197061e-03
## 12830   2 0.0020242915 3.55534806 7.197061e-03
## 12831   2 0.0020242915 3.55534806 7.197061e-03
## 12832   2 0.0020242915 3.55534806 7.197061e-03
## 12833   2 0.0020242915 3.55534806 7.197061e-03
## 12834   2 0.0020242915 3.55534806 7.197061e-03
## 12835   2 0.0020242915 3.55534806 7.197061e-03
## 12836   2 0.0020242915 3.55534806 7.197061e-03
## 12837   2 0.0020242915 3.55534806 7.197061e-03
## 12838   2 0.0020242915 3.55534806 7.197061e-03
## 12839   2 0.0020242915 3.55534806 7.197061e-03
## 12840   2 0.0020242915 3.55534806 7.197061e-03
## 12841   2 0.0020242915 3.55534806 7.197061e-03
## 12842   2 0.0020242915 3.55534806 7.197061e-03
## 12843   2 0.0020242915 3.55534806 7.197061e-03
## 12844   2 0.0020242915 3.55534806 7.197061e-03
## 12845   2 0.0020242915 3.55534806 7.197061e-03
## 12846   2 0.0020242915 3.55534806 7.197061e-03
## 12847   2 0.0020242915 3.55534806 7.197061e-03
## 12848   2 0.0020242915 3.55534806 7.197061e-03
## 12849   2 0.0020242915 3.55534806 7.197061e-03
## 12850   2 0.0020242915 3.55534806 7.197061e-03
## 12851   4 0.0025157233 2.86220088 7.200505e-03
## 12852   4 0.0053120850 1.35812348 7.214467e-03
## 12853   6 0.0067415730 1.07044141 7.216459e-03
## 12854   4 0.0020304569 3.55534806 7.218981e-03
## 12855   4 0.0020304569 3.55534806 7.218981e-03
## 12856   4 0.0020304569 3.55534806 7.218981e-03
## 12857   4 0.0020304569 3.55534806 7.218981e-03
## 12858   4 0.0020304569 3.55534806 7.218981e-03
## 12859   4 0.0020304569 3.55534806 7.218981e-03
## 12860   4 0.0020304569 3.55534806 7.218981e-03
## 12861   4 0.0020304569 3.55534806 7.218981e-03
## 12862   4 0.0020304569 3.55534806 7.218981e-03
## 12863   4 0.0020304569 3.55534806 7.218981e-03
## 12864   4 0.0020304569 3.55534806 7.218981e-03
## 12865   4 0.0020304569 3.55534806 7.218981e-03
## 12866   4 0.0020304569 3.55534806 7.218981e-03
## 12867   4 0.0020304569 3.55534806 7.218981e-03
## 12868   2 0.0037105751 1.94591015 7.220446e-03
## 12869   2 0.0037105751 1.94591015 7.220446e-03
## 12870   5 0.0053191489 1.35812348 7.224061e-03
## 12871   4 0.0044943820 1.60943791 7.233429e-03
## 12872   4 0.0053333333 1.35812348 7.243325e-03
## 12873  13 0.0172642762 0.41985385 7.248473e-03
## 12874   4 0.0243902439 0.29725152 7.250037e-03
## 12875   2 0.0049140049 1.47590652 7.252612e-03
## 12876   7 0.0129870130 0.55961579 7.267738e-03
## 12877   2 0.0058139535 1.25276297 7.283506e-03
## 12878   2 0.0058139535 1.25276297 7.283506e-03
## 12879   2 0.0058139535 1.25276297 7.283506e-03
## 12880   3 0.0041322314 1.76358859 7.287556e-03
## 12881   3 0.0041322314 1.76358859 7.287556e-03
## 12882   3 0.0041322314 1.76358859 7.287556e-03
## 12883   3 0.0041322314 1.76358859 7.287556e-03
## 12884   3 0.0053667263 1.35812348 7.288677e-03
## 12885   4 0.0041365047 1.76358859 7.295092e-03
## 12886   3 0.0033707865 2.16905370 7.311417e-03
## 12887   3 0.0033707865 2.16905370 7.311417e-03
## 12888   1 0.0045454545 1.60943791 7.315627e-03
## 12889   1 0.0045454545 1.60943791 7.315627e-03
## 12890   1 0.0045454545 1.60943791 7.315627e-03
## 12891   2 0.0053908356 1.35812348 7.321420e-03
## 12892   2 0.0053908356 1.35812348 7.321420e-03
## 12893  11 0.0068407960 1.07044141 7.322671e-03
## 12894  11 0.0068407960 1.07044141 7.322671e-03
## 12895   6 0.0080000000 0.91629073 7.330326e-03
## 12896   2 0.0068493151 1.07044141 7.331790e-03
## 12897   1 0.0029850746 2.45673577 7.333540e-03
## 12898   1 0.0029850746 2.45673577 7.333540e-03
## 12899   1 0.0029850746 2.45673577 7.333540e-03
## 12900   1 0.0029850746 2.45673577 7.333540e-03
## 12901   1 0.0029850746 2.45673577 7.333540e-03
## 12902   1 0.0029850746 2.45673577 7.333540e-03
## 12903   1 0.0029850746 2.45673577 7.333540e-03
## 12904   1 0.0029850746 2.45673577 7.333540e-03
## 12905   1 0.0029850746 2.45673577 7.333540e-03
## 12906   1 0.0029850746 2.45673577 7.333540e-03
## 12907   1 0.0029850746 2.45673577 7.333540e-03
## 12908   1 0.0029850746 2.45673577 7.333540e-03
## 12909   1 0.0029850746 2.45673577 7.333540e-03
## 12910   1 0.0029850746 2.45673577 7.333540e-03
## 12911   3 0.0025684932 2.86220088 7.351543e-03
## 12912   3 0.0025684932 2.86220088 7.351543e-03
## 12913   3 0.0025684932 2.86220088 7.351543e-03
## 12914   3 0.0025684932 2.86220088 7.351543e-03
## 12915   3 0.0025684932 2.86220088 7.351543e-03
## 12916   3 0.0025684932 2.86220088 7.351543e-03
## 12917   2 0.0020682523 3.55534806 7.353357e-03
## 12918   2 0.0020682523 3.55534806 7.353357e-03
## 12919   2 0.0020682523 3.55534806 7.353357e-03
## 12920   2 0.0020682523 3.55534806 7.353357e-03
## 12921   2 0.0020682523 3.55534806 7.353357e-03
## 12922   2 0.0020682523 3.55534806 7.353357e-03
## 12923   2 0.0020682523 3.55534806 7.353357e-03
## 12924   2 0.0020682523 3.55534806 7.353357e-03
## 12925   2 0.0020682523 3.55534806 7.353357e-03
## 12926   7 0.0045721750 1.60943791 7.358632e-03
## 12927   7 0.0045721750 1.60943791 7.358632e-03
## 12928   2 0.0049875312 1.47590652 7.361130e-03
## 12929   2 0.0049875312 1.47590652 7.361130e-03
## 12930   2 0.0049875312 1.47590652 7.361130e-03
## 12931   8 0.0094117647 0.78275934 7.367147e-03
## 12932   6 0.0063829787 1.15745279 7.387997e-03
## 12933   2 0.0069204152 1.07044141 7.407899e-03
## 12934   3 0.0080862534 0.91629073 7.409359e-03
## 12935   3 0.0034168565 2.16905370 7.411345e-03
## 12936   3 0.0034168565 2.16905370 7.411345e-03
## 12937  12 0.0121457490 0.61090908 7.419948e-03
## 12938   2 0.0034246575 2.16905370 7.428266e-03
## 12939   2 0.0034246575 2.16905370 7.428266e-03
## 12940   2 0.0034246575 2.16905370 7.428266e-03
## 12941   2 0.0034246575 2.16905370 7.428266e-03
## 12942   2 0.0034246575 2.16905370 7.428266e-03
## 12943   1 0.0034246575 2.16905370 7.428266e-03
## 12944   1 0.0034246575 2.16905370 7.428266e-03
## 12945   1 0.0034246575 2.16905370 7.428266e-03
## 12946   1 0.0034246575 2.16905370 7.428266e-03
## 12947   1 0.0034246575 2.16905370 7.428266e-03
## 12948   1 0.0034246575 2.16905370 7.428266e-03
## 12949   1 0.0034246575 2.16905370 7.428266e-03
## 12950   1 0.0034246575 2.16905370 7.428266e-03
## 12951   1 0.0034246575 2.16905370 7.428266e-03
## 12952   6 0.0042372881 1.76358859 7.472833e-03
## 12953   4 0.0026126715 2.86220088 7.477991e-03
## 12954   4 0.0026126715 2.86220088 7.477991e-03
## 12955   4 0.0026126715 2.86220088 7.477991e-03
## 12956   6 0.0030456853 2.45673577 7.482444e-03
## 12957   4 0.0055096419 1.35812348 7.482774e-03
## 12958   4 0.0042553191 1.76358859 7.504632e-03
## 12959   4 0.0042553191 1.76358859 7.504632e-03
## 12960   1 0.0034602076 2.16905370 7.505376e-03
## 12961   1 0.0034602076 2.16905370 7.505376e-03
## 12962   1 0.0034602076 2.16905370 7.505376e-03
## 12963   1 0.0034602076 2.16905370 7.505376e-03
## 12964   1 0.0034602076 2.16905370 7.505376e-03
## 12965   1 0.0034602076 2.16905370 7.505376e-03
## 12966   1 0.0034602076 2.16905370 7.505376e-03
## 12967   1 0.0034602076 2.16905370 7.505376e-03
## 12968   1 0.0034602076 2.16905370 7.505376e-03
## 12969   3 0.0021186441 3.55534806 7.532517e-03
## 12970   3 0.0021186441 3.55534806 7.532517e-03
## 12971   3 0.0021186441 3.55534806 7.532517e-03
## 12972   3 0.0021186441 3.55534806 7.532517e-03
## 12973   5 0.0042808219 1.76358859 7.549609e-03
## 12974   5 0.0042808219 1.76358859 7.549609e-03
## 12975   1 0.0026385224 2.86220088 7.551981e-03
## 12976   1 0.0026385224 2.86220088 7.551981e-03
## 12977   1 0.0026385224 2.86220088 7.551981e-03
## 12978   1 0.0026385224 2.86220088 7.551981e-03
## 12979   1 0.0026385224 2.86220088 7.551981e-03
## 12980   1 0.0026385224 2.86220088 7.551981e-03
## 12981   1 0.0026385224 2.86220088 7.551981e-03
## 12982   1 0.0026385224 2.86220088 7.551981e-03
## 12983   1 0.0026385224 2.86220088 7.551981e-03
## 12984   1 0.0026385224 2.86220088 7.551981e-03
## 12985   1 0.0026385224 2.86220088 7.551981e-03
## 12986   1 0.0026385224 2.86220088 7.551981e-03
## 12987   1 0.0026385224 2.86220088 7.551981e-03
## 12988   1 0.0026385224 2.86220088 7.551981e-03
## 12989   1 0.0026385224 2.86220088 7.551981e-03
## 12990   1 0.0026385224 2.86220088 7.551981e-03
## 12991   1 0.0026385224 2.86220088 7.551981e-03
## 12992   1 0.0026385224 2.86220088 7.551981e-03
## 12993   1 0.0026385224 2.86220088 7.551981e-03
## 12994   1 0.0026385224 2.86220088 7.551981e-03
## 12995   1 0.0026385224 2.86220088 7.551981e-03
## 12996   1 0.0026385224 2.86220088 7.551981e-03
## 12997   1 0.0026385224 2.86220088 7.551981e-03
## 12998   1 0.0026385224 2.86220088 7.551981e-03
## 12999   3 0.0055658627 1.35812348 7.559129e-03
## 13000  10 0.0065316786 1.15745279 7.560110e-03
## 13001   2 0.0021276596 3.55534806 7.564570e-03
## 13002   2 0.0021276596 3.55534806 7.564570e-03
## 13003   2 0.0021276596 3.55534806 7.564570e-03
## 13004   2 0.0021276596 3.55534806 7.564570e-03
## 13005   2 0.0021276596 3.55534806 7.564570e-03
## 13006   2 0.0055865922 1.35812348 7.587282e-03
## 13007   2 0.0026560425 2.86220088 7.602127e-03
## 13008   2 0.0026560425 2.86220088 7.602127e-03
## 13009   2 0.0026560425 2.86220088 7.602127e-03
## 13010   2 0.0026560425 2.86220088 7.602127e-03
## 13011   2 0.0026560425 2.86220088 7.602127e-03
## 13012   2 0.0026560425 2.86220088 7.602127e-03
## 13013   2 0.0047281324 1.60943791 7.609636e-03
## 13014   3 0.0031023785 2.45673577 7.621724e-03
## 13015   3 0.0031023785 2.45673577 7.621724e-03
## 13016   3 0.0031023785 2.45673577 7.621724e-03
## 13017   2 0.0026666667 2.86220088 7.632536e-03
## 13018   2 0.0026666667 2.86220088 7.632536e-03
## 13019   2 0.0026666667 2.86220088 7.632536e-03
## 13020   2 0.0026666667 2.86220088 7.632536e-03
## 13021   2 0.0026666667 2.86220088 7.632536e-03
## 13022  17 0.0105721393 0.72213472 7.634509e-03
## 13023   7 0.0077092511 0.99039870 7.635232e-03
## 13024   1 0.0060975610 1.25276297 7.638799e-03
## 13025   1 0.0060975610 1.25276297 7.638799e-03
## 13026   1 0.0060975610 1.25276297 7.638799e-03
## 13027   1 0.0060975610 1.25276297 7.638799e-03
## 13028  15 0.0105932203 0.72213472 7.649732e-03
## 13029   3 0.0035294118 2.16905370 7.655484e-03
## 13030   3 0.0035294118 2.16905370 7.655484e-03
## 13031   3 0.0035294118 2.16905370 7.655484e-03
## 13032   3 0.0035294118 2.16905370 7.655484e-03
## 13033   5 0.0035310734 2.16905370 7.659088e-03
## 13034   5 0.0035310734 2.16905370 7.659088e-03
## 13035   8 0.0106241700 0.72213472 7.672082e-03
## 13036   8 0.0056497175 1.35812348 7.673014e-03
## 13037   7 0.0165484634 0.46430561 7.683544e-03
## 13038   8 0.0052253429 1.47590652 7.712118e-03
## 13039   1 0.0026954178 2.86220088 7.714827e-03
## 13040   1 0.0026954178 2.86220088 7.714827e-03
## 13041   1 0.0026954178 2.86220088 7.714827e-03
## 13042   1 0.0026954178 2.86220088 7.714827e-03
## 13043   1 0.0026954178 2.86220088 7.714827e-03
## 13044   1 0.0026954178 2.86220088 7.714827e-03
## 13045   1 0.0026954178 2.86220088 7.714827e-03
## 13046   1 0.0026954178 2.86220088 7.714827e-03
## 13047   1 0.0026954178 2.86220088 7.714827e-03
## 13048   1 0.0026954178 2.86220088 7.714827e-03
## 13049   1 0.0026954178 2.86220088 7.714827e-03
## 13050   1 0.0026954178 2.86220088 7.714827e-03
## 13051   1 0.0026954178 2.86220088 7.714827e-03
## 13052   1 0.0026954178 2.86220088 7.714827e-03
## 13053   1 0.0026954178 2.86220088 7.714827e-03
## 13054   1 0.0026954178 2.86220088 7.714827e-03
## 13055   1 0.0026954178 2.86220088 7.714827e-03
## 13056   1 0.0026954178 2.86220088 7.714827e-03
## 13057   5 0.0031446541 2.45673577 7.725584e-03
## 13058   5 0.0031446541 2.45673577 7.725584e-03
## 13059   4 0.0116279070 0.66497630 7.732283e-03
## 13060   2 0.0043859649 1.76358859 7.735038e-03
## 13061  14 0.0091443501 0.84729786 7.747988e-03
## 13062   3 0.0039840637 1.94591015 7.752630e-03
## 13063   2 0.0035778175 2.16905370 7.760478e-03
## 13064   2 0.0035778175 2.16905370 7.760478e-03
## 13065   2 0.0035778175 2.16905370 7.760478e-03
## 13066   2 0.0035778175 2.16905370 7.760478e-03
## 13067   4 0.0107816712 0.72213472 7.785819e-03
## 13068   2 0.0052770449 1.47590652 7.788425e-03
## 13069   1 0.0021929825 3.55534806 7.796816e-03
## 13070   1 0.0021929825 3.55534806 7.796816e-03
## 13071   1 0.0021929825 3.55534806 7.796816e-03
## 13072   1 0.0021929825 3.55534806 7.796816e-03
## 13073   1 0.0021929825 3.55534806 7.796816e-03
## 13074   1 0.0021929825 3.55534806 7.796816e-03
## 13075   1 0.0021929825 3.55534806 7.796816e-03
## 13076   1 0.0021929825 3.55534806 7.796816e-03
## 13077   1 0.0021929825 3.55534806 7.796816e-03
## 13078   1 0.0021929825 3.55534806 7.796816e-03
## 13079   1 0.0021929825 3.55534806 7.796816e-03
## 13080   1 0.0021929825 3.55534806 7.796816e-03
## 13081   1 0.0021929825 3.55534806 7.796816e-03
## 13082   1 0.0021929825 3.55534806 7.796816e-03
## 13083   1 0.0021929825 3.55534806 7.796816e-03
## 13084   1 0.0021929825 3.55534806 7.796816e-03
## 13085   1 0.0021929825 3.55534806 7.796816e-03
## 13086   1 0.0021929825 3.55534806 7.796816e-03
## 13087   1 0.0021929825 3.55534806 7.796816e-03
## 13088   1 0.0021929825 3.55534806 7.796816e-03
## 13089   1 0.0021929825 3.55534806 7.796816e-03
## 13090   1 0.0021929825 3.55534806 7.796816e-03
## 13091   1 0.0021929825 3.55534806 7.796816e-03
## 13092   1 0.0021929825 3.55534806 7.796816e-03
## 13093   1 0.0021929825 3.55534806 7.796816e-03
## 13094   1 0.0021929825 3.55534806 7.796816e-03
## 13095   1 0.0021929825 3.55534806 7.796816e-03
## 13096   1 0.0021929825 3.55534806 7.796816e-03
## 13097   1 0.0021929825 3.55534806 7.796816e-03
## 13098   1 0.0021929825 3.55534806 7.796816e-03
## 13099   1 0.0021929825 3.55534806 7.796816e-03
## 13100   1 0.0021929825 3.55534806 7.796816e-03
## 13101   1 0.0021929825 3.55534806 7.796816e-03
## 13102   1 0.0021929825 3.55534806 7.796816e-03
## 13103   1 0.0021929825 3.55534806 7.796816e-03
## 13104   1 0.0021929825 3.55534806 7.796816e-03
## 13105   1 0.0021929825 3.55534806 7.796816e-03
## 13106   1 0.0021929825 3.55534806 7.796816e-03
## 13107   1 0.0021929825 3.55534806 7.796816e-03
## 13108   1 0.0021929825 3.55534806 7.796816e-03
## 13109   1 0.0021929825 3.55534806 7.796816e-03
## 13110   1 0.0021929825 3.55534806 7.796816e-03
## 13111   1 0.0021929825 3.55534806 7.796816e-03
## 13112   1 0.0021929825 3.55534806 7.796816e-03
## 13113   1 0.0021929825 3.55534806 7.796816e-03
## 13114   1 0.0021929825 3.55534806 7.796816e-03
## 13115   1 0.0021929825 3.55534806 7.796816e-03
## 13116   1 0.0021929825 3.55534806 7.796816e-03
## 13117   1 0.0021929825 3.55534806 7.796816e-03
## 13118   1 0.0021929825 3.55534806 7.796816e-03
## 13119   1 0.0021929825 3.55534806 7.796816e-03
## 13120   1 0.0021929825 3.55534806 7.796816e-03
## 13121   1 0.0021929825 3.55534806 7.796816e-03
## 13122   1 0.0021929825 3.55534806 7.796816e-03
## 13123   1 0.0021929825 3.55534806 7.796816e-03
## 13124   1 0.0021929825 3.55534806 7.796816e-03
## 13125   1 0.0021929825 3.55534806 7.796816e-03
## 13126   1 0.0021929825 3.55534806 7.796816e-03
## 13127   1 0.0021929825 3.55534806 7.796816e-03
## 13128   1 0.0021929825 3.55534806 7.796816e-03
## 13129   1 0.0021929825 3.55534806 7.796816e-03
## 13130   1 0.0021929825 3.55534806 7.796816e-03
## 13131   1 0.0021929825 3.55534806 7.796816e-03
## 13132   1 0.0021929825 3.55534806 7.796816e-03
## 13133   4 0.0022014309 3.55534806 7.826853e-03
## 13134   2 0.0022026432 3.55534806 7.831163e-03
## 13135   2 0.0022026432 3.55534806 7.831163e-03
## 13136   2 0.0022026432 3.55534806 7.831163e-03
## 13137   2 0.0022026432 3.55534806 7.831163e-03
## 13138   2 0.0022026432 3.55534806 7.831163e-03
## 13139   2 0.0022026432 3.55534806 7.831163e-03
## 13140   2 0.0022026432 3.55534806 7.831163e-03
## 13141   2 0.0022026432 3.55534806 7.831163e-03
## 13142   2 0.0022026432 3.55534806 7.831163e-03
## 13143   2 0.0022026432 3.55534806 7.831163e-03
## 13144   2 0.0022026432 3.55534806 7.831163e-03
## 13145   2 0.0022026432 3.55534806 7.831163e-03
## 13146   2 0.0022026432 3.55534806 7.831163e-03
## 13147   2 0.0022026432 3.55534806 7.831163e-03
## 13148   2 0.0022026432 3.55534806 7.831163e-03
## 13149   2 0.0022026432 3.55534806 7.831163e-03
## 13150   2 0.0022026432 3.55534806 7.831163e-03
## 13151   2 0.0022026432 3.55534806 7.831163e-03
## 13152   2 0.0022026432 3.55534806 7.831163e-03
## 13153   2 0.0022026432 3.55534806 7.831163e-03
## 13154   2 0.0022026432 3.55534806 7.831163e-03
## 13155   2 0.0022026432 3.55534806 7.831163e-03
## 13156   3 0.0048701299 1.60943791 7.838172e-03
## 13157   3 0.0079155673 0.99039870 7.839568e-03
## 13158   3 0.0031914894 2.45673577 7.840646e-03
## 13159   3 0.0031914894 2.45673577 7.840646e-03
## 13160  19 0.0118159204 0.66497630 7.857307e-03
## 13161   5 0.0027517887 2.86220088 7.876172e-03
## 13162   4 0.0040485830 1.94591015 7.878179e-03
## 13163   2 0.0027548209 2.86220088 7.884851e-03
## 13164   2 0.0027548209 2.86220088 7.884851e-03
## 13165   2 0.0027548209 2.86220088 7.884851e-03
## 13166   2 0.0027548209 2.86220088 7.884851e-03
## 13167   2 0.0027548209 2.86220088 7.884851e-03
## 13168   2 0.0027548209 2.86220088 7.884851e-03
## 13169   2 0.0027548209 2.86220088 7.884851e-03
## 13170   2 0.0027548209 2.86220088 7.884851e-03
## 13171   2 0.0027548209 2.86220088 7.884851e-03
## 13172   2 0.0027548209 2.86220088 7.884851e-03
## 13173   2 0.0027548209 2.86220088 7.884851e-03
## 13174   2 0.0027548209 2.86220088 7.884851e-03
## 13175   2 0.0027548209 2.86220088 7.884851e-03
## 13176   2 0.0027548209 2.86220088 7.884851e-03
## 13177   2 0.0027548209 2.86220088 7.884851e-03
## 13178   2 0.0027548209 2.86220088 7.884851e-03
## 13179   3 0.0036363636 2.16905370 7.887468e-03
## 13180   3 0.0036363636 2.16905370 7.887468e-03
## 13181   3 0.0073710074 1.07044141 7.890232e-03
## 13182   3 0.0073710074 1.07044141 7.890232e-03
## 13183   2 0.0058139535 1.35812348 7.896067e-03
## 13184   2 0.0058139535 1.35812348 7.896067e-03
## 13185   2 0.0058139535 1.35812348 7.896067e-03
## 13186   2 0.0058139535 1.35812348 7.896067e-03
## 13187  12 0.0141176471 0.55961579 7.900458e-03
## 13188   6 0.0141843972 0.55961579 7.937813e-03
## 13189   4 0.0119402985 0.66497630 7.940016e-03
## 13190   7 0.0049435028 1.60943791 7.956261e-03
## 13191   2 0.0032467532 2.45673577 7.976415e-03
## 13192   2 0.0032467532 2.45673577 7.976415e-03
## 13193   2 0.0032467532 2.45673577 7.976415e-03
## 13194   2 0.0032467532 2.45673577 7.976415e-03
## 13195   2 0.0032467532 2.45673577 7.976415e-03
## 13196  14 0.0087064677 0.91629073 7.977656e-03
## 13197   2 0.0022471910 3.55534806 7.989546e-03
## 13198   2 0.0022471910 3.55534806 7.989546e-03
## 13199   2 0.0022471910 3.55534806 7.989546e-03
## 13200   2 0.0022471910 3.55534806 7.989546e-03
## 13201   2 0.0022471910 3.55534806 7.989546e-03
## 13202   2 0.0022471910 3.55534806 7.989546e-03
## 13203   2 0.0022471910 3.55534806 7.989546e-03
## 13204   2 0.0022471910 3.55534806 7.989546e-03
## 13205   2 0.0022471910 3.55534806 7.989546e-03
## 13206   2 0.0022471910 3.55534806 7.989546e-03
## 13207   2 0.0022471910 3.55534806 7.989546e-03
## 13208   2 0.0022471910 3.55534806 7.989546e-03
## 13209   2 0.0022471910 3.55534806 7.989546e-03
## 13210   2 0.0022471910 3.55534806 7.989546e-03
## 13211   2 0.0022471910 3.55534806 7.989546e-03
## 13212   2 0.0022471910 3.55534806 7.989546e-03
## 13213   3 0.0087209302 0.91629073 7.990908e-03
## 13214   3 0.0087209302 0.91629073 7.990908e-03
## 13215   1 0.0027932961 2.86220088 7.994975e-03
## 13216   1 0.0027932961 2.86220088 7.994975e-03
## 13217   1 0.0027932961 2.86220088 7.994975e-03
## 13218   1 0.0027932961 2.86220088 7.994975e-03
## 13219   1 0.0027932961 2.86220088 7.994975e-03
## 13220   1 0.0027932961 2.86220088 7.994975e-03
## 13221   1 0.0027932961 2.86220088 7.994975e-03
## 13222   3 0.0074812968 1.07044141 8.008290e-03
## 13223   2 0.0069204152 1.15745279 8.010054e-03
## 13224  13 0.0143171806 0.55961579 8.012120e-03
## 13225   1 0.0045454545 1.76358859 8.016312e-03
## 13226   1 0.0045454545 1.76358859 8.016312e-03
## 13227   5 0.0032658393 2.45673577 8.023304e-03
## 13228   5 0.0032658393 2.45673577 8.023304e-03
## 13229   2 0.0049875312 1.60943791 8.027122e-03
## 13230   3 0.0041322314 1.94591015 8.040951e-03
## 13231   2 0.0037105751 2.16905370 8.048437e-03
## 13232   7 0.0045721750 1.76358859 8.063436e-03
## 13233  14 0.0088050314 0.91629073 8.067969e-03
## 13234   4 0.0028248588 2.86220088 8.085313e-03
## 13235   4 0.0028248588 2.86220088 8.085313e-03
## 13236   4 0.0028248588 2.86220088 8.085313e-03
## 13237   4 0.0028248588 2.86220088 8.085313e-03
## 13238   8 0.0050314465 1.60943791 8.097801e-03
## 13239   2 0.0022779043 3.55534806 8.098743e-03
## 13240   2 0.0022779043 3.55534806 8.098743e-03
## 13241   2 0.0022779043 3.55534806 8.098743e-03
## 13242   2 0.0022779043 3.55534806 8.098743e-03
## 13243   2 0.0022779043 3.55534806 8.098743e-03
## 13244   2 0.0022779043 3.55534806 8.098743e-03
## 13245   2 0.0022779043 3.55534806 8.098743e-03
## 13246   2 0.0022779043 3.55534806 8.098743e-03
## 13247   2 0.0022779043 3.55534806 8.098743e-03
## 13248   2 0.0022779043 3.55534806 8.098743e-03
## 13249   2 0.0022779043 3.55534806 8.098743e-03
## 13250   2 0.0022779043 3.55534806 8.098743e-03
## 13251   2 0.0059701493 1.35812348 8.108200e-03
## 13252   2 0.0059701493 1.35812348 8.108200e-03
## 13253   2 0.0059701493 1.35812348 8.108200e-03
## 13254   2 0.0059701493 1.35812348 8.108200e-03
## 13255   6 0.0033021464 2.45673577 8.112501e-03
## 13256   3 0.0033039648 2.45673577 8.116968e-03
## 13257   3 0.0033039648 2.45673577 8.116968e-03
## 13258   3 0.0033039648 2.45673577 8.116968e-03
## 13259   5 0.0055066079 1.47590652 8.127239e-03
## 13260   4 0.0064935065 1.25276297 8.134824e-03
## 13261   7 0.0059931507 1.35812348 8.139439e-03
## 13262   7 0.0113636364 0.72213472 8.206076e-03
## 13263   3 0.0070921986 1.15745279 8.208885e-03
## 13264   3 0.0055658627 1.47590652 8.214693e-03
## 13265   5 0.0060606061 1.35812348 8.231051e-03
## 13266   2 0.0055865922 1.47590652 8.245288e-03
## 13267   7 0.0077092511 1.07044141 8.252302e-03
## 13268   3 0.0051369863 1.60943791 8.267661e-03
## 13269   4 0.0042553191 1.94591015 8.280469e-03
## 13270   3 0.0033707865 2.45673577 8.281132e-03
## 13271   1 0.0060975610 1.35812348 8.281241e-03
## 13272   1 0.0060975610 1.35812348 8.281241e-03
## 13273   5 0.0056179775 1.47590652 8.291610e-03
## 13274   5 0.0056179775 1.47590652 8.291610e-03
## 13275   5 0.0056179775 1.47590652 8.291610e-03
## 13276   4 0.0047058824 1.76358859 8.299240e-03
## 13277   3 0.0083798883 0.99039870 8.299430e-03
## 13278   1 0.0029069767 2.86220088 8.320351e-03
## 13279   1 0.0029069767 2.86220088 8.320351e-03
## 13280   1 0.0029069767 2.86220088 8.320351e-03
## 13281   1 0.0029069767 2.86220088 8.320351e-03
## 13282   1 0.0029069767 2.86220088 8.320351e-03
## 13283   1 0.0029069767 2.86220088 8.320351e-03
## 13284   1 0.0029069767 2.86220088 8.320351e-03
## 13285   1 0.0029069767 2.86220088 8.320351e-03
## 13286   1 0.0029069767 2.86220088 8.320351e-03
## 13287   1 0.0029069767 2.86220088 8.320351e-03
## 13288   1 0.0029069767 2.86220088 8.320351e-03
## 13289   4 0.0098280098 0.84729786 8.327252e-03
## 13290   2 0.0047281324 1.76358859 8.338480e-03
## 13291   2 0.0047281324 1.76358859 8.338480e-03
## 13292   8 0.0106666667 0.78275934 8.349433e-03
## 13293   2 0.0023529412 3.55534806 8.365525e-03
## 13294   2 0.0023529412 3.55534806 8.365525e-03
## 13295   2 0.0023529412 3.55534806 8.365525e-03
## 13296   2 0.0023529412 3.55534806 8.365525e-03
## 13297   2 0.0023529412 3.55534806 8.365525e-03
## 13298   2 0.0023529412 3.55534806 8.365525e-03
## 13299   2 0.0023529412 3.55534806 8.365525e-03
## 13300   2 0.0023529412 3.55534806 8.365525e-03
## 13301   2 0.0023529412 3.55534806 8.365525e-03
## 13302   2 0.0023529412 3.55534806 8.365525e-03
## 13303   2 0.0023529412 3.55534806 8.365525e-03
## 13304   2 0.0023529412 3.55534806 8.365525e-03
## 13305   2 0.0023529412 3.55534806 8.365525e-03
## 13306   2 0.0023529412 3.55534806 8.365525e-03
## 13307   2 0.0023529412 3.55534806 8.365525e-03
## 13308   2 0.0023529412 3.55534806 8.365525e-03
## 13309   2 0.0023529412 3.55534806 8.365525e-03
## 13310   2 0.0023529412 3.55534806 8.365525e-03
## 13311   2 0.0023529412 3.55534806 8.365525e-03
## 13312   2 0.0023529412 3.55534806 8.365525e-03
## 13313   2 0.0023529412 3.55534806 8.365525e-03
## 13314   8 0.0199501247 0.41985385 8.376137e-03
## 13315   1 0.0023640662 3.55534806 8.405078e-03
## 13316   1 0.0023640662 3.55534806 8.405078e-03
## 13317   1 0.0023640662 3.55534806 8.405078e-03
## 13318   1 0.0023640662 3.55534806 8.405078e-03
## 13319   1 0.0023640662 3.55534806 8.405078e-03
## 13320   1 0.0023640662 3.55534806 8.405078e-03
## 13321   1 0.0023640662 3.55534806 8.405078e-03
## 13322   1 0.0023640662 3.55534806 8.405078e-03
## 13323   1 0.0023640662 3.55534806 8.405078e-03
## 13324   1 0.0023640662 3.55534806 8.405078e-03
## 13325   1 0.0023640662 3.55534806 8.405078e-03
## 13326   1 0.0023640662 3.55534806 8.405078e-03
## 13327   1 0.0023640662 3.55534806 8.405078e-03
## 13328   1 0.0023640662 3.55534806 8.405078e-03
## 13329   1 0.0023640662 3.55534806 8.405078e-03
## 13330   1 0.0023640662 3.55534806 8.405078e-03
## 13331   1 0.0023640662 3.55534806 8.405078e-03
## 13332   1 0.0023640662 3.55534806 8.405078e-03
## 13333   1 0.0023640662 3.55534806 8.405078e-03
## 13334   1 0.0023640662 3.55534806 8.405078e-03
## 13335   1 0.0023640662 3.55534806 8.405078e-03
## 13336   1 0.0023640662 3.55534806 8.405078e-03
## 13337   1 0.0023640662 3.55534806 8.405078e-03
## 13338   1 0.0023640662 3.55534806 8.405078e-03
## 13339   1 0.0023640662 3.55534806 8.405078e-03
## 13340   1 0.0023640662 3.55534806 8.405078e-03
## 13341   1 0.0023640662 3.55534806 8.405078e-03
## 13342   1 0.0023640662 3.55534806 8.405078e-03
## 13343   1 0.0023640662 3.55534806 8.405078e-03
## 13344   1 0.0023640662 3.55534806 8.405078e-03
## 13345   1 0.0023640662 3.55534806 8.405078e-03
## 13346   1 0.0023640662 3.55534806 8.405078e-03
## 13347   1 0.0023640662 3.55534806 8.405078e-03
## 13348   1 0.0023640662 3.55534806 8.405078e-03
## 13349   1 0.0023640662 3.55534806 8.405078e-03
## 13350   1 0.0023640662 3.55534806 8.405078e-03
## 13351   1 0.0023640662 3.55534806 8.405078e-03
## 13352   1 0.0023640662 3.55534806 8.405078e-03
## 13353   1 0.0023640662 3.55534806 8.405078e-03
## 13354   1 0.0023640662 3.55534806 8.405078e-03
## 13355   1 0.0023640662 3.55534806 8.405078e-03
## 13356   4 0.0034246575 2.45673577 8.413479e-03
## 13357   2 0.0034246575 2.45673577 8.413479e-03
## 13358   1 0.0034246575 2.45673577 8.413479e-03
## 13359   1 0.0034246575 2.45673577 8.413479e-03
## 13360   1 0.0034246575 2.45673577 8.413479e-03
## 13361   1 0.0034246575 2.45673577 8.413479e-03
## 13362   1 0.0034246575 2.45673577 8.413479e-03
## 13363   1 0.0034246575 2.45673577 8.413479e-03
## 13364   1 0.0034246575 2.45673577 8.413479e-03
## 13365   1 0.0034246575 2.45673577 8.413479e-03
## 13366   6 0.0067415730 1.25276297 8.445593e-03
## 13367   7 0.0043532338 1.94591015 8.471002e-03
## 13368   7 0.0043532338 1.94591015 8.471002e-03
## 13369   6 0.0039190072 2.16905370 8.500537e-03
## 13370   1 0.0034602076 2.45673577 8.500816e-03
## 13371   1 0.0034602076 2.45673577 8.500816e-03
## 13372   1 0.0034602076 2.45673577 8.500816e-03
## 13373   1 0.0034602076 2.45673577 8.500816e-03
## 13374   1 0.0034602076 2.45673577 8.500816e-03
## 13375   1 0.0034602076 2.45673577 8.500816e-03
## 13376   1 0.0034602076 2.45673577 8.500816e-03
## 13377   1 0.0034602076 2.45673577 8.500816e-03
## 13378   1 0.0034602076 2.45673577 8.500816e-03
## 13379   1 0.0034602076 2.45673577 8.500816e-03
## 13380   1 0.0034602076 2.45673577 8.500816e-03
## 13381   1 0.0034602076 2.45673577 8.500816e-03
## 13382   3 0.0073710074 1.15745279 8.531593e-03
## 13383   3 0.0073710074 1.15745279 8.531593e-03
## 13384   5 0.0139664804 0.61090908 8.532250e-03
## 13385   2 0.0043859649 1.94591015 8.534694e-03
## 13386  15 0.0128424658 0.66497630 8.539935e-03
## 13387   1 0.0029850746 2.86220088 8.543883e-03
## 13388   1 0.0029850746 2.86220088 8.543883e-03
## 13389   1 0.0029850746 2.86220088 8.543883e-03
## 13390   1 0.0029850746 2.86220088 8.543883e-03
## 13391   1 0.0029850746 2.86220088 8.543883e-03
## 13392   1 0.0029850746 2.86220088 8.543883e-03
## 13393   1 0.0029850746 2.86220088 8.543883e-03
## 13394   1 0.0029850746 2.86220088 8.543883e-03
## 13395   1 0.0029850746 2.86220088 8.543883e-03
## 13396   1 0.0029850746 2.86220088 8.543883e-03
## 13397   1 0.0029850746 2.86220088 8.543883e-03
## 13398   1 0.0029850746 2.86220088 8.543883e-03
## 13399   1 0.0029850746 2.86220088 8.543883e-03
## 13400   1 0.0029850746 2.86220088 8.543883e-03
## 13401   1 0.0029850746 2.86220088 8.543883e-03
## 13402   1 0.0029850746 2.86220088 8.543883e-03
## 13403   1 0.0029850746 2.86220088 8.543883e-03
## 13404   1 0.0029850746 2.86220088 8.543883e-03
## 13405   1 0.0029850746 2.86220088 8.543883e-03
## 13406   6 0.0068337130 1.25276297 8.561023e-03
## 13407   6 0.0068337130 1.25276297 8.561023e-03
## 13408   7 0.0044025157 1.94591015 8.566900e-03
## 13409   4 0.0068493151 1.25276297 8.580568e-03
## 13410   2 0.0068493151 1.25276297 8.580568e-03
## 13411   2 0.0068493151 1.25276297 8.580568e-03
## 13412   2 0.0068493151 1.25276297 8.580568e-03
## 13413   2 0.0058139535 1.47590652 8.580852e-03
## 13414   2 0.0058139535 1.47590652 8.580852e-03
## 13415   4 0.0053333333 1.60943791 8.583669e-03
## 13416   2 0.0024242424 3.55534806 8.619026e-03
## 13417   2 0.0024242424 3.55534806 8.619026e-03
## 13418   2 0.0024242424 3.55534806 8.619026e-03
## 13419   2 0.0024242424 3.55534806 8.619026e-03
## 13420   2 0.0024242424 3.55534806 8.619026e-03
## 13421   2 0.0024242424 3.55534806 8.619026e-03
## 13422   2 0.0024242424 3.55534806 8.619026e-03
## 13423   2 0.0024242424 3.55534806 8.619026e-03
## 13424   2 0.0024242424 3.55534806 8.619026e-03
## 13425   2 0.0024242424 3.55534806 8.619026e-03
## 13426   2 0.0024242424 3.55534806 8.619026e-03
## 13427   2 0.0024242424 3.55534806 8.619026e-03
## 13428   2 0.0024242424 3.55534806 8.619026e-03
## 13429   2 0.0024242424 3.55534806 8.619026e-03
## 13430   5 0.0068870523 1.25276297 8.627844e-03
## 13431   3 0.0087209302 0.99039870 8.637198e-03
## 13432   3 0.0039840637 2.16905370 8.641648e-03
## 13433   2 0.0049140049 1.76358859 8.666283e-03
## 13434   2 0.0049140049 1.76358859 8.666283e-03
## 13435   2 0.0049140049 1.76358859 8.666283e-03
## 13436   6 0.0063829787 1.35812348 8.668873e-03
## 13437   2 0.0069204152 1.25276297 8.669640e-03
## 13438   2 0.0069204152 1.25276297 8.669640e-03
## 13439   2 0.0069204152 1.25276297 8.669640e-03
## 13440   3 0.0035294118 2.45673577 8.670832e-03
## 13441   3 0.0035294118 2.45673577 8.670832e-03
## 13442   3 0.0035294118 2.45673577 8.670832e-03
## 13443   3 0.0035294118 2.45673577 8.670832e-03
## 13444   9 0.0058785108 1.47590652 8.676132e-03
## 13445   2 0.0053908356 1.60943791 8.676215e-03
## 13446   2 0.0053908356 1.60943791 8.676215e-03
## 13447   5 0.0058823529 1.47590652 8.681803e-03
## 13448   4 0.0087719298 0.99039870 8.687708e-03
## 13449   3 0.0030364372 2.86220088 8.690893e-03
## 13450   3 0.0030364372 2.86220088 8.690893e-03
## 13451   3 0.0030364372 2.86220088 8.690893e-03
## 13452   6 0.0102739726 0.84729786 8.705115e-03
## 13453   6 0.0030456853 2.86220088 8.717363e-03
## 13454   7 0.0035532995 2.45673577 8.729518e-03
## 13455   1 0.0024570025 3.55534806 8.735499e-03
## 13456   1 0.0024570025 3.55534806 8.735499e-03
## 13457   1 0.0024570025 3.55534806 8.735499e-03
## 13458   1 0.0024570025 3.55534806 8.735499e-03
## 13459   1 0.0024570025 3.55534806 8.735499e-03
## 13460   1 0.0024570025 3.55534806 8.735499e-03
## 13461   1 0.0024570025 3.55534806 8.735499e-03
## 13462   1 0.0024570025 3.55534806 8.735499e-03
## 13463   1 0.0024570025 3.55534806 8.735499e-03
## 13464   1 0.0024570025 3.55534806 8.735499e-03
## 13465   1 0.0024570025 3.55534806 8.735499e-03
## 13466   1 0.0024570025 3.55534806 8.735499e-03
## 13467   1 0.0024570025 3.55534806 8.735499e-03
## 13468   1 0.0024570025 3.55534806 8.735499e-03
## 13469   1 0.0024570025 3.55534806 8.735499e-03
## 13470   1 0.0024570025 3.55534806 8.735499e-03
## 13471   1 0.0024570025 3.55534806 8.735499e-03
## 13472   1 0.0024570025 3.55534806 8.735499e-03
## 13473   1 0.0024570025 3.55534806 8.735499e-03
## 13474   1 0.0024570025 3.55534806 8.735499e-03
## 13475   1 0.0024570025 3.55534806 8.735499e-03
## 13476   1 0.0024570025 3.55534806 8.735499e-03
## 13477   1 0.0024570025 3.55534806 8.735499e-03
## 13478   1 0.0024570025 3.55534806 8.735499e-03
## 13479   1 0.0024570025 3.55534806 8.735499e-03
## 13480   1 0.0024570025 3.55534806 8.735499e-03
## 13481   1 0.0024570025 3.55534806 8.735499e-03
## 13482   1 0.0024570025 3.55534806 8.735499e-03
## 13483   1 0.0024570025 3.55534806 8.735499e-03
## 13484   1 0.0024570025 3.55534806 8.735499e-03
## 13485   1 0.0024570025 3.55534806 8.735499e-03
## 13486   1 0.0024570025 3.55534806 8.735499e-03
## 13487   1 0.0024570025 3.55534806 8.735499e-03
## 13488   1 0.0024570025 3.55534806 8.735499e-03
## 13489   1 0.0024570025 3.55534806 8.735499e-03
## 13490   1 0.0024570025 3.55534806 8.735499e-03
## 13491   1 0.0024570025 3.55534806 8.735499e-03
## 13492   1 0.0024570025 3.55534806 8.735499e-03
## 13493   1 0.0024570025 3.55534806 8.735499e-03
## 13494   1 0.0024570025 3.55534806 8.735499e-03
## 13495   1 0.0024570025 3.55534806 8.735499e-03
## 13496   1 0.0024570025 3.55534806 8.735499e-03
## 13497   1 0.0024570025 3.55534806 8.735499e-03
## 13498   1 0.0024570025 3.55534806 8.735499e-03
## 13499   1 0.0024570025 3.55534806 8.735499e-03
## 13500   1 0.0024570025 3.55534806 8.735499e-03
## 13501   1 0.0024570025 3.55534806 8.735499e-03
## 13502   1 0.0024570025 3.55534806 8.735499e-03
## 13503   1 0.0024570025 3.55534806 8.735499e-03
## 13504   1 0.0024570025 3.55534806 8.735499e-03
## 13505   1 0.0024570025 3.55534806 8.735499e-03
## 13506   1 0.0024570025 3.55534806 8.735499e-03
## 13507   1 0.0024570025 3.55534806 8.735499e-03
## 13508   1 0.0024570025 3.55534806 8.735499e-03
## 13509   1 0.0024570025 3.55534806 8.735499e-03
## 13510   1 0.0024570025 3.55534806 8.735499e-03
## 13511   1 0.0024570025 3.55534806 8.735499e-03
## 13512   1 0.0024570025 3.55534806 8.735499e-03
## 13513   1 0.0024570025 3.55534806 8.735499e-03
## 13514   1 0.0024570025 3.55534806 8.735499e-03
## 13515   1 0.0024570025 3.55534806 8.735499e-03
## 13516   1 0.0024570025 3.55534806 8.735499e-03
## 13517   1 0.0024570025 3.55534806 8.735499e-03
## 13518   9 0.0095744681 0.91629073 8.772996e-03
## 13519   4 0.0040485830 2.16905370 8.781594e-03
## 13520   4 0.0040485830 2.16905370 8.781594e-03
## 13521   4 0.0040485830 2.16905370 8.781594e-03
## 13522   2 0.0035778175 2.45673577 8.789752e-03
## 13523   2 0.0035778175 2.45673577 8.789752e-03
## 13524   2 0.0035778175 2.45673577 8.789752e-03
## 13525   2 0.0035778175 2.45673577 8.789752e-03
## 13526   2 0.0035778175 2.45673577 8.789752e-03
## 13527   2 0.0035778175 2.45673577 8.789752e-03
## 13528   2 0.0035778175 2.45673577 8.789752e-03
## 13529   2 0.0035778175 2.45673577 8.789752e-03
## 13530   2 0.0049875312 1.76358859 8.795953e-03
## 13531   2 0.0049875312 1.76358859 8.795953e-03
## 13532   2 0.0049875312 1.76358859 8.795953e-03
## 13533   2 0.0049875312 1.76358859 8.795953e-03
## 13534   2 0.0121951220 0.72213472 8.806521e-03
## 13535   2 0.0121951220 0.72213472 8.806521e-03
## 13536   2 0.0059701493 1.47590652 8.811382e-03
## 13537   4 0.0024875622 3.55534806 8.844149e-03
## 13538   4 0.0024875622 3.55534806 8.844149e-03
## 13539   1 0.0045454545 1.94591015 8.845046e-03
## 13540   1 0.0045454545 1.94591015 8.845046e-03
## 13541   1 0.0045454545 1.94591015 8.845046e-03
## 13542   1 0.0045454545 1.94591015 8.845046e-03
## 13543   7 0.0059931507 1.47590652 8.845330e-03
## 13544   6 0.0082644628 1.07044141 8.846623e-03
## 13545  10 0.0070621469 1.25276297 8.847196e-03
## 13546   1 0.0024937656 3.55534806 8.866205e-03
## 13547   1 0.0024937656 3.55534806 8.866205e-03
## 13548   1 0.0024937656 3.55534806 8.866205e-03
## 13549   1 0.0024937656 3.55534806 8.866205e-03
## 13550   1 0.0024937656 3.55534806 8.866205e-03
## 13551   1 0.0024937656 3.55534806 8.866205e-03
## 13552   1 0.0024937656 3.55534806 8.866205e-03
## 13553   1 0.0024937656 3.55534806 8.866205e-03
## 13554   1 0.0024937656 3.55534806 8.866205e-03
## 13555   1 0.0024937656 3.55534806 8.866205e-03
## 13556   1 0.0024937656 3.55534806 8.866205e-03
## 13557   1 0.0024937656 3.55534806 8.866205e-03
## 13558   1 0.0024937656 3.55534806 8.866205e-03
## 13559   1 0.0024937656 3.55534806 8.866205e-03
## 13560   1 0.0024937656 3.55534806 8.866205e-03
## 13561   1 0.0024937656 3.55534806 8.866205e-03
## 13562   1 0.0024937656 3.55534806 8.866205e-03
## 13563   1 0.0024937656 3.55534806 8.866205e-03
## 13564   1 0.0024937656 3.55534806 8.866205e-03
## 13565   1 0.0024937656 3.55534806 8.866205e-03
## 13566   1 0.0024937656 3.55534806 8.866205e-03
## 13567   1 0.0024937656 3.55534806 8.866205e-03
## 13568   1 0.0024937656 3.55534806 8.866205e-03
## 13569   4 0.0055096419 1.60943791 8.867427e-03
## 13570  10 0.0065316786 1.35812348 8.870826e-03
## 13571   3 0.0031023785 2.86220088 8.879630e-03
## 13572   5 0.0031094527 2.86220088 8.899878e-03
## 13573   3 0.0036363636 2.45673577 8.933585e-03
## 13574   3 0.0036363636 2.45673577 8.933585e-03
## 13575   4 0.0105540897 0.84729786 8.942458e-03
## 13576   4 0.0025157233 3.55534806 8.944272e-03
## 13577   4 0.0025157233 3.55534806 8.944272e-03
## 13578   4 0.0025157233 3.55534806 8.944272e-03
## 13579   4 0.0025157233 3.55534806 8.944272e-03
## 13580   3 0.0055658627 1.60943791 8.957910e-03
## 13581   5 0.0134770889 0.66497630 8.961945e-03
## 13582   3 0.0041322314 2.16905370 8.963032e-03
## 13583   3 0.0041322314 2.16905370 8.963032e-03
## 13584   3 0.0041322314 2.16905370 8.963032e-03
## 13585   3 0.0083798883 1.07044141 8.970179e-03
## 13586   9 0.0105882353 0.84729786 8.971389e-03
## 13587   2 0.0055865922 1.60943791 8.991273e-03
## 13588   1 0.0060975610 1.47590652 8.999430e-03
## 13589   1 0.0060975610 1.47590652 8.999430e-03
## 13590   5 0.0031446541 2.86220088 9.000632e-03
## 13591   2 0.0090909091 0.99039870 9.003625e-03
## 13592   5 0.0066401062 1.35812348 9.018084e-03
## 13593   5 0.0025380711 3.55534806 9.023726e-03
## 13594   5 0.0025380711 3.55534806 9.023726e-03
## 13595   6 0.0051369863 1.76358859 9.059530e-03
## 13596   3 0.0051369863 1.76358859 9.059530e-03
## 13597   3 0.0136363636 0.66497630 9.067859e-03
## 13598  12 0.0136674260 0.66497630 9.088514e-03
## 13599   4 0.0116279070 0.78275934 9.101853e-03
## 13600   2 0.0037105751 2.45673577 9.115903e-03
## 13601   5 0.0051706308 1.76358859 9.118866e-03
## 13602   3 0.0031914894 2.86220088 9.134684e-03
## 13603   3 0.0031914894 2.86220088 9.134684e-03
## 13604   4 0.0099750623 0.91629073 9.140057e-03
## 13605   4 0.0047058824 1.94591015 9.157224e-03
## 13606   5 0.0085616438 1.07044141 9.164738e-03
## 13607   5 0.0056947608 1.60943791 9.165364e-03
## 13608   6 0.0272727273 0.33647224 9.176516e-03
## 13609   6 0.0042372881 2.16905370 9.190906e-03
## 13610   6 0.0042372881 2.16905370 9.190906e-03
## 13611   2 0.0047281324 1.94591015 9.200521e-03
## 13612   2 0.0047281324 1.94591015 9.200521e-03
## 13613   8 0.0052253429 1.76358859 9.215355e-03
## 13614   9 0.0093071355 0.99039870 9.217775e-03
## 13615   6 0.0037735849 2.45673577 9.270701e-03
## 13616   4 0.0026126715 3.55534806 9.288956e-03
## 13617   4 0.0026126715 3.55534806 9.288956e-03
## 13618   4 0.0026126715 3.55534806 9.288956e-03
## 13619   2 0.0032467532 2.86220088 9.292860e-03
## 13620   2 0.0068493151 1.35812348 9.302216e-03
## 13621   2 0.0052770449 1.76358859 9.306536e-03
## 13622   7 0.0074468085 1.25276297 9.329086e-03
## 13623  10 0.0110132159 0.84729786 9.331474e-03
## 13624   3 0.0182926829 0.51082562 9.344371e-03
## 13625   5 0.0032658393 2.86220088 9.347488e-03
## 13626   2 0.0058139535 1.60943791 9.357197e-03
## 13627   2 0.0058139535 1.60943791 9.357197e-03
## 13628   4 0.0053120850 1.76358859 9.368332e-03
## 13629   7 0.0129870130 0.72213472 9.378373e-03
## 13630   1 0.0026385224 3.55534806 9.380866e-03
## 13631   1 0.0026385224 3.55534806 9.380866e-03
## 13632   1 0.0026385224 3.55534806 9.380866e-03
## 13633   1 0.0026385224 3.55534806 9.380866e-03
## 13634   1 0.0026385224 3.55534806 9.380866e-03
## 13635   1 0.0026385224 3.55534806 9.380866e-03
## 13636   1 0.0026385224 3.55534806 9.380866e-03
## 13637   1 0.0026385224 3.55534806 9.380866e-03
## 13638   1 0.0026385224 3.55534806 9.380866e-03
## 13639   1 0.0026385224 3.55534806 9.380866e-03
## 13640   1 0.0026385224 3.55534806 9.380866e-03
## 13641   1 0.0026385224 3.55534806 9.380866e-03
## 13642   1 0.0026385224 3.55534806 9.380866e-03
## 13643   1 0.0026385224 3.55534806 9.380866e-03
## 13644   1 0.0026385224 3.55534806 9.380866e-03
## 13645   1 0.0026385224 3.55534806 9.380866e-03
## 13646   1 0.0026385224 3.55534806 9.380866e-03
## 13647   1 0.0026385224 3.55534806 9.380866e-03
## 13648   1 0.0026385224 3.55534806 9.380866e-03
## 13649   1 0.0026385224 3.55534806 9.380866e-03
## 13650   1 0.0026385224 3.55534806 9.380866e-03
## 13651   1 0.0026385224 3.55534806 9.380866e-03
## 13652   1 0.0026385224 3.55534806 9.380866e-03
## 13653   1 0.0026385224 3.55534806 9.380866e-03
## 13654   1 0.0026385224 3.55534806 9.380866e-03
## 13655   1 0.0026385224 3.55534806 9.380866e-03
## 13656   1 0.0026385224 3.55534806 9.380866e-03
## 13657   1 0.0026385224 3.55534806 9.380866e-03
## 13658   4 0.0087719298 1.07044141 9.389837e-03
## 13659  11 0.0069182390 1.35812348 9.395823e-03
## 13660   2 0.0069204152 1.35812348 9.398778e-03
## 13661   3 0.0102739726 0.91629073 9.413946e-03
## 13662  14 0.0154185022 0.61090908 9.419303e-03
## 13663   2 0.0026560425 3.55534806 9.443156e-03
## 13664   2 0.0026560425 3.55534806 9.443156e-03
## 13665   2 0.0026560425 3.55534806 9.443156e-03
## 13666   2 0.0026560425 3.55534806 9.443156e-03
## 13667   2 0.0026560425 3.55534806 9.443156e-03
## 13668   2 0.0026560425 3.55534806 9.443156e-03
## 13669   2 0.0026560425 3.55534806 9.443156e-03
## 13670   2 0.0026560425 3.55534806 9.443156e-03
## 13671   6 0.0033021464 2.86220088 9.451406e-03
## 13672   3 0.0033039648 2.86220088 9.456611e-03
## 13673   3 0.0033039648 2.86220088 9.456611e-03
## 13674   3 0.0033039648 2.86220088 9.456611e-03
## 13675   3 0.0033039648 2.86220088 9.456611e-03
## 13676   3 0.0033039648 2.86220088 9.456611e-03
## 13677   3 0.0033039648 2.86220088 9.456611e-03
## 13678   3 0.0048701299 1.94591015 9.476835e-03
## 13679   2 0.0026666667 3.55534806 9.480928e-03
## 13680   2 0.0026666667 3.55534806 9.480928e-03
## 13681   2 0.0026666667 3.55534806 9.480928e-03
## 13682   2 0.0026666667 3.55534806 9.480928e-03
## 13683   2 0.0026666667 3.55534806 9.480928e-03
## 13684   2 0.0026666667 3.55534806 9.480928e-03
## 13685   2 0.0026666667 3.55534806 9.480928e-03
## 13686   2 0.0026666667 3.55534806 9.480928e-03
## 13687   2 0.0026666667 3.55534806 9.480928e-03
## 13688   2 0.0026666667 3.55534806 9.480928e-03
## 13689   2 0.0026666667 3.55534806 9.480928e-03
## 13690   2 0.0026666667 3.55534806 9.480928e-03
## 13691   3 0.0103806228 0.91629073 9.511668e-03
## 13692   2 0.0043859649 2.16905370 9.513393e-03
## 13693   4 0.0044052863 2.16905370 9.555303e-03
## 13694   2 0.0049140049 1.94591015 9.562212e-03
## 13695   1 0.0026954178 3.55534806 9.583148e-03
## 13696   1 0.0026954178 3.55534806 9.583148e-03
## 13697   1 0.0026954178 3.55534806 9.583148e-03
## 13698   1 0.0026954178 3.55534806 9.583148e-03
## 13699   1 0.0026954178 3.55534806 9.583148e-03
## 13700   1 0.0026954178 3.55534806 9.583148e-03
## 13701   1 0.0026954178 3.55534806 9.583148e-03
## 13702   1 0.0026954178 3.55534806 9.583148e-03
## 13703   1 0.0026954178 3.55534806 9.583148e-03
## 13704   1 0.0026954178 3.55534806 9.583148e-03
## 13705   1 0.0026954178 3.55534806 9.583148e-03
## 13706   1 0.0026954178 3.55534806 9.583148e-03
## 13707   1 0.0026954178 3.55534806 9.583148e-03
## 13708   1 0.0026954178 3.55534806 9.583148e-03
## 13709   1 0.0026954178 3.55534806 9.583148e-03
## 13710   1 0.0026954178 3.55534806 9.583148e-03
## 13711   1 0.0026954178 3.55534806 9.583148e-03
## 13712   1 0.0026954178 3.55534806 9.583148e-03
## 13713   1 0.0026954178 3.55534806 9.583148e-03
## 13714   1 0.0026954178 3.55534806 9.583148e-03
## 13715   1 0.0026954178 3.55534806 9.583148e-03
## 13716   1 0.0026954178 3.55534806 9.583148e-03
## 13717   1 0.0026954178 3.55534806 9.583148e-03
## 13718   1 0.0026954178 3.55534806 9.583148e-03
## 13719   1 0.0026954178 3.55534806 9.583148e-03
## 13720   1 0.0026954178 3.55534806 9.583148e-03
## 13721   1 0.0026954178 3.55534806 9.583148e-03
## 13722   1 0.0026954178 3.55534806 9.583148e-03
## 13723   1 0.0026954178 3.55534806 9.583148e-03
## 13724   1 0.0026954178 3.55534806 9.583148e-03
## 13725   1 0.0026954178 3.55534806 9.583148e-03
## 13726   4 0.0064935065 1.47590652 9.583809e-03
## 13727   3 0.0089552239 1.07044141 9.586042e-03
## 13728   2 0.0059701493 1.60943791 9.608585e-03
## 13729   7 0.0059931507 1.60943791 9.645604e-03
## 13730   3 0.0033707865 2.86220088 9.647868e-03
## 13731   3 0.0033707865 2.86220088 9.647868e-03
## 13732   3 0.0033707865 2.86220088 9.647868e-03
## 13733   3 0.0033707865 2.86220088 9.647868e-03
## 13734   4 0.0105540897 0.91629073 9.670615e-03
## 13735   3 0.0065789474 1.47590652 9.709911e-03
## 13736   5 0.0055066079 1.76358859 9.711391e-03
## 13737   5 0.0055066079 1.76358859 9.711391e-03
## 13738  15 0.0159574468 0.61090908 9.748549e-03
## 13739   4 0.0044943820 2.16905370 9.748556e-03
## 13740   6 0.0066079295 1.47590652 9.752686e-03
## 13741   3 0.0039840637 2.45673577 9.787792e-03
## 13742   8 0.0050314465 1.94591015 9.790743e-03
## 13743   2 0.0027548209 3.55534806 9.794347e-03
## 13744   2 0.0027548209 3.55534806 9.794347e-03
## 13745   2 0.0027548209 3.55534806 9.794347e-03
## 13746   2 0.0027548209 3.55534806 9.794347e-03
## 13747   2 0.0027548209 3.55534806 9.794347e-03
## 13748   2 0.0027548209 3.55534806 9.794347e-03
## 13749   2 0.0027548209 3.55534806 9.794347e-03
## 13750   2 0.0027548209 3.55534806 9.794347e-03
## 13751   2 0.0027548209 3.55534806 9.794347e-03
## 13752   2 0.0027548209 3.55534806 9.794347e-03
## 13753   2 0.0027548209 3.55534806 9.794347e-03
## 13754   2 0.0027548209 3.55534806 9.794347e-03
## 13755   2 0.0027548209 3.55534806 9.794347e-03
## 13756   2 0.0027548209 3.55534806 9.794347e-03
## 13757   2 0.0027548209 3.55534806 9.794347e-03
## 13758   2 0.0027548209 3.55534806 9.794347e-03
## 13759   4 0.0034246575 2.86220088 9.802058e-03
## 13760   4 0.0034246575 2.86220088 9.802058e-03
## 13761   4 0.0034246575 2.86220088 9.802058e-03
## 13762   4 0.0034246575 2.86220088 9.802058e-03
## 13763   4 0.0034246575 2.86220088 9.802058e-03
## 13764   2 0.0034246575 2.86220088 9.802058e-03
## 13765   2 0.0034246575 2.86220088 9.802058e-03
## 13766   2 0.0034246575 2.86220088 9.802058e-03
## 13767   2 0.0034246575 2.86220088 9.802058e-03
## 13768   2 0.0034246575 2.86220088 9.802058e-03
## 13769   2 0.0034246575 2.86220088 9.802058e-03
## 13770   2 0.0034246575 2.86220088 9.802058e-03
## 13771   2 0.0034246575 2.86220088 9.802058e-03
## 13772   1 0.0034246575 2.86220088 9.802058e-03
## 13773   1 0.0034246575 2.86220088 9.802058e-03
## 13774   1 0.0034246575 2.86220088 9.802058e-03
## 13775   1 0.0034246575 2.86220088 9.802058e-03
## 13776   1 0.0034246575 2.86220088 9.802058e-03
## 13777   1 0.0034246575 2.86220088 9.802058e-03
## 13778   1 0.0034246575 2.86220088 9.802058e-03
## 13779   1 0.0034246575 2.86220088 9.802058e-03
## 13780   1 0.0034246575 2.86220088 9.802058e-03
## 13781   1 0.0034246575 2.86220088 9.802058e-03
## 13782   1 0.0060975610 1.60943791 9.813646e-03
## 13783   1 0.0060975610 1.60943791 9.813646e-03
## 13784   1 0.0060975610 1.60943791 9.813646e-03
## 13785   1 0.0060975610 1.60943791 9.813646e-03
## 13786   1 0.0060975610 1.60943791 9.813646e-03
## 13787   5 0.0050607287 1.94591015 9.847723e-03
## 13788   1 0.0045454545 2.16905370 9.859335e-03
## 13789   1 0.0045454545 2.16905370 9.859335e-03
## 13790   1 0.0045454545 2.16905370 9.859335e-03
## 13791   1 0.0045454545 2.16905370 9.859335e-03
## 13792   4 0.0045558087 2.16905370 9.881794e-03
## 13793   4 0.0045558087 2.16905370 9.881794e-03
## 13794   1 0.0034602076 2.86220088 9.903809e-03
## 13795   1 0.0034602076 2.86220088 9.903809e-03
## 13796   1 0.0034602076 2.86220088 9.903809e-03
## 13797   1 0.0034602076 2.86220088 9.903809e-03
## 13798   1 0.0034602076 2.86220088 9.903809e-03
## 13799   1 0.0034602076 2.86220088 9.903809e-03
## 13800   1 0.0034602076 2.86220088 9.903809e-03
## 13801   1 0.0034602076 2.86220088 9.903809e-03
## 13802   1 0.0034602076 2.86220088 9.903809e-03
## 13803   1 0.0034602076 2.86220088 9.903809e-03
## 13804   1 0.0034602076 2.86220088 9.903809e-03
## 13805   1 0.0034602076 2.86220088 9.903809e-03
## 13806   1 0.0034602076 2.86220088 9.903809e-03
## 13807   1 0.0034602076 2.86220088 9.903809e-03
## 13808   1 0.0034602076 2.86220088 9.903809e-03
## 13809   1 0.0034602076 2.86220088 9.903809e-03
## 13810   3 0.0079155673 1.25276297 9.916330e-03
## 13811   7 0.0045721750 2.16905370 9.917293e-03
## 13812   5 0.0149253731 0.66497630 9.925019e-03
## 13813   1 0.0027932961 3.55534806 9.931140e-03
## 13814   1 0.0027932961 3.55534806 9.931140e-03
## 13815   1 0.0027932961 3.55534806 9.931140e-03
## 13816   1 0.0027932961 3.55534806 9.931140e-03
## 13817   1 0.0027932961 3.55534806 9.931140e-03
## 13818   1 0.0027932961 3.55534806 9.931140e-03
## 13819   1 0.0027932961 3.55534806 9.931140e-03
## 13820   1 0.0027932961 3.55534806 9.931140e-03
## 13821   1 0.0027932961 3.55534806 9.931140e-03
## 13822   1 0.0027932961 3.55534806 9.931140e-03
## 13823   1 0.0027932961 3.55534806 9.931140e-03
## 13824   1 0.0027932961 3.55534806 9.931140e-03
## 13825   1 0.0027932961 3.55534806 9.931140e-03
## 13826   1 0.0027932961 3.55534806 9.931140e-03
## 13827   1 0.0027932961 3.55534806 9.931140e-03
## 13828   1 0.0027932961 3.55534806 9.931140e-03
## 13829   1 0.0027932961 3.55534806 9.931140e-03
## 13830   1 0.0027932961 3.55534806 9.931140e-03
## 13831   1 0.0027932961 3.55534806 9.931140e-03
## 13832   1 0.0027932961 3.55534806 9.931140e-03
## 13833   1 0.0027932961 3.55534806 9.931140e-03
## 13834   1 0.0027932961 3.55534806 9.931140e-03
## 13835   1 0.0027932961 3.55534806 9.931140e-03
## 13836   1 0.0027932961 3.55534806 9.931140e-03
## 13837   1 0.0027932961 3.55534806 9.931140e-03
## 13838   1 0.0027932961 3.55534806 9.931140e-03
## 13839   1 0.0027932961 3.55534806 9.931140e-03
## 13840   1 0.0027932961 3.55534806 9.931140e-03
## 13841   1 0.0027932961 3.55534806 9.931140e-03
## 13842   1 0.0027932961 3.55534806 9.931140e-03
## 13843   1 0.0027932961 3.55534806 9.931140e-03
## 13844   1 0.0027932961 3.55534806 9.931140e-03
## 13845   8 0.0056497175 1.76358859 9.963777e-03
## 13846   3 0.0051369863 1.94591015 9.996114e-03
## 13847   3 0.0073710074 1.35812348 1.001074e-02
## 13848   3 0.0035294118 2.86220088 1.010189e-02
## 13849   3 0.0035294118 2.86220088 1.010189e-02
## 13850   2 0.0068493151 1.47590652 1.010895e-02
## 13851   4 0.0094562648 1.07044141 1.012238e-02
## 13852   3 0.0041322314 2.45673577 1.015180e-02
## 13853   3 0.0041322314 2.45673577 1.015180e-02
## 13854   3 0.0041322314 2.45673577 1.015180e-02
## 13855   3 0.0041322314 2.45673577 1.015180e-02
## 13856   4 0.0087719298 1.15745279 1.015309e-02
## 13857   4 0.0041365047 2.45673577 1.016230e-02
## 13858   7 0.0035532995 2.86220088 1.017026e-02
## 13859   2 0.0069204152 1.47590652 1.021389e-02
## 13860   2 0.0069204152 1.47590652 1.021389e-02
## 13861   2 0.0069204152 1.47590652 1.021389e-02
## 13862  35 0.0220125786 0.46430561 1.022056e-02
## 13863   2 0.0035778175 2.86220088 1.024043e-02
## 13864   2 0.0035778175 2.86220088 1.024043e-02
## 13865   2 0.0035778175 2.86220088 1.024043e-02
## 13866   2 0.0035778175 2.86220088 1.024043e-02
## 13867   2 0.0035778175 2.86220088 1.024043e-02
## 13868   2 0.0058139535 1.76358859 1.025342e-02
## 13869   2 0.0052770449 1.94591015 1.026866e-02
## 13870   7 0.0096418733 1.07044141 1.032106e-02
## 13871   1 0.0029069767 3.55534806 1.033531e-02
## 13872   1 0.0029069767 3.55534806 1.033531e-02
## 13873   1 0.0029069767 3.55534806 1.033531e-02
## 13874   1 0.0029069767 3.55534806 1.033531e-02
## 13875   1 0.0029069767 3.55534806 1.033531e-02
## 13876   1 0.0029069767 3.55534806 1.033531e-02
## 13877   1 0.0029069767 3.55534806 1.033531e-02
## 13878   1 0.0029069767 3.55534806 1.033531e-02
## 13879   1 0.0029069767 3.55534806 1.033531e-02
## 13880   1 0.0029069767 3.55534806 1.033531e-02
## 13881   1 0.0029069767 3.55534806 1.033531e-02
## 13882   1 0.0029069767 3.55534806 1.033531e-02
## 13883   1 0.0029069767 3.55534806 1.033531e-02
## 13884   1 0.0029069767 3.55534806 1.033531e-02
## 13885   1 0.0029069767 3.55534806 1.033531e-02
## 13886   1 0.0029069767 3.55534806 1.033531e-02
## 13887   1 0.0029069767 3.55534806 1.033531e-02
## 13888   1 0.0029069767 3.55534806 1.033531e-02
## 13889   1 0.0029069767 3.55534806 1.033531e-02
## 13890   1 0.0029069767 3.55534806 1.033531e-02
## 13891   1 0.0029069767 3.55534806 1.033531e-02
## 13892   1 0.0029069767 3.55534806 1.033531e-02
## 13893   1 0.0029069767 3.55534806 1.033531e-02
## 13894   1 0.0029069767 3.55534806 1.033531e-02
## 13895   1 0.0029069767 3.55534806 1.033531e-02
## 13896   1 0.0029069767 3.55534806 1.033531e-02
## 13897   1 0.0029069767 3.55534806 1.033531e-02
## 13898   1 0.0029069767 3.55534806 1.033531e-02
## 13899   1 0.0029069767 3.55534806 1.033531e-02
## 13900   1 0.0029069767 3.55534806 1.033531e-02
## 13901   1 0.0029069767 3.55534806 1.033531e-02
## 13902  22 0.0143696930 0.72213472 1.037685e-02
## 13903   3 0.0036363636 2.86220088 1.040800e-02
## 13904   3 0.0036363636 2.86220088 1.040800e-02
## 13905   3 0.0036363636 2.86220088 1.040800e-02
## 13906   6 0.0097402597 1.07044141 1.042638e-02
## 13907   3 0.0053667263 1.94591015 1.044317e-02
## 13908   3 0.0053667263 1.94591015 1.044317e-02
## 13909   3 0.0053667263 1.94591015 1.044317e-02
## 13910   3 0.0053667263 1.94591015 1.044317e-02
## 13911   4 0.0042553191 2.45673577 1.045419e-02
## 13912  14 0.0071065990 1.47590652 1.048868e-02
## 13913   2 0.0053908356 1.94591015 1.049008e-02
## 13914   2 0.0053908356 1.94591015 1.049008e-02
## 13915   2 0.0053908356 1.94591015 1.049008e-02
## 13916   3 0.0083798883 1.25276297 1.049801e-02
## 13917  10 0.0065316786 1.60943791 1.051233e-02
## 13918   4 0.0048484848 2.16905370 1.051662e-02
## 13919   5 0.0042808219 2.45673577 1.051685e-02
## 13920   2 0.0059701493 1.76358859 1.052889e-02
## 13921   2 0.0059701493 1.76358859 1.052889e-02
## 13922   2 0.0059701493 1.76358859 1.052889e-02
## 13923   3 0.0048701299 2.16905370 1.056357e-02
## 13924   7 0.0059931507 1.76358859 1.056945e-02
## 13925   1 0.0029850746 3.55534806 1.061298e-02
## 13926   1 0.0029850746 3.55534806 1.061298e-02
## 13927   1 0.0029850746 3.55534806 1.061298e-02
## 13928   1 0.0029850746 3.55534806 1.061298e-02
## 13929   1 0.0029850746 3.55534806 1.061298e-02
## 13930   1 0.0029850746 3.55534806 1.061298e-02
## 13931   1 0.0029850746 3.55534806 1.061298e-02
## 13932   1 0.0029850746 3.55534806 1.061298e-02
## 13933   1 0.0029850746 3.55534806 1.061298e-02
## 13934   1 0.0029850746 3.55534806 1.061298e-02
## 13935   1 0.0029850746 3.55534806 1.061298e-02
## 13936   1 0.0029850746 3.55534806 1.061298e-02
## 13937   1 0.0029850746 3.55534806 1.061298e-02
## 13938   1 0.0029850746 3.55534806 1.061298e-02
## 13939   1 0.0029850746 3.55534806 1.061298e-02
## 13940   1 0.0029850746 3.55534806 1.061298e-02
## 13941   1 0.0029850746 3.55534806 1.061298e-02
## 13942   1 0.0029850746 3.55534806 1.061298e-02
## 13943   1 0.0029850746 3.55534806 1.061298e-02
## 13944   1 0.0029850746 3.55534806 1.061298e-02
## 13945   1 0.0029850746 3.55534806 1.061298e-02
## 13946   1 0.0029850746 3.55534806 1.061298e-02
## 13947   1 0.0029850746 3.55534806 1.061298e-02
## 13948   1 0.0029850746 3.55534806 1.061298e-02
## 13949   1 0.0029850746 3.55534806 1.061298e-02
## 13950   1 0.0029850746 3.55534806 1.061298e-02
## 13951   1 0.0029850746 3.55534806 1.061298e-02
## 13952   1 0.0029850746 3.55534806 1.061298e-02
## 13953   1 0.0029850746 3.55534806 1.061298e-02
## 13954   2 0.0037105751 2.86220088 1.062041e-02
## 13955   6 0.0066079295 1.60943791 1.063505e-02
## 13956   6 0.0037313433 2.86220088 1.067985e-02
## 13957   1 0.0060975610 1.76358859 1.075359e-02
## 13958   1 0.0060975610 1.76358859 1.075359e-02
## 13959   1 0.0060975610 1.76358859 1.075359e-02
## 13960   1 0.0060975610 1.76358859 1.075359e-02
## 13961  24 0.0320000000 0.33647224 1.076711e-02
## 13962   2 0.0043859649 2.45673577 1.077516e-02
## 13963   2 0.0043859649 2.45673577 1.077516e-02
## 13964   2 0.0043859649 2.45673577 1.077516e-02
## 13965   2 0.0043859649 2.45673577 1.077516e-02
## 13966  10 0.0162337662 0.66497630 1.079507e-02
## 13967   3 0.0030364372 3.55534806 1.079559e-02
## 13968   3 0.0030364372 3.55534806 1.079559e-02
## 13969   3 0.0030364372 3.55534806 1.079559e-02
## 13970   3 0.0030364372 3.55534806 1.079559e-02
## 13971   2 0.0049875312 2.16905370 1.081822e-02
## 13972   2 0.0049875312 2.16905370 1.081822e-02
## 13973   4 0.0044052863 2.45673577 1.082262e-02
## 13974   6 0.0030456853 3.55534806 1.082847e-02
## 13975   5 0.0118203310 0.91629073 1.083086e-02
## 13976   5 0.0109649123 0.99039870 1.085963e-02
## 13977   2 0.0055865922 1.94591015 1.087101e-02
## 13978   5 0.0050607287 2.16905370 1.097699e-02
## 13979   3 0.0102739726 1.07044141 1.099769e-02
## 13980   2 0.0068493151 1.60943791 1.102355e-02
## 13981   2 0.0068493151 1.60943791 1.102355e-02
## 13982   3 0.0031023785 3.55534806 1.103004e-02
## 13983   3 0.0031023785 3.55534806 1.103004e-02
## 13984   3 0.0074812968 1.47590652 1.104169e-02
## 13985   5 0.0031094527 3.55534806 1.105519e-02
## 13986  18 0.0239043825 0.46430561 1.109894e-02
## 13987   2 0.0069204152 1.60943791 1.113798e-02
## 13988   2 0.0069204152 1.60943791 1.113798e-02
## 13989   2 0.0069204152 1.60943791 1.113798e-02
## 13990   1 0.0045454545 2.45673577 1.116698e-02
## 13991   1 0.0045454545 2.45673577 1.116698e-02
## 13992   1 0.0045454545 2.45673577 1.116698e-02
## 13993   1 0.0045454545 2.45673577 1.116698e-02
## 13994   1 0.0045454545 2.45673577 1.116698e-02
## 13995   1 0.0045454545 2.45673577 1.116698e-02
## 13996   1 0.0045454545 2.45673577 1.116698e-02
## 13997   2 0.0121951220 0.91629073 1.117428e-02
## 13998   3 0.0182926829 0.61090908 1.117517e-02
## 13999   5 0.0031446541 3.55534806 1.118034e-02
## 14000   4 0.0045558087 2.45673577 1.119242e-02
## 14001   4 0.0045558087 2.45673577 1.119242e-02
## 14002   9 0.0045685279 2.45673577 1.122367e-02
## 14003   6 0.0063829787 1.76358859 1.125695e-02
## 14004   2 0.0058139535 1.94591015 1.131343e-02
## 14005   8 0.0052253429 2.16905370 1.133405e-02
## 14006   8 0.0052253429 2.16905370 1.133405e-02
## 14007   3 0.0031914894 3.55534806 1.134686e-02
## 14008   3 0.0031914894 3.55534806 1.134686e-02
## 14009   3 0.0031914894 3.55534806 1.134686e-02
## 14010   3 0.0031914894 3.55534806 1.134686e-02
## 14011   2 0.0090909091 1.25276297 1.138875e-02
## 14012   2 0.0090909091 1.25276297 1.138875e-02
## 14013   2 0.0090909091 1.25276297 1.138875e-02
## 14014   2 0.0090909091 1.25276297 1.138875e-02
## 14015   3 0.0040000000 2.86220088 1.144880e-02
## 14016   4 0.0064935065 1.76358859 1.145187e-02
## 14017   4 0.0064935065 1.76358859 1.145187e-02
## 14018   4 0.0116279070 0.99039870 1.151626e-02
## 14019  10 0.0065316786 1.76358859 1.151919e-02
## 14020   4 0.0053120850 2.16905370 1.152220e-02
## 14021   5 0.0053191489 2.16905370 1.153752e-02
## 14022   2 0.0032467532 3.55534806 1.154334e-02
## 14023   2 0.0032467532 3.55534806 1.154334e-02
## 14024   2 0.0032467532 3.55534806 1.154334e-02
## 14025   2 0.0032467532 3.55534806 1.154334e-02
## 14026   4 0.0047058824 2.45673577 1.156111e-02
## 14027   4 0.0040485830 2.86220088 1.158786e-02
## 14028   3 0.0065789474 1.76358859 1.160256e-02
## 14029   3 0.0065789474 1.76358859 1.160256e-02
## 14030   5 0.0032658393 3.55534806 1.161120e-02
## 14031   5 0.0032658393 3.55534806 1.161120e-02
## 14032   2 0.0059701493 1.94591015 1.161737e-02
## 14033   6 0.0207612457 0.55961579 1.161832e-02
## 14034   7 0.0092961487 1.25276297 1.164587e-02
## 14035   6 0.0066079295 1.76358859 1.165367e-02
## 14036   2 0.0053908356 2.16905370 1.169301e-02
## 14037   2 0.0053908356 2.16905370 1.169301e-02
## 14038   6 0.0072727273 1.60943791 1.170500e-02
## 14039   4 0.0138408304 0.84729786 1.172731e-02
## 14040   3 0.0033039648 3.55534806 1.174674e-02
## 14041   3 0.0033039648 3.55534806 1.174674e-02
## 14042   3 0.0033039648 3.55534806 1.174674e-02
## 14043   3 0.0033039648 3.55534806 1.174674e-02
## 14044   3 0.0033039648 3.55534806 1.174674e-02
## 14045   3 0.0041322314 2.86220088 1.182728e-02
## 14046   3 0.0087209302 1.35812348 1.184410e-02
## 14047   4 0.0094562648 1.25276297 1.184646e-02
## 14048   3 0.0073710074 1.60943791 1.186318e-02
## 14049   1 0.0060975610 1.94591015 1.186531e-02
## 14050   1 0.0060975610 1.94591015 1.186531e-02
## 14051   1 0.0060975610 1.94591015 1.186531e-02
## 14052   1 0.0060975610 1.94591015 1.186531e-02
## 14053   1 0.0060975610 1.94591015 1.186531e-02
## 14054   1 0.0060975610 1.94591015 1.186531e-02
## 14055   1 0.0060975610 1.94591015 1.186531e-02
## 14056   3 0.0102739726 1.15745279 1.189164e-02
## 14057   4 0.0048484848 2.45673577 1.191145e-02
## 14058   4 0.0048484848 2.45673577 1.191145e-02
## 14059   4 0.0087719298 1.35812348 1.191336e-02
## 14060  16 0.0165460186 0.72213472 1.194845e-02
## 14061   3 0.0033707865 3.55534806 1.198432e-02
## 14062   3 0.0033707865 3.55534806 1.198432e-02
## 14063   3 0.0033707865 3.55534806 1.198432e-02
## 14064   3 0.0033707865 3.55534806 1.198432e-02
## 14065  11 0.0068407960 1.76358859 1.206435e-02
## 14066   2 0.0049140049 2.45673577 1.207241e-02
## 14067   6 0.0062047570 1.94591015 1.207390e-02
## 14068   2 0.0068493151 1.76358859 1.207937e-02
## 14069   2 0.0068493151 1.76358859 1.207937e-02
## 14070  10 0.0062189055 1.94591015 1.210143e-02
## 14071   2 0.0055865922 2.16905370 1.211762e-02
## 14072   2 0.0055865922 2.16905370 1.211762e-02
## 14073   3 0.0034168565 3.55534806 1.214811e-02
## 14074   7 0.0082352941 1.47590652 1.215452e-02
## 14075   3 0.0182926829 0.66497630 1.216420e-02
## 14076   4 0.0034246575 3.55534806 1.217585e-02
## 14077   4 0.0034246575 3.55534806 1.217585e-02
## 14078   4 0.0034246575 3.55534806 1.217585e-02
## 14079   2 0.0034246575 3.55534806 1.217585e-02
## 14080   2 0.0034246575 3.55534806 1.217585e-02
## 14081   2 0.0034246575 3.55534806 1.217585e-02
## 14082   1 0.0034246575 3.55534806 1.217585e-02
## 14083   1 0.0034246575 3.55534806 1.217585e-02
## 14084   1 0.0034246575 3.55534806 1.217585e-02
## 14085   1 0.0034246575 3.55534806 1.217585e-02
## 14086   1 0.0034246575 3.55534806 1.217585e-02
## 14087   1 0.0034246575 3.55534806 1.217585e-02
## 14088   1 0.0034246575 3.55534806 1.217585e-02
## 14089   1 0.0034246575 3.55534806 1.217585e-02
## 14090   1 0.0034246575 3.55534806 1.217585e-02
## 14091   1 0.0034246575 3.55534806 1.217585e-02
## 14092   1 0.0034246575 3.55534806 1.217585e-02
## 14093   1 0.0034246575 3.55534806 1.217585e-02
## 14094   1 0.0034246575 3.55534806 1.217585e-02
## 14095   1 0.0034246575 3.55534806 1.217585e-02
## 14096   1 0.0034246575 3.55534806 1.217585e-02
## 14097   1 0.0034246575 3.55534806 1.217585e-02
## 14098   1 0.0034246575 3.55534806 1.217585e-02
## 14099   1 0.0034246575 3.55534806 1.217585e-02
## 14100   1 0.0034246575 3.55534806 1.217585e-02
## 14101   1 0.0034246575 3.55534806 1.217585e-02
## 14102   1 0.0034246575 3.55534806 1.217585e-02
## 14103   1 0.0034246575 3.55534806 1.217585e-02
## 14104  11 0.0069182390 1.76358859 1.220093e-02
## 14105   2 0.0069204152 1.76358859 1.220477e-02
## 14106   2 0.0069204152 1.76358859 1.220477e-02
## 14107   2 0.0069204152 1.76358859 1.220477e-02
## 14108   4 0.0105540897 1.15745279 1.221586e-02
## 14109   8 0.0363636364 0.33647224 1.223535e-02
## 14110   2 0.0049875312 2.45673577 1.225305e-02
## 14111   2 0.0049875312 2.45673577 1.225305e-02
## 14112   1 0.0034602076 3.55534806 1.230224e-02
## 14113   1 0.0034602076 3.55534806 1.230224e-02
## 14114   1 0.0034602076 3.55534806 1.230224e-02
## 14115   1 0.0034602076 3.55534806 1.230224e-02
## 14116   1 0.0034602076 3.55534806 1.230224e-02
## 14117   1 0.0034602076 3.55534806 1.230224e-02
## 14118   1 0.0034602076 3.55534806 1.230224e-02
## 14119   1 0.0034602076 3.55534806 1.230224e-02
## 14120   1 0.0034602076 3.55534806 1.230224e-02
## 14121   1 0.0034602076 3.55534806 1.230224e-02
## 14122   1 0.0034602076 3.55534806 1.230224e-02
## 14123   1 0.0034602076 3.55534806 1.230224e-02
## 14124   1 0.0034602076 3.55534806 1.230224e-02
## 14125   1 0.0034602076 3.55534806 1.230224e-02
## 14126   1 0.0034602076 3.55534806 1.230224e-02
## 14127   1 0.0034602076 3.55534806 1.230224e-02
## 14128   1 0.0034602076 3.55534806 1.230224e-02
## 14129   1 0.0034602076 3.55534806 1.230224e-02
## 14130   1 0.0034602076 3.55534806 1.230224e-02
## 14131   1 0.0034602076 3.55534806 1.230224e-02
## 14132   1 0.0034602076 3.55534806 1.230224e-02
## 14133   4 0.0098280098 1.25276297 1.231217e-02
## 14134   2 0.0090909091 1.35812348 1.234658e-02
## 14135   5 0.0056947608 2.16905370 1.235224e-02
## 14136   3 0.0083798883 1.47590652 1.236793e-02
## 14137  13 0.0146067416 0.84729786 1.237626e-02
## 14138  13 0.0091807910 1.35812348 1.246865e-02
## 14139   4 0.0107816712 1.15745279 1.247928e-02
## 14140   3 0.0070921986 1.76358859 1.250772e-02
## 14141   3 0.0035294118 3.55534806 1.254829e-02
## 14142   3 0.0035294118 3.55534806 1.254829e-02
## 14143   3 0.0035294118 3.55534806 1.254829e-02
## 14144   3 0.0035294118 3.55534806 1.254829e-02
## 14145   3 0.0035294118 3.55534806 1.254829e-02
## 14146   3 0.0035294118 3.55534806 1.254829e-02
## 14147   3 0.0035294118 3.55534806 1.254829e-02
## 14148   6 0.0205479452 0.61090908 1.255293e-02
## 14149   2 0.0043859649 2.86220088 1.255351e-02
## 14150   2 0.0043859649 2.86220088 1.255351e-02
## 14151   7 0.0044025157 2.86220088 1.260088e-02
## 14152   7 0.0044025157 2.86220088 1.260088e-02
## 14153   4 0.0044052863 2.86220088 1.260881e-02
## 14154   4 0.0044052863 2.86220088 1.260881e-02
## 14155   4 0.0044052863 2.86220088 1.260881e-02
## 14156   2 0.0058139535 2.16905370 1.261078e-02
## 14157   2 0.0058139535 2.16905370 1.261078e-02
## 14158   2 0.0058139535 2.16905370 1.261078e-02
## 14159   2 0.0058139535 2.16905370 1.261078e-02
## 14160   2 0.0058139535 2.16905370 1.261078e-02
## 14161   6 0.0051369863 2.45673577 1.262022e-02
## 14162   3 0.0051369863 2.45673577 1.262022e-02
## 14163   5 0.0085616438 1.47590652 1.263619e-02
## 14164   8 0.0175438596 0.72213472 1.266903e-02
## 14165   5 0.0051706308 2.45673577 1.270287e-02
## 14166   2 0.0035778175 3.55534806 1.272039e-02
## 14167   2 0.0035778175 3.55534806 1.272039e-02
## 14168   2 0.0035778175 3.55534806 1.272039e-02
## 14169   2 0.0035778175 3.55534806 1.272039e-02
## 14170   2 0.0035778175 3.55534806 1.272039e-02
## 14171   2 0.0035778175 3.55534806 1.272039e-02
## 14172   2 0.0035778175 3.55534806 1.272039e-02
## 14173   2 0.0035778175 3.55534806 1.272039e-02
## 14174   8 0.0094117647 1.35812348 1.278234e-02
## 14175   4 0.0044943820 2.86220088 1.286382e-02
## 14176   4 0.0044943820 2.86220088 1.286382e-02
## 14177   4 0.0044943820 2.86220088 1.286382e-02
## 14178   4 0.0044943820 2.86220088 1.286382e-02
## 14179   3 0.0102739726 1.25276297 1.287085e-02
## 14180   3 0.0102739726 1.25276297 1.287085e-02
## 14181   3 0.0087209302 1.47590652 1.287128e-02
## 14182   5 0.0066401062 1.94591015 1.292105e-02
## 14183   3 0.0036363636 3.55534806 1.292854e-02
## 14184   3 0.0036363636 3.55534806 1.292854e-02
## 14185   2 0.0059701493 2.16905370 1.294957e-02
## 14186   2 0.0059701493 2.16905370 1.294957e-02
## 14187   2 0.0059701493 2.16905370 1.294957e-02
## 14188   2 0.0059701493 2.16905370 1.294957e-02
## 14189   2 0.0059701493 2.16905370 1.294957e-02
## 14190   2 0.0059701493 2.16905370 1.294957e-02
## 14191  13 0.0152941176 0.84729786 1.295867e-02
## 14192  45 0.0385273973 0.33647224 1.296340e-02
## 14193   2 0.0052770449 2.45673577 1.296430e-02
## 14194   9 0.0095744681 1.35812348 1.300331e-02
## 14195   1 0.0045454545 2.86220088 1.301000e-02
## 14196   1 0.0045454545 2.86220088 1.301000e-02
## 14197   1 0.0045454545 2.86220088 1.301000e-02
## 14198   1 0.0045454545 2.86220088 1.301000e-02
## 14199   1 0.0045454545 2.86220088 1.301000e-02
## 14200   1 0.0045454545 2.86220088 1.301000e-02
## 14201   1 0.0045454545 2.86220088 1.301000e-02
## 14202   1 0.0045454545 2.86220088 1.301000e-02
## 14203   1 0.0045454545 2.86220088 1.301000e-02
## 14204   1 0.0045454545 2.86220088 1.301000e-02
## 14205   4 0.0045558087 2.86220088 1.303964e-02
## 14206   2 0.0121951220 1.07044141 1.305416e-02
## 14207   2 0.0121951220 1.07044141 1.305416e-02
## 14208   5 0.0131926121 0.99039870 1.306595e-02
## 14209   7 0.0045721750 2.86220088 1.308648e-02
## 14210   4 0.0074211503 1.76358859 1.308786e-02
## 14211   4 0.0053333333 2.45673577 1.310259e-02
## 14212   6 0.0167597765 0.78275934 1.311887e-02
## 14213   2 0.0037105751 3.55534806 1.319239e-02
## 14214   2 0.0037105751 3.55534806 1.319239e-02
## 14215   2 0.0037105751 3.55534806 1.319239e-02
## 14216   1 0.0060975610 2.16905370 1.322594e-02
## 14217   1 0.0060975610 2.16905370 1.322594e-02
## 14218   1 0.0060975610 2.16905370 1.322594e-02
## 14219   1 0.0060975610 2.16905370 1.322594e-02
## 14220   1 0.0060975610 2.16905370 1.322594e-02
## 14221   1 0.0060975610 2.16905370 1.322594e-02
## 14222  17 0.0315398887 0.41985385 1.324214e-02
## 14223   8 0.0106241700 1.25276297 1.330957e-02
## 14224  10 0.0106382979 1.25276297 1.332727e-02
## 14225   5 0.0134770889 0.99039870 1.334769e-02
## 14226   2 0.0090909091 1.47590652 1.341733e-02
## 14227   6 0.0062047570 2.16905370 1.345845e-02
## 14228  51 0.0320754717 0.41985385 1.346701e-02
## 14229   4 0.0047058824 2.86220088 1.346918e-02
## 14230   4 0.0047058824 2.86220088 1.346918e-02
## 14231   4 0.0047058824 2.86220088 1.346918e-02
## 14232   4 0.0047058824 2.86220088 1.346918e-02
## 14233   3 0.0083798883 1.60943791 1.348691e-02
## 14234   3 0.0136363636 0.99039870 1.350544e-02
## 14235  17 0.0187224670 0.72213472 1.352014e-02
## 14236   5 0.0055066079 2.45673577 1.352828e-02
## 14237   5 0.0055066079 2.45673577 1.352828e-02
## 14238   5 0.0055066079 2.45673577 1.352828e-02
## 14239   5 0.0055066079 2.45673577 1.352828e-02
## 14240   2 0.0047281324 2.86220088 1.353286e-02
## 14241   4 0.0055096419 2.45673577 1.353573e-02
## 14242  10 0.0137741047 0.99039870 1.364186e-02
## 14243   5 0.0092764378 1.47590652 1.369116e-02
## 14244   7 0.0038525041 3.55534806 1.369699e-02
## 14245   2 0.0055865922 2.45673577 1.372478e-02
## 14246   2 0.0055865922 2.45673577 1.372478e-02
## 14247   2 0.0055865922 2.45673577 1.372478e-02
## 14248  10 0.0070621469 1.94591015 1.374230e-02
## 14249  10 0.0085616438 1.60943791 1.377943e-02
## 14250   3 0.0070921986 1.94591015 1.380078e-02
## 14251   5 0.0056179775 2.45673577 1.380189e-02
## 14252  24 0.0410958904 0.33647224 1.382763e-02
## 14253  10 0.0298507463 0.46430561 1.385987e-02
## 14254   8 0.0094117647 1.47590652 1.389088e-02
## 14255   6 0.0039190072 3.55534806 1.393343e-02
## 14256   6 0.0039190072 3.55534806 1.393343e-02
## 14257   6 0.0039190072 3.55534806 1.393343e-02
## 14258   3 0.0048701299 2.86220088 1.393929e-02
## 14259   5 0.0056947608 2.45673577 1.399052e-02
## 14260   3 0.0087209302 1.60943791 1.403580e-02
## 14261   3 0.0103806228 1.35812348 1.409817e-02
## 14262   2 0.0121951220 1.15745279 1.411528e-02
## 14263   7 0.0195530726 0.72213472 1.411995e-02
## 14264   3 0.0039840637 3.55534806 1.416473e-02
## 14265   6 0.0167597765 0.84729786 1.420052e-02
## 14266   3 0.0065789474 2.16905370 1.427009e-02
## 14267   2 0.0049875312 2.86220088 1.427532e-02
## 14268   2 0.0058139535 2.45673577 1.428335e-02
## 14269   6 0.0066079295 2.16905370 1.433295e-02
## 14270   6 0.0066079295 2.16905370 1.433295e-02
## 14271   3 0.0073710074 1.94591015 1.434332e-02
## 14272   4 0.0040485830 3.55534806 1.439412e-02
## 14273   5 0.0066401062 2.16905370 1.440275e-02
## 14274   3 0.0089552239 1.60943791 1.441288e-02
## 14275   8 0.0040609137 3.55534806 1.443796e-02
## 14276   7 0.0125223614 1.15745279 1.449404e-02
## 14277   2 0.0090909091 1.60943791 1.463125e-02
## 14278   2 0.0090909091 1.60943791 1.463125e-02
## 14279   2 0.0090909091 1.60943791 1.463125e-02
## 14280   4 0.0107816712 1.35812348 1.464284e-02
## 14281   8 0.0091116173 1.60943791 1.466458e-02
## 14282  21 0.0148305085 0.99039870 1.468812e-02
## 14283   3 0.0041322314 3.55534806 1.469152e-02
## 14284   6 0.0051369863 2.86220088 1.470309e-02
## 14285   4 0.0041365047 3.55534806 1.470671e-02
## 14286   4 0.0041365047 3.55534806 1.470671e-02
## 14287   4 0.0041365047 3.55534806 1.470671e-02
## 14288   4 0.0099750623 1.47590652 1.472226e-02
## 14289   5 0.0051706308 2.86220088 1.479938e-02
## 14290   9 0.0242587601 0.61090908 1.481990e-02
## 14291   2 0.0068493151 2.16905370 1.485653e-02
## 14292   2 0.0068493151 2.16905370 1.485653e-02
## 14293   5 0.0068870523 2.16905370 1.493839e-02
## 14294   8 0.0052253429 2.86220088 1.495598e-02
## 14295   4 0.0119402985 1.25276297 1.495836e-02
## 14296   1 0.0060975610 2.45673577 1.498010e-02
## 14297   1 0.0060975610 2.45673577 1.498010e-02
## 14298   1 0.0060975610 2.45673577 1.498010e-02
## 14299   2 0.0069204152 2.16905370 1.501075e-02
## 14300   2 0.0069204152 2.16905370 1.501075e-02
## 14301   2 0.0069204152 2.16905370 1.501075e-02
## 14302   7 0.0119863014 1.25276297 1.501599e-02
## 14303   6 0.0042372881 3.55534806 1.506503e-02
## 14304   2 0.0052770449 2.86220088 1.510396e-02
## 14305   4 0.0042553191 3.55534806 1.512914e-02
## 14306   4 0.0042553191 3.55534806 1.512914e-02
## 14307   4 0.0042553191 3.55534806 1.512914e-02
## 14308   4 0.0053120850 2.86220088 1.520425e-02
## 14309   4 0.0053120850 2.86220088 1.520425e-02
## 14310   4 0.0094562648 1.60943791 1.521927e-02
## 14311   5 0.0042808219 3.55534806 1.521981e-02
## 14312   6 0.0062047570 2.45673577 1.524345e-02
## 14313   3 0.0070921986 2.16905370 1.538336e-02
## 14314   2 0.0053908356 2.86220088 1.542965e-02
## 14315   2 0.0053908356 2.86220088 1.542965e-02
## 14316   2 0.0053908356 2.86220088 1.542965e-02
## 14317   2 0.0053908356 2.86220088 1.542965e-02
## 14318   4 0.0087719298 1.76358859 1.547008e-02
## 14319   3 0.0182926829 0.84729786 1.549935e-02
## 14320   2 0.0043859649 3.55534806 1.559363e-02
## 14321   2 0.0043859649 3.55534806 1.559363e-02
## 14322   2 0.0043859649 3.55534806 1.559363e-02
## 14323   2 0.0043859649 3.55534806 1.559363e-02
## 14324   2 0.0043859649 3.55534806 1.559363e-02
## 14325   2 0.0043859649 3.55534806 1.559363e-02
## 14326   2 0.0043859649 3.55534806 1.559363e-02
## 14327   2 0.0043859649 3.55534806 1.559363e-02
## 14328  13 0.0157575758 0.99039870 1.560628e-02
## 14329   7 0.0044025157 3.55534806 1.565248e-02
## 14330  20 0.0171232877 0.91629073 1.568991e-02
## 14331   3 0.0080862534 1.94591015 1.573512e-02
## 14332   5 0.0055066079 2.86220088 1.576102e-02
## 14333   4 0.0055096419 2.86220088 1.576970e-02
## 14334   5 0.0173010381 0.91629073 1.585278e-02
## 14335   3 0.0055658627 2.86220088 1.593062e-02
## 14336   3 0.0055658627 2.86220088 1.593062e-02
## 14337   4 0.0044943820 3.55534806 1.597909e-02
## 14338   4 0.0044943820 3.55534806 1.597909e-02
## 14339   4 0.0044943820 3.55534806 1.597909e-02
## 14340   2 0.0055865922 2.86220088 1.598995e-02
## 14341   9 0.0055970149 2.86220088 1.601978e-02
## 14342   4 0.0074211503 2.16905370 1.609687e-02
## 14343  14 0.0091443501 1.76358859 1.612687e-02
## 14344   8 0.0223463687 0.72213472 1.613709e-02
## 14345   1 0.0045454545 3.55534806 1.616067e-02
## 14346   1 0.0045454545 3.55534806 1.616067e-02
## 14347   1 0.0045454545 3.55534806 1.616067e-02
## 14348   1 0.0045454545 3.55534806 1.616067e-02
## 14349   1 0.0045454545 3.55534806 1.616067e-02
## 14350   1 0.0045454545 3.55534806 1.616067e-02
## 14351   1 0.0045454545 3.55534806 1.616067e-02
## 14352   1 0.0045454545 3.55534806 1.616067e-02
## 14353   1 0.0045454545 3.55534806 1.616067e-02
## 14354   1 0.0045454545 3.55534806 1.616067e-02
## 14355   1 0.0045454545 3.55534806 1.616067e-02
## 14356   1 0.0045454545 3.55534806 1.616067e-02
## 14357   1 0.0045454545 3.55534806 1.616067e-02
## 14358   1 0.0045454545 3.55534806 1.616067e-02
## 14359   1 0.0045454545 3.55534806 1.616067e-02
## 14360   1 0.0045454545 3.55534806 1.616067e-02
## 14361   1 0.0045454545 3.55534806 1.616067e-02
## 14362   1 0.0045454545 3.55534806 1.616067e-02
## 14363   1 0.0045454545 3.55534806 1.616067e-02
## 14364   1 0.0045454545 3.55534806 1.616067e-02
## 14365   1 0.0045454545 3.55534806 1.616067e-02
## 14366   1 0.0045454545 3.55534806 1.616067e-02
## 14367   4 0.0045558087 3.55534806 1.619749e-02
## 14368   4 0.0045558087 3.55534806 1.619749e-02
## 14369   3 0.0074812968 2.16905370 1.622733e-02
## 14370   6 0.0066079295 2.45673577 1.623394e-02
## 14371   7 0.0045721750 3.55534806 1.625567e-02
## 14372   5 0.0092764378 1.76358859 1.635982e-02
## 14373   6 0.0111317254 1.47590652 1.642939e-02
## 14374   4 0.0111731844 1.47590652 1.649058e-02
## 14375   7 0.0084848485 1.94591015 1.651075e-02
## 14376   7 0.0084848485 1.94591015 1.651075e-02
## 14377   2 0.0121951220 1.35812348 1.656248e-02
## 14378  10 0.0112359551 1.47590652 1.658322e-02
## 14379  10 0.0132802125 1.25276297 1.663696e-02
## 14380   2 0.0058139535 2.86220088 1.664070e-02
## 14381   2 0.0058139535 2.86220088 1.664070e-02
## 14382   2 0.0058139535 2.86220088 1.664070e-02
## 14383   2 0.0058139535 2.86220088 1.664070e-02
## 14384   4 0.0094562648 1.76358859 1.667696e-02
## 14385   4 0.0047058824 3.55534806 1.673105e-02
## 14386   2 0.0047281324 3.55534806 1.681016e-02
## 14387   2 0.0047281324 3.55534806 1.681016e-02
## 14388   2 0.0047281324 3.55534806 1.681016e-02
## 14389   2 0.0047281324 3.55534806 1.681016e-02
## 14390   2 0.0047281324 3.55534806 1.681016e-02
## 14391   2 0.0047281324 3.55534806 1.681016e-02
## 14392   2 0.0047281324 3.55534806 1.681016e-02
## 14393   2 0.0047281324 3.55534806 1.681016e-02
## 14394   2 0.0047281324 3.55534806 1.681016e-02
## 14395   2 0.0047281324 3.55534806 1.681016e-02
## 14396   2 0.0047281324 3.55534806 1.681016e-02
## 14397   9 0.0058785108 2.86220088 1.682548e-02
## 14398   9 0.0058785108 2.86220088 1.682548e-02
## 14399   2 0.0068493151 2.45673577 1.682696e-02
## 14400  13 0.0157575758 1.07044141 1.686756e-02
## 14401   9 0.0146103896 1.15745279 1.691084e-02
## 14402   5 0.0068870523 2.45673577 1.691967e-02
## 14403   3 0.0087209302 1.94591015 1.697015e-02
## 14404   3 0.0087209302 1.94591015 1.697015e-02
## 14405   2 0.0069204152 2.45673577 1.700163e-02
## 14406   2 0.0069204152 2.45673577 1.700163e-02
## 14407   2 0.0059701493 2.86220088 1.708777e-02
## 14408   2 0.0059701493 2.86220088 1.708777e-02
## 14409   4 0.0048484848 3.55534806 1.723805e-02
## 14410   4 0.0048484848 3.55534806 1.723805e-02
## 14411   8 0.0238805970 0.72213472 1.724501e-02
## 14412   3 0.0048701299 3.55534806 1.731501e-02
## 14413   3 0.0048701299 3.55534806 1.731501e-02
## 14414   6 0.0070588235 2.45673577 1.734166e-02
## 14415   5 0.0060606061 2.86220088 1.734667e-02
## 14416   5 0.0060606061 2.86220088 1.734667e-02
## 14417   6 0.0060728745 2.86220088 1.738179e-02
## 14418   3 0.0070921986 2.45673577 1.742366e-02
## 14419   3 0.0070921986 2.45673577 1.742366e-02
## 14420   3 0.0089552239 1.94591015 1.742606e-02
## 14421   3 0.0089552239 1.94591015 1.742606e-02
## 14422   1 0.0060975610 2.86220088 1.745244e-02
## 14423   1 0.0060975610 2.86220088 1.745244e-02
## 14424   1 0.0060975610 2.86220088 1.745244e-02
## 14425   1 0.0060975610 2.86220088 1.745244e-02
## 14426   1 0.0060975610 2.86220088 1.745244e-02
## 14427   1 0.0060975610 2.86220088 1.745244e-02
## 14428   1 0.0060975610 2.86220088 1.745244e-02
## 14429   1 0.0060975610 2.86220088 1.745244e-02
## 14430   1 0.0060975610 2.86220088 1.745244e-02
## 14431   1 0.0060975610 2.86220088 1.745244e-02
## 14432   1 0.0060975610 2.86220088 1.745244e-02
## 14433   2 0.0049140049 3.55534806 1.747100e-02
## 14434   2 0.0049140049 3.55534806 1.747100e-02
## 14435   2 0.0049140049 3.55534806 1.747100e-02
## 14436   2 0.0049140049 3.55534806 1.747100e-02
## 14437   2 0.0049140049 3.55534806 1.747100e-02
## 14438   2 0.0049140049 3.55534806 1.747100e-02
## 14439  17 0.0191011236 0.91629073 1.750218e-02
## 14440   7 0.0049435028 3.55534806 1.757587e-02
## 14441   4 0.0099750623 1.76358859 1.759191e-02
## 14442   4 0.0243902439 0.72213472 1.761304e-02
## 14443   7 0.0129870130 1.35812348 1.763797e-02
## 14444   8 0.0049751244 3.55534806 1.768830e-02
## 14445   2 0.0090909091 1.94591015 1.769009e-02
## 14446   2 0.0090909091 1.94591015 1.769009e-02
## 14447   2 0.0049875312 3.55534806 1.773241e-02
## 14448   2 0.0049875312 3.55534806 1.773241e-02
## 14449   2 0.0049875312 3.55534806 1.773241e-02
## 14450   2 0.0049875312 3.55534806 1.773241e-02
## 14451   2 0.0049875312 3.55534806 1.773241e-02
## 14452   2 0.0049875312 3.55534806 1.773241e-02
## 14453   2 0.0049875312 3.55534806 1.773241e-02
## 14454   2 0.0049875312 3.55534806 1.773241e-02
## 14455   2 0.0049875312 3.55534806 1.773241e-02
## 14456  17 0.0111038537 1.60943791 1.787096e-02
## 14457   8 0.0050314465 3.55534806 1.788854e-02
## 14458   5 0.0050607287 3.55534806 1.799265e-02
## 14459   2 0.0121951220 1.47590652 1.799886e-02
## 14460  10 0.0062893082 2.86220088 1.800126e-02
## 14461  10 0.0050761421 3.55534806 1.804745e-02
## 14462   3 0.0073710074 2.45673577 1.810862e-02
## 14463   3 0.0182926829 0.99039870 1.811705e-02
## 14464   3 0.0051369863 3.55534806 1.826377e-02
## 14465   5 0.0051706308 3.55534806 1.838339e-02
## 14466   5 0.0051706308 3.55534806 1.838339e-02
## 14467   7 0.0084848485 2.16905370 1.840409e-02
## 14468   8 0.0052253429 3.55534806 1.857791e-02
## 14469   8 0.0136986301 1.35812348 1.860443e-02
## 14470   5 0.0304878049 0.61090908 1.862528e-02
## 14471   2 0.0052770449 3.55534806 1.876173e-02
## 14472   2 0.0052770449 3.55534806 1.876173e-02
## 14473   2 0.0052770449 3.55534806 1.876173e-02
## 14474   2 0.0052770449 3.55534806 1.876173e-02
## 14475   2 0.0052770449 3.55534806 1.876173e-02
## 14476   3 0.0065789474 2.86220088 1.883027e-02
## 14477   4 0.0053120850 3.55534806 1.888631e-02
## 14478   3 0.0087209302 2.16905370 1.891617e-02
## 14479   3 0.0087209302 2.16905370 1.891617e-02
## 14480   4 0.0053333333 3.55534806 1.896186e-02
## 14481   4 0.0053333333 3.55534806 1.896186e-02
## 14482   5 0.0139664804 1.35812348 1.896821e-02
## 14483   5 0.0066401062 2.86220088 1.900532e-02
## 14484   5 0.0118203310 1.60943791 1.902409e-02
## 14485   3 0.0053667263 3.55534806 1.908058e-02
## 14486   3 0.0053667263 3.55534806 1.908058e-02
## 14487   2 0.0053908356 3.55534806 1.916630e-02
## 14488   8 0.0129870130 1.47590652 1.916762e-02
## 14489   7 0.0129870130 1.47590652 1.916762e-02
## 14490   7 0.0153508772 1.25276297 1.923101e-02
## 14491  20 0.0130633573 1.47590652 1.928029e-02
## 14492   3 0.0089552239 2.16905370 1.942436e-02
## 14493   6 0.0079681275 2.45673577 1.957558e-02
## 14494   3 0.0182926829 1.07044141 1.958125e-02
## 14495   4 0.0068493151 2.86220088 1.960412e-02
## 14496   2 0.0068493151 2.86220088 1.960412e-02
## 14497   2 0.0090909091 2.16905370 1.971867e-02
## 14498   3 0.0055658627 3.55534806 1.978858e-02
## 14499   3 0.0055658627 3.55534806 1.978858e-02
## 14500   3 0.0055658627 3.55534806 1.978858e-02
## 14501   2 0.0069204152 2.86220088 1.980762e-02
## 14502   2 0.0055865922 3.55534806 1.986228e-02
## 14503   2 0.0055865922 3.55534806 1.986228e-02
## 14504   2 0.0055865922 3.55534806 1.986228e-02
## 14505   2 0.0055865922 3.55534806 1.986228e-02
## 14506   2 0.0055865922 3.55534806 1.986228e-02
## 14507   3 0.0080862534 2.45673577 1.986579e-02
## 14508   9 0.0055970149 3.55534806 1.989934e-02
## 14509  13 0.0091807910 2.16905370 1.991363e-02
## 14510  20 0.0124378109 1.60943791 2.001788e-02
## 14511   9 0.0056603774 3.55534806 2.012461e-02
## 14512   7 0.0082352941 2.45673577 2.023194e-02
## 14513   7 0.0070850202 2.86220088 2.027875e-02
## 14514  14 0.0071065990 2.86220088 2.034051e-02
## 14515   3 0.0083798883 2.45673577 2.058717e-02
## 14516   2 0.0058139535 3.55534806 2.067063e-02
## 14517   7 0.0084848485 2.45673577 2.084503e-02
## 14518   5 0.0058823529 3.55534806 2.091381e-02
## 14519   5 0.0058823529 3.55534806 2.091381e-02
## 14520   4 0.0107816712 1.94591015 2.098016e-02
## 14521   3 0.0073710074 2.86220088 2.109730e-02
## 14522   2 0.0059701493 3.55534806 2.122596e-02
## 14523   4 0.0074211503 2.86220088 2.124082e-02
## 14524   4 0.0074211503 2.86220088 2.124082e-02
## 14525   4 0.0074211503 2.86220088 2.124082e-02
## 14526  14 0.0349127182 0.61090908 2.132850e-02
## 14527  12 0.0074626866 2.86220088 2.135971e-02
## 14528  11 0.0121145374 1.76358859 2.136506e-02
## 14529   3 0.0074812968 2.86220088 2.141297e-02
## 14530   3 0.0087209302 2.45673577 2.142502e-02
## 14531   2 0.0121951220 1.76358859 2.150718e-02
## 14532   5 0.0060606061 3.55534806 2.154756e-02
## 14533   5 0.0060606061 3.55534806 2.154756e-02
## 14534   5 0.0060606061 3.55534806 2.154756e-02
## 14535   4 0.0087719298 2.45673577 2.155031e-02
## 14536  12 0.0075471698 2.86220088 2.160152e-02
## 14537   8 0.0088105727 2.45673577 2.164525e-02
## 14538   1 0.0060975610 3.55534806 2.167895e-02
## 14539   1 0.0060975610 3.55534806 2.167895e-02
## 14540   1 0.0060975610 3.55534806 2.167895e-02
## 14541   1 0.0060975610 3.55534806 2.167895e-02
## 14542   1 0.0060975610 3.55534806 2.167895e-02
## 14543   1 0.0060975610 3.55534806 2.167895e-02
## 14544   1 0.0060975610 3.55534806 2.167895e-02
## 14545   1 0.0060975610 3.55534806 2.167895e-02
## 14546   1 0.0060975610 3.55534806 2.167895e-02
## 14547   1 0.0060975610 3.55534806 2.167895e-02
## 14548   1 0.0060975610 3.55534806 2.167895e-02
## 14549   1 0.0060975610 3.55534806 2.167895e-02
## 14550  10 0.0062893082 3.55534806 2.236068e-02
## 14551   7 0.0092961487 2.45673577 2.283818e-02
## 14552   4 0.0105540897 2.16905370 2.289239e-02
## 14553   8 0.0143112701 1.60943791 2.303310e-02
## 14554   8 0.0215633423 1.07044141 2.308229e-02
## 14555   3 0.0080862534 2.86220088 2.314448e-02
## 14556  10 0.0132802125 1.76358859 2.342083e-02
## 14557  13 0.0065989848 3.55534806 2.346169e-02
## 14558   5 0.0066401062 3.55534806 2.360789e-02
## 14559   5 0.0066401062 3.55534806 2.360789e-02
## 14560   8 0.0175438596 1.35812348 2.382673e-02
## 14561   5 0.0122850123 1.94591015 2.390553e-02
## 14562   8 0.0136986301 1.76358859 2.415875e-02
## 14563  11 0.0068407960 3.55534806 2.432141e-02
## 14564   4 0.0068493151 3.55534806 2.435170e-02
## 14565   2 0.0068493151 3.55534806 2.435170e-02
## 14566   5 0.0068870523 3.55534806 2.448587e-02
## 14567   2 0.0069204152 3.55534806 2.460448e-02
## 14568   2 0.0069204152 3.55534806 2.460448e-02
## 14569   2 0.0069204152 3.55534806 2.460448e-02
## 14570  17 0.0086294416 2.86220088 2.469920e-02
## 14571   7 0.0318181818 0.78275934 2.490598e-02
## 14572   6 0.0070588235 3.55534806 2.509657e-02
## 14573   6 0.0070588235 3.55534806 2.509657e-02
## 14574   3 0.0070921986 3.55534806 2.521523e-02
## 14575   3 0.0070921986 3.55534806 2.521523e-02
## 14576   3 0.0102739726 2.45673577 2.524044e-02
## 14577  14 0.0071065990 3.55534806 2.526643e-02
## 14578  18 0.0117570216 2.16905370 2.550161e-02
## 14579   3 0.0089552239 2.86220088 2.563165e-02
## 14580   4 0.0119402985 2.16905370 2.589915e-02
## 14581   2 0.0090909091 2.86220088 2.602001e-02
## 14582   2 0.0090909091 2.86220088 2.602001e-02
## 14583  12 0.0121457490 2.16905370 2.634478e-02
## 14584   4 0.0074211503 3.55534806 2.638477e-02
## 14585   7 0.0074468085 3.55534806 2.647600e-02
## 14586   3 0.0074812968 3.55534806 2.659861e-02
## 14587   3 0.0074812968 3.55534806 2.659861e-02
## 14588   5 0.0122850123 2.16905370 2.664685e-02
## 14589   4 0.0136986301 1.94591015 2.665630e-02
## 14590  17 0.0291095890 0.91629073 2.667285e-02
## 14591  21 0.0137165251 1.94591015 2.669113e-02
## 14592   8 0.0094117647 2.86220088 2.693836e-02
## 14593  28 0.0182887002 1.47590652 2.699241e-02
## 14594   6 0.0272727273 0.99039870 2.701087e-02
## 14595  37 0.0261299435 1.07044141 2.797057e-02
## 14596   3 0.0079155673 3.55534806 2.814260e-02
## 14597  17 0.0423940150 0.66497630 2.819102e-02
## 14598  14 0.0098870056 2.86220088 2.829860e-02
## 14599   6 0.0080000000 3.55534806 2.844278e-02
## 14600  16 0.0099502488 2.86220088 2.847961e-02
## 14601  10 0.0290697674 0.99039870 2.879066e-02
## 14602   8 0.0196560197 1.47590652 2.901045e-02
## 14603   8 0.0232558140 1.25276297 2.913402e-02
## 14604  11 0.0274314214 1.07044141 2.936373e-02
## 14605  21 0.0217166494 1.35812348 2.949389e-02
## 14606   3 0.0083798883 3.55534806 2.979342e-02
## 14607  12 0.0084745763 3.55534806 3.013007e-02
## 14608  24 0.0282352941 1.07044141 3.022423e-02
## 14609   3 0.0087209302 3.55534806 3.100594e-02
## 14610   3 0.0087209302 3.55534806 3.100594e-02
## 14611  22 0.0143696930 2.16905370 3.116864e-02
## 14612   3 0.0089552239 3.55534806 3.183894e-02
## 14613   8 0.0089887640 3.55534806 3.195818e-02
## 14614   8 0.0089887640 3.55534806 3.195818e-02
## 14615   4 0.0111731844 2.86220088 3.197990e-02
## 14616   2 0.0090909091 3.55534806 3.232135e-02
## 14617   2 0.0090909091 3.55534806 3.232135e-02
## 14618   2 0.0090909091 3.55534806 3.232135e-02
## 14619  12 0.0132158590 2.45673577 3.246787e-02
## 14620  15 0.0093283582 3.55534806 3.316556e-02
## 14621   4 0.0116279070 2.86220088 3.328141e-02
## 14622   4 0.0094562648 3.55534806 3.362031e-02
## 14623   6 0.0097402597 3.55534806 3.463001e-02
## 14624   4 0.0098280098 3.55534806 3.494200e-02
## 14625  10 0.0101214575 3.55534806 3.598530e-02
## 14626  10 0.0103412616 3.55534806 3.676678e-02
## 14627   5 0.0171232877 2.16905370 3.714133e-02
## 14628  19 0.0192307692 1.94591015 3.742135e-02
## 14629  10 0.0132802125 2.86220088 3.801064e-02
## 14630   4 0.0107816712 3.55534806 3.833259e-02
## 14631  10 0.0110132159 3.55534806 3.915582e-02
## 14632   8 0.0110192837 3.55534806 3.917739e-02
## 14633   6 0.0111317254 3.55534806 3.957716e-02
## 14634   8 0.0232558140 1.76358859 4.101369e-02
## 14635   4 0.0116279070 3.55534806 4.134126e-02
## 14636   8 0.0148423006 2.86220088 4.248165e-02
## 14637  14 0.0148936170 2.86220088 4.262852e-02
## 14638   9 0.0120000000 3.55534806 4.266418e-02
## 14639   9 0.0120000000 3.55534806 4.266418e-02
## 14640   5 0.0149253731 2.86220088 4.271942e-02
## 14641   2 0.0121951220 3.55534806 4.335790e-02
## 14642   2 0.0121951220 3.55534806 4.335790e-02
## 14643   6 0.0158311346 2.86220088 4.531189e-02
## 14644  13 0.0131578947 3.55534806 4.678090e-02
## 14645  10 0.0132802125 3.55534806 4.721578e-02
## 14646  15 0.0199203187 2.45673577 4.893896e-02
## 14647   5 0.0145348837 3.55534806 5.167657e-02
## 14648   5 0.0149253731 3.55534806 5.306490e-02
## 14649   7 0.0153508772 3.55534806 5.457771e-02
## 14650  11 0.0290237467 1.94591015 5.647760e-02
## 14651  23 0.0162429379 3.55534806 5.774930e-02
## 14652  23 0.0162429379 3.55534806 5.774930e-02
## 14653   6 0.0272727273 2.16905370 5.915601e-02
## 14654   4 0.0243902439 2.45673577 5.992038e-02
## 14655   8 0.0211081794 2.86220088 6.041585e-02
## 14656  16 0.0350877193 1.76358859 6.188030e-02
## 14657  12 0.0323450135 1.94591015 6.294049e-02
## 14658  30 0.0186567164 3.55534806 6.633112e-02
## 14659   8 0.0196560197 3.55534806 6.988399e-02
## 14660  21 0.0359589041 1.94591015 6.997280e-02
## 14661   7 0.0203488372 3.55534806 7.234720e-02
## 14662  13 0.0222602740 3.55534806 7.914302e-02
## 14663   5 0.0227272727 3.55534806 8.080337e-02
## 14664  11 0.0328358209 2.86220088 9.398272e-02
## 14665  18 0.0333951763 2.86220088 9.558370e-02
## 14666  20 0.0371057514 2.86220088 1.062041e-01
## 14667  11 0.0376712329 2.86220088 1.078226e-01
## 14668  22 0.0408163265 2.86220088 1.168245e-01
## 14669  29 0.0341176471 3.55534806 1.213001e-01
## 14670  20 0.0438596491 2.86220088 1.255351e-01
## 14671   8 0.0363636364 3.55534806 1.292854e-01
## 14672  11 0.0500000000 3.55534806 1.777674e-01